fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: simplify PetsController to 3 essential methods

Keep only listPets, createPet, showPetById — each demonstrates a distinct
plugin pattern (no params, body, path). Drop updatePet/deletePet as they
add no new type patterns and distract from the plugin demo.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+555 -335
+10 -62
examples/openapi-ts-nestjs/src/pets/pets.controller.ts
··· 1 - import { 2 - Body, 3 - Controller, 4 - Delete, 5 - Get, 6 - HttpCode, 7 - NotFoundException, 8 - Param, 9 - Post, 10 - Put, 11 - Query, 12 - } from '@nestjs/common'; 1 + import { Body, Controller, Get, NotFoundException, Param, Post, Query } from '@nestjs/common'; 13 2 14 3 import type { PetsControllerMethods } from '../client/nestjs.gen'; 15 - import type { 16 - CreatePetData, 17 - DeletePetData, 18 - ListPetsData, 19 - Pet, 20 - ShowPetByIdData, 21 - UpdatePetData, 22 - } from '../client/types.gen'; 4 + import type { CreatePetData, ListPetsData, Pet, ShowPetByIdData } from '../client/types.gen'; 23 5 24 6 @Controller('pets') 25 7 export class PetsController implements Pick< 26 8 PetsControllerMethods, 27 - 'createPet' | 'deletePet' | 'listPets' | 'showPetById' | 'updatePet' 9 + 'createPet' | 'listPets' | 'showPetById' 28 10 > { 29 11 private readonly pets: Pet[] = [ 30 - { 31 - id: '550e8400-e29b-41d4-a716-446655440000', 32 - name: 'Fido', 33 - status: 'available', 34 - tag: 'dog', 35 - }, 36 - { 37 - id: '550e8400-e29b-41d4-a716-446655440001', 38 - name: 'Kitty', 39 - status: 'available', 40 - tag: 'cat', 41 - }, 12 + { id: '1', name: 'Fido', status: 'available', tag: 'dog' }, 13 + { id: '2', name: 'Kitty', status: 'available', tag: 'cat' }, 42 14 ]; 43 15 44 16 @Get() 45 17 async listPets(@Query() query?: ListPetsData['query']) { 46 - const offset = query?.offset ?? 0; 47 18 const limit = query?.limit ?? 20; 48 - return this.pets.slice(offset, offset + limit); 19 + 20 + return this.pets.slice(0, limit); 49 21 } 50 22 51 23 @Post() ··· 56 28 status: 'available', 57 29 tag: body.tag, 58 30 }; 31 + 59 32 this.pets.push(pet); 33 + 60 34 return pet; 61 35 } 62 36 63 37 @Get(':petId') 64 38 async showPetById(@Param() path: ShowPetByIdData['path']) { 65 39 const pet = this.pets.find((p) => p.id === path.petId); 66 - if (!pet) { 67 - throw new NotFoundException(`Pet ${path.petId} not found`); 68 - } 69 - return pet; 70 - } 71 40 72 - @Put(':petId') 73 - async updatePet(@Param() path: UpdatePetData['path'], @Body() body: UpdatePetData['body']) { 74 - const pet = this.pets.find((p) => p.id === path.petId); 75 41 if (!pet) { 76 42 throw new NotFoundException(`Pet ${path.petId} not found`); 77 43 } 78 - if (body.name !== undefined) { 79 - pet.name = body.name; 80 - } 81 - if (body.tag !== undefined) { 82 - pet.tag = body.tag; 83 - } 84 - if (body.status !== undefined) { 85 - pet.status = body.status; 86 - } 87 - return pet; 88 - } 89 44 90 - @Delete(':petId') 91 - @HttpCode(204) 92 - async deletePet(@Param() path: DeletePetData['path']) { 93 - const index = this.pets.findIndex((p) => p.id === path.petId); 94 - if (index === -1) { 95 - throw new NotFoundException(`Pet ${path.petId} not found`); 96 - } 97 - this.pets.splice(index, 1); 45 + return pet; 98 46 } 99 47 }
+2 -20
examples/openapi-ts-nestjs/test/pets.test.ts
··· 2 2 import { Test } from '@nestjs/testing'; 3 3 import type { AddressInfo } from 'net'; 4 4 import { AppModule } from 'src/app.module'; 5 - import { createPet, deletePet, getInventory, listPets, showPetById, updatePet } from 'src/client'; 5 + import { createPet, getInventory, listPets, showPetById } from 'src/client'; 6 6 import { client } from 'src/client/client.gen'; 7 7 8 8 let app: INestApplication; ··· 35 35 test('showPetById', async () => { 36 36 const result = await showPetById({ 37 37 client, 38 - path: { petId: '550e8400-e29b-41d4-a716-446655440000' }, 38 + path: { petId: '1' }, 39 39 }); 40 40 expect(result.response.status).toBe(200); 41 41 }); ··· 47 47 }); 48 48 expect(result.response.status).toBe(201); 49 49 expect(result.data).toMatchObject({ name: 'Buddy' }); 50 - }); 51 - 52 - test('updatePet', async () => { 53 - const result = await updatePet({ 54 - body: { name: 'Fido Updated' }, 55 - client, 56 - path: { petId: '550e8400-e29b-41d4-a716-446655440000' }, 57 - }); 58 - expect(result.response.status).toBe(200); 59 - expect(result.data).toMatchObject({ name: 'Fido Updated' }); 60 - }); 61 - 62 - test('deletePet', async () => { 63 - const result = await deletePet({ 64 - client, 65 - path: { petId: '550e8400-e29b-41d4-a716-446655440001' }, 66 - }); 67 - expect(result.response.status).toBe(204); 68 50 }); 69 51 }); 70 52
+543 -253
pnpm-lock.yaml
··· 17 17 specifier: 0.18.2 18 18 version: 0.18.2 19 19 '@changesets/cli': 20 - specifier: 2.29.8 21 - version: 2.29.8(@types/node@24.10.10) 20 + specifier: 2.30.0 21 + version: 2.30.0(@types/node@24.10.10) 22 22 '@changesets/get-github-info': 23 - specifier: 0.7.0 24 - version: 0.7.0(encoding@0.1.13) 23 + specifier: 0.8.0 24 + version: 0.8.0(encoding@0.1.13) 25 25 '@changesets/parse': 26 - specifier: 0.4.2 27 - version: 0.4.2 26 + specifier: 0.4.3 27 + version: 0.4.3 28 28 '@changesets/types': 29 29 specifier: 6.1.0 30 30 version: 6.1.0 ··· 43 43 '@typescript-eslint/eslint-plugin': 44 44 specifier: 8.54.0 45 45 version: 8.54.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3) 46 + '@typescript/native-preview': 47 + specifier: 7.0.0-dev.20260309.1 48 + version: 7.0.0-dev.20260309.1 46 49 '@vitest/coverage-v8': 47 50 specifier: 4.0.18 48 51 version: 4.0.18(vitest@4.0.18(@types/node@24.10.10)(jiti@2.6.1)(jsdom@28.0.0(@noble/hashes@1.8.0))(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)) 49 - dotenv: 50 - specifier: 17.2.3 51 - version: 17.2.3 52 52 eslint: 53 53 specifier: 9.39.2 54 54 version: 9.39.2(jiti@2.6.1) ··· 68 68 specifier: 10.7.0 69 69 version: 10.7.0(@typescript-eslint/parser@8.54.0(eslint@9.39.2(jiti@2.6.1))(typescript@5.9.3))(eslint@9.39.2(jiti@2.6.1))(vue-eslint-parser@10.2.0(eslint@9.39.2(jiti@2.6.1))) 70 70 globals: 71 - specifier: 17.3.0 72 - version: 17.3.0 71 + specifier: 17.4.0 72 + version: 17.4.0 73 73 husky: 74 74 specifier: 9.1.7 75 75 version: 9.1.7 76 76 lint-staged: 77 - specifier: 16.2.7 78 - version: 16.2.7 77 + specifier: 16.3.2 78 + version: 16.3.2 79 79 oxfmt: 80 - specifier: 0.28.0 81 - version: 0.28.0 82 - ts-node: 83 - specifier: 10.9.2 84 - version: 10.9.2(@swc/core@1.11.29)(@types/node@24.10.10)(typescript@5.9.3) 80 + specifier: 0.36.0 81 + version: 0.36.0 85 82 tsdown: 86 83 specifier: 0.18.4 87 - version: 0.18.4(@arethetypeswrong/core@0.18.2)(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 84 + version: 0.18.4(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260309.1)(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 88 85 tsx: 89 86 specifier: 4.21.0 90 87 version: 4.21.0 91 88 turbo: 92 - specifier: 2.8.3 93 - version: 2.8.3 89 + specifier: 2.8.14 90 + version: 2.8.14 94 91 typescript: 95 92 specifier: 5.9.3 96 93 version: 5.9.3 ··· 119 116 specifier: workspace:* 120 117 version: link:../packages/openapi-ts 121 118 '@opencode-ai/sdk': 122 - specifier: 1.1.48 123 - version: 1.1.48 119 + specifier: 1.2.24 120 + version: 1.2.24 124 121 '@pinia/colada': 125 122 specifier: 0.19.1 126 123 version: 0.19.1(pinia@3.0.3(typescript@5.9.3)(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 127 124 '@tanstack/angular-query-experimental': 128 - specifier: 5.73.3 129 - version: 5.73.3(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 125 + specifier: 5.90.25 126 + version: 5.90.25(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 127 + '@tanstack/preact-query': 128 + specifier: 5.93.0 129 + version: 5.93.0(preact@10.29.0) 130 130 '@tanstack/react-query': 131 - specifier: 5.73.3 132 - version: 5.73.3(react@19.0.0) 131 + specifier: 5.90.21 132 + version: 5.90.21(react@19.0.0) 133 133 '@tanstack/solid-query': 134 - specifier: 5.73.3 135 - version: 5.73.3(solid-js@1.9.9) 134 + specifier: 5.90.23 135 + version: 5.90.23(solid-js@1.9.9) 136 136 '@tanstack/svelte-query': 137 - specifier: 5.73.3 138 - version: 5.73.3(svelte@5.19.9) 137 + specifier: 5.90.2 138 + version: 5.90.2(svelte@5.19.9) 139 139 '@tanstack/vue-query': 140 - specifier: 5.73.3 141 - version: 5.73.3(vue@3.5.25(typescript@5.9.3)) 140 + specifier: 5.92.9 141 + version: 5.92.9(vue@3.5.25(typescript@5.9.3)) 142 142 arktype: 143 - specifier: 2.1.29 144 - version: 2.1.29 143 + specifier: 2.2.0 144 + version: 2.2.0 145 145 nuxt: 146 146 specifier: 3.21.0 147 147 version: 3.21.0(@netlify/blobs@9.1.2)(@parcel/watcher@2.5.1)(@types/node@25.2.1)(@vue/compiler-sfc@3.5.27)(cac@6.7.14)(db0@0.3.4)(encoding@0.1.13)(eslint@9.39.2(jiti@2.6.1))(ioredis@5.9.2)(less@4.4.2)(magicast@0.5.2)(optionator@0.9.4)(rolldown@1.0.0-beta.58)(rollup@4.56.0)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.1)(jiti@2.6.1)(less@4.4.2)(sass@1.97.1)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2))(vue-tsc@3.2.4(typescript@5.9.3))(yaml@2.8.2) 148 148 swr: 149 149 specifier: 2.4.0 150 150 version: 2.4.0(react@19.0.0) 151 + tsx: 152 + specifier: 4.21.0 153 + version: 4.21.0 151 154 typescript: 152 155 specifier: 5.9.3 153 156 version: 5.9.3 ··· 1291 1294 '@types/json-schema': 1292 1295 specifier: 7.0.15 1293 1296 version: 7.0.15 1294 - js-yaml: 1295 - specifier: 4.1.1 1296 - version: 4.1.1 1297 + yaml: 1298 + specifier: 2.8.2 1299 + version: 2.8.2 1297 1300 devDependencies: 1298 - '@types/js-yaml': 1299 - specifier: 4.0.9 1300 - version: 4.0.9 1301 1301 typescript: 1302 1302 specifier: 5.9.3 1303 1303 version: 5.9.3 ··· 1369 1369 yaml: 1370 1370 specifier: 2.8.2 1371 1371 version: 2.8.2 1372 + 1373 + packages/openapi-python-tests/pydantic/v2: 1374 + devDependencies: 1375 + '@hey-api/openapi-python': 1376 + specifier: workspace:* 1377 + version: link:../../../openapi-python 1378 + typescript: 1379 + specifier: 5.9.3 1380 + version: 5.9.3 1381 + 1382 + packages/openapi-python-tests/sdks: 1383 + devDependencies: 1384 + '@hey-api/openapi-python': 1385 + specifier: workspace:* 1386 + version: link:../../openapi-python 1387 + typescript: 1388 + specifier: 5.9.3 1389 + version: 5.9.3 1372 1390 1373 1391 packages/openapi-ts: 1374 1392 dependencies: ··· 1393 1411 commander: 1394 1412 specifier: 14.0.3 1395 1413 version: 14.0.3 1414 + get-tsconfig: 1415 + specifier: 4.13.6 1416 + version: 4.13.6 1396 1417 devDependencies: 1397 1418 '@angular/common': 1398 1419 specifier: 21.1.2 ··· 1494 1515 specifier: 0.19.1 1495 1516 version: 0.19.1(pinia@3.0.3(typescript@5.9.3)(vue@3.5.25(typescript@5.9.3)))(vue@3.5.25(typescript@5.9.3)) 1496 1517 '@tanstack/angular-query-experimental': 1497 - specifier: 5.73.3 1498 - version: 5.73.3(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 1518 + specifier: 5.90.25 1519 + version: 5.90.25(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0)) 1520 + '@tanstack/preact-query': 1521 + specifier: 5.93.0 1522 + version: 5.93.0(preact@10.29.0) 1499 1523 '@tanstack/react-query': 1500 - specifier: 5.73.3 1501 - version: 5.73.3(react@19.0.0) 1524 + specifier: 5.90.21 1525 + version: 5.90.21(react@19.0.0) 1502 1526 '@tanstack/solid-query': 1503 - specifier: 5.73.3 1504 - version: 5.73.3(solid-js@1.9.9) 1527 + specifier: 5.90.23 1528 + version: 5.90.23(solid-js@1.9.9) 1505 1529 '@tanstack/svelte-query': 1506 - specifier: 5.73.3 1507 - version: 5.73.3(svelte@5.19.9) 1530 + specifier: 5.90.2 1531 + version: 5.90.2(svelte@5.19.9) 1508 1532 '@tanstack/vue-query': 1509 - specifier: 5.73.3 1510 - version: 5.73.3(vue@3.5.25(typescript@5.9.3)) 1533 + specifier: 5.92.9 1534 + version: 5.92.9(vue@3.5.25(typescript@5.9.3)) 1511 1535 '@types/cross-spawn': 1512 1536 specifier: 6.0.6 1513 1537 version: 6.0.6 ··· 1544 1568 rxjs: 1545 1569 specifier: 7.8.2 1546 1570 version: 7.8.2 1547 - ts-node: 1548 - specifier: 10.9.2 1549 - version: 10.9.2(@swc/core@1.11.29)(@types/node@25.2.1)(typescript@5.9.3) 1550 1571 tslib: 1551 1572 specifier: 2.8.1 1552 1573 version: 2.8.1 1553 1574 typescript: 1554 1575 specifier: 5.9.3 1555 1576 version: 5.9.3 1556 - valibot: 1557 - specifier: 1.2.0 1558 - version: 1.2.0(typescript@5.9.3) 1559 1577 vue: 1560 1578 specifier: 3.5.25 1561 1579 version: 3.5.25(typescript@5.9.3) ··· 1571 1589 typescript: 1572 1590 specifier: 5.9.3 1573 1591 version: 5.9.3 1592 + 1593 + packages/openapi-ts-tests/valibot/v1: 1594 + devDependencies: 1595 + '@hey-api/openapi-ts': 1596 + specifier: workspace:* 1597 + version: link:../../../openapi-ts 1598 + typescript: 1599 + specifier: 5.9.3 1600 + version: 5.9.3 1601 + valibot: 1602 + specifier: 1.2.0 1603 + version: 1.2.0(typescript@5.9.3) 1574 1604 1575 1605 packages/openapi-ts-tests/zod/v3: 1576 1606 devDependencies: ··· 2682 2712 peerDependencies: 2683 2713 '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 2684 2714 2685 - '@babel/runtime@7.28.3': 2686 - resolution: {integrity: sha512-9uIQ10o0WGdpP6GDhXcdOJPJuDgFtIDtN/9+ArJQ2NAfAmiuhTQdzkaTGR33v43GYS2UrSA0eX2pPPHoFVvpxA==} 2687 - engines: {node: '>=6.9.0'} 2688 - 2689 2715 '@babel/runtime@7.28.4': 2690 2716 resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 2691 2717 engines: {node: '>=6.9.0'} ··· 2754 2780 '@braidai/lang@1.1.2': 2755 2781 resolution: {integrity: sha512-qBcknbBufNHlui137Hft8xauQMTZDKdophmLFv05r2eNmdIv/MlPuP4TdUknHG68UdWLgVZwgxVe735HzJNIwA==} 2756 2782 2757 - '@changesets/apply-release-plan@7.0.14': 2758 - resolution: {integrity: sha512-ddBvf9PHdy2YY0OUiEl3TV78mH9sckndJR14QAt87KLEbIov81XO0q0QAmvooBxXlqRRP8I9B7XOzZwQG7JkWA==} 2783 + '@changesets/apply-release-plan@7.1.0': 2784 + resolution: {integrity: sha512-yq8ML3YS7koKQ/9bk1PqO0HMzApIFNwjlwCnwFEXMzNe8NpzeeYYKCmnhWJGkN8g7E51MnWaSbqRcTcdIxUgnQ==} 2759 2785 2760 2786 '@changesets/assemble-release-plan@6.0.9': 2761 2787 resolution: {integrity: sha512-tPgeeqCHIwNo8sypKlS3gOPmsS3wP0zHt67JDuL20P4QcXiw/O4Hl7oXiuLnP9yg+rXLQ2sScdV1Kkzde61iSQ==} ··· 2763 2789 '@changesets/changelog-git@0.2.1': 2764 2790 resolution: {integrity: sha512-x/xEleCFLH28c3bQeQIyeZf8lFXyDFVn1SgcBiR2Tw/r4IAWlk1fzxCEZ6NxQAjF2Nwtczoen3OA2qR+UawQ8Q==} 2765 2791 2766 - '@changesets/cli@2.29.8': 2767 - resolution: {integrity: sha512-1weuGZpP63YWUYjay/E84qqwcnt5yJMM0tep10Up7Q5cS/DGe2IZ0Uj3HNMxGhCINZuR7aO9WBMdKnPit5ZDPA==} 2792 + '@changesets/cli@2.30.0': 2793 + resolution: {integrity: sha512-5D3Nk2JPqMI1wK25pEymeWRSlSMdo5QOGlyfrKg0AOufrUcjEE3RQgaCpHoBiM31CSNrtSgdJ0U6zL1rLDDfBA==} 2768 2794 hasBin: true 2769 2795 2770 - '@changesets/config@3.1.2': 2771 - resolution: {integrity: sha512-CYiRhA4bWKemdYi/uwImjPxqWNpqGPNbEBdX1BdONALFIDK7MCUj6FPkzD+z9gJcvDFUQJn9aDVf4UG7OT6Kog==} 2796 + '@changesets/config@3.1.3': 2797 + resolution: {integrity: sha512-vnXjcey8YgBn2L1OPWd3ORs0bGC4LoYcK/ubpgvzNVr53JXV5GiTVj7fWdMRsoKUH7hhhMAQnsJUqLr21EncNw==} 2772 2798 2773 2799 '@changesets/errors@0.2.0': 2774 2800 resolution: {integrity: sha512-6BLOQUscTpZeGljvyQXlWOItQyU71kCdGz7Pi8H8zdw6BI0g3m43iL4xKUVPWtG+qrrL9DTjpdn8eYuCQSRpow==} ··· 2776 2802 '@changesets/get-dependents-graph@2.1.3': 2777 2803 resolution: {integrity: sha512-gphr+v0mv2I3Oxt19VdWRRUxq3sseyUpX9DaHpTUmLj92Y10AGy+XOtV+kbM6L/fDcpx7/ISDFK6T8A/P3lOdQ==} 2778 2804 2779 - '@changesets/get-github-info@0.7.0': 2780 - resolution: {integrity: sha512-+i67Bmhfj9V4KfDeS1+Tz3iF32btKZB2AAx+cYMqDSRFP7r3/ZdGbjCo+c6qkyViN9ygDuBjzageuPGJtKGe5A==} 2805 + '@changesets/get-github-info@0.8.0': 2806 + resolution: {integrity: sha512-cRnC+xdF0JIik7coko3iUP9qbnfi1iJQ3sAa6dE+Tx3+ET8bjFEm63PA4WEohgjYcmsOikPHWzPsMWWiZmntOQ==} 2781 2807 2782 - '@changesets/get-release-plan@4.0.14': 2783 - resolution: {integrity: sha512-yjZMHpUHgl4Xl5gRlolVuxDkm4HgSJqT93Ri1Uz8kGrQb+5iJ8dkXJ20M2j/Y4iV5QzS2c5SeTxVSKX+2eMI0g==} 2808 + '@changesets/get-release-plan@4.0.15': 2809 + resolution: {integrity: sha512-Q04ZaRPuEVZtA+auOYgFaVQQSA98dXiVe/yFaZfY7hoSmQICHGvP0TF4u3EDNHWmmCS4ekA/XSpKlSM2PyTS2g==} 2784 2810 2785 2811 '@changesets/get-version-range-type@0.4.0': 2786 2812 resolution: {integrity: sha512-hwawtob9DryoGTpixy1D3ZXbGgJu1Rhr+ySH2PvTLHvkZuQ7sRT4oQwMh0hbqZH1weAooedEjRsbrWcGLCeyVQ==} ··· 2791 2817 '@changesets/logger@0.1.1': 2792 2818 resolution: {integrity: sha512-OQtR36ZlnuTxKqoW4Sv6x5YIhOmClRd5pWsjZsddYxpWs517R0HkyiefQPIytCVh4ZcC5x9XaG8KTdd5iRQUfg==} 2793 2819 2794 - '@changesets/parse@0.4.2': 2795 - resolution: {integrity: sha512-Uo5MC5mfg4OM0jU3up66fmSn6/NE9INK+8/Vn/7sMVcdWg46zfbvvUSjD9EMonVqPi9fbrJH9SXHn48Tr1f2yA==} 2820 + '@changesets/parse@0.4.3': 2821 + resolution: {integrity: sha512-ZDmNc53+dXdWEv7fqIUSgRQOLYoUom5Z40gmLgmATmYR9NbL6FJJHwakcCpzaeCy+1D0m0n7mT4jj2B/MQPl7A==} 2796 2822 2797 2823 '@changesets/pre@2.0.2': 2798 2824 resolution: {integrity: sha512-HaL/gEyFVvkf9KFg6484wR9s0qjAXlZ8qWPDkTyKF6+zqjBe/I2mygg3MbpZ++hdi0ToqNUF8cjj7fBy0dg8Ug==} 2799 2825 2800 - '@changesets/read@0.6.6': 2801 - resolution: {integrity: sha512-P5QaN9hJSQQKJShzzpBT13FzOSPyHbqdoIBUd2DJdgvnECCyO6LmAOWSV+O8se2TaZJVwSXjL+v9yhb+a9JeJg==} 2826 + '@changesets/read@0.6.7': 2827 + resolution: {integrity: sha512-D1G4AUYGrBEk8vj8MGwf75k9GpN6XL3wg8i42P2jZZwFLXnlr2Pn7r9yuQNbaMCarP7ZQWNJbV6XLeysAIMhTA==} 2802 2828 2803 2829 '@changesets/should-skip-package@0.1.2': 2804 2830 resolution: {integrity: sha512-qAK/WrqWLNCP22UDdBTMPH5f41elVDlsNyat180A33dWxuUDyNpg6fPi/FyTZwRriVjg0L8gnjJn2F9XAoF0qw==} ··· 5250 5276 '@one-ini/wasm@0.1.1': 5251 5277 resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} 5252 5278 5253 - '@opencode-ai/sdk@1.1.48': 5254 - resolution: {integrity: sha512-j5/79X45fUPWVD2Ffm/qvwLclDCdPeV+TYMDrm9to0p4pmzhmeKevCsyiRdLg0o0HE3AFRUnOo2rdO9NetN79A==} 5279 + '@opencode-ai/sdk@1.2.24': 5280 + resolution: {integrity: sha512-MQamFkRl4B/3d6oIRLNpkYR2fcwet1V/ffKyOKJXWjtP/CT9PDJMtLpu6olVHjXKQi8zMNltwuMhv1QsNtRlZg==} 5255 5281 5256 5282 '@oxc-minify/binding-android-arm-eabi@0.110.0': 5257 5283 resolution: {integrity: sha512-43fMTO8/5bMlqfOiNSZNKUzIqeLIYuB9Hr1Ohyf58B1wU11S2dPGibTXOGNaWsfgHy99eeZ1bSgeIHy/fEYqbw==} ··· 5751 5777 cpu: [x64] 5752 5778 os: [win32] 5753 5779 5754 - '@oxfmt/darwin-arm64@0.27.0': 5755 - resolution: {integrity: sha512-3vwqyzNlVTVFVzHMlrqxb4tgVgHp6FYS0uIxsIZ/SeEDG0azaqiOw/2t8LlJ9f72PKRLWSey+Ak99tiKgpbsnQ==} 5780 + '@oxfmt/binding-android-arm-eabi@0.36.0': 5781 + resolution: {integrity: sha512-Z4yVHJWx/swHHjtr0dXrBZb6LxS+qNz1qdza222mWwPTUK4L790+5i3LTgjx3KYGBzcYpjaiZBw4vOx94dH7MQ==} 5782 + engines: {node: ^20.19.0 || >=22.12.0} 5783 + cpu: [arm] 5784 + os: [android] 5785 + 5786 + '@oxfmt/binding-android-arm64@0.36.0': 5787 + resolution: {integrity: sha512-3ElCJRFNPQl7jexf2CAa9XmAm8eC5JPrIDSjc9jSchkVSFTEqyL0NtZinBB2h1a4i4JgP1oGl/5G5n8YR4FN8Q==} 5788 + engines: {node: ^20.19.0 || >=22.12.0} 5756 5789 cpu: [arm64] 5757 - os: [darwin] 5790 + os: [android] 5758 5791 5759 - '@oxfmt/darwin-arm64@0.28.0': 5760 - resolution: {integrity: sha512-jmUfF7cNJPw57bEK7sMIqrYRgn4LH428tSgtgLTCtjuGuu1ShREyrkeB7y8HtkXRfhBs4lVY+HMLhqElJvZ6ww==} 5792 + '@oxfmt/binding-darwin-arm64@0.36.0': 5793 + resolution: {integrity: sha512-nak4znWCqIExKhYSY/mz/lWsqWIpdsS7o0+SRzXR1Q0m7GrMcG1UrF1pS7TLGZhhkf7nTfEF7q6oZzJiodRDuw==} 5794 + engines: {node: ^20.19.0 || >=22.12.0} 5761 5795 cpu: [arm64] 5762 5796 os: [darwin] 5763 5797 5764 - '@oxfmt/darwin-x64@0.27.0': 5765 - resolution: {integrity: sha512-5u8mZVLm70v6l1wLZ2MmeNIEzGsruwKw5F7duePzpakPfxGtLpiFNUwe4aBUJULTP6aMzH+A4dA0JOn8lb7Luw==} 5798 + '@oxfmt/binding-darwin-x64@0.36.0': 5799 + resolution: {integrity: sha512-V4GP96thDnpKx6ADnMDnhIXNdtV+Ql9D4HUU+a37VTeVbs5qQSF/s6hhUP1b3xUqU7iRcwh72jUU2Y12rtGHAw==} 5800 + engines: {node: ^20.19.0 || >=22.12.0} 5766 5801 cpu: [x64] 5767 5802 os: [darwin] 5768 5803 5769 - '@oxfmt/darwin-x64@0.28.0': 5770 - resolution: {integrity: sha512-S6vlV8S7jbjzJOSjfVg2CimUC0r7/aHDLdUm/3+/B/SU/s1jV7ivqWkMv1/8EB43d1BBwT9JQ60ZMTkBqeXSFA==} 5804 + '@oxfmt/binding-freebsd-x64@0.36.0': 5805 + resolution: {integrity: sha512-/xapWCADfI5wrhxpEUjhI9fnw7MV5BUZizVa8e24n3VSK6A3Y1TB/ClOP1tfxNspykFKXp4NBWl6NtDJP3osqQ==} 5806 + engines: {node: ^20.19.0 || >=22.12.0} 5771 5807 cpu: [x64] 5772 - os: [darwin] 5808 + os: [freebsd] 5809 + 5810 + '@oxfmt/binding-linux-arm-gnueabihf@0.36.0': 5811 + resolution: {integrity: sha512-1lOmv61XMFIH5uNm27620kRRzWt/RK6tdn250BRDoG9W7OXGOQ5UyI1HVT+SFkoOoKztBiinWgi68+NA1MjBVQ==} 5812 + engines: {node: ^20.19.0 || >=22.12.0} 5813 + cpu: [arm] 5814 + os: [linux] 5815 + 5816 + '@oxfmt/binding-linux-arm-musleabihf@0.36.0': 5817 + resolution: {integrity: sha512-vMH23AskdR1ujUS9sPck2Df9rBVoZUnCVY86jisILzIQ/QQ/yKUTi7tgnIvydPx7TyB/48wsQ5QMr5Knq5p/aw==} 5818 + engines: {node: ^20.19.0 || >=22.12.0} 5819 + cpu: [arm] 5820 + os: [linux] 5773 5821 5774 - '@oxfmt/linux-arm64-gnu@0.27.0': 5775 - resolution: {integrity: sha512-aql/LLYriX/5Ar7o5Qivnp/qMTUPNiOCr7cFLvmvzYZa3XL0H8XtbKUfIVm+9ILR0urXQzcml+L8pLe1p8sgEg==} 5822 + '@oxfmt/binding-linux-arm64-gnu@0.36.0': 5823 + resolution: {integrity: sha512-Hy1V+zOBHpBiENRx77qrUTt5aPDHeCASRc8K5KwwAHkX2AKP0nV89eL17hsZrE9GmnXFjsNmd80lyf7aRTXsbw==} 5824 + engines: {node: ^20.19.0 || >=22.12.0} 5776 5825 cpu: [arm64] 5777 5826 os: [linux] 5778 5827 libc: [glibc] 5779 5828 5780 - '@oxfmt/linux-arm64-gnu@0.28.0': 5781 - resolution: {integrity: sha512-TfJkMZjePbLiskmxFXVAbGI/OZtD+y+fwS0wyW8O6DWG0ARTf0AipY9zGwGoOdpFuXOJceXvN4SHGLbYNDMY4Q==} 5829 + '@oxfmt/binding-linux-arm64-musl@0.36.0': 5830 + resolution: {integrity: sha512-SPGLJkOIHSIC6ABUQ5V8NqJpvYhMJueJv26NYqfCnwi/Mn6A61amkpJJ9Suy0Nmvs+OWESJpcebrBUbXPGZyQQ==} 5831 + engines: {node: ^20.19.0 || >=22.12.0} 5782 5832 cpu: [arm64] 5783 5833 os: [linux] 5834 + libc: [musl] 5835 + 5836 + '@oxfmt/binding-linux-ppc64-gnu@0.36.0': 5837 + resolution: {integrity: sha512-3EuoyB8x9x8ysYJjbEO/M9fkSk72zQKnXCvpZMDHXlnY36/1qMp55Nm0PrCwjGO/1pen5hdOVkz9WmP3nAp2IQ==} 5838 + engines: {node: ^20.19.0 || >=22.12.0} 5839 + cpu: [ppc64] 5840 + os: [linux] 5784 5841 libc: [glibc] 5785 5842 5786 - '@oxfmt/linux-arm64-musl@0.27.0': 5787 - resolution: {integrity: sha512-6u/kNb7hubthg4u/pn3MK/GJLwPgjDvDDnjjr7TC0/OK/xztef8ToXmycxIQ9OeDNIJJf7Z0Ss/rHnKvQOWzRw==} 5788 - cpu: [arm64] 5843 + '@oxfmt/binding-linux-riscv64-gnu@0.36.0': 5844 + resolution: {integrity: sha512-MpY3itLwpGh8dnywtrZtaZ604T1m715SydCKy0+qTxetv+IHzuA+aO/AGzrlzUNYZZmtWtmDBrChZGibvZxbRQ==} 5845 + engines: {node: ^20.19.0 || >=22.12.0} 5846 + cpu: [riscv64] 5847 + os: [linux] 5848 + libc: [glibc] 5849 + 5850 + '@oxfmt/binding-linux-riscv64-musl@0.36.0': 5851 + resolution: {integrity: sha512-mmDhe4Vtx+XwQPRPn/V25+APnkApYgZ23q+6GVsNYY98pf3aU0aI3Me96pbRs/AfJ1jIiGC+/6q71FEu8dHcHw==} 5852 + engines: {node: ^20.19.0 || >=22.12.0} 5853 + cpu: [riscv64] 5789 5854 os: [linux] 5790 5855 libc: [musl] 5791 5856 5792 - '@oxfmt/linux-arm64-musl@0.28.0': 5793 - resolution: {integrity: sha512-7fyQUdW203v4WWGr1T3jwTz4L7KX9y5DeATryQ6fLT6QQp9GEuct8/k0lYhd+ys42iTV/IkJF20e3YkfSOOILg==} 5794 - cpu: [arm64] 5857 + '@oxfmt/binding-linux-s390x-gnu@0.36.0': 5858 + resolution: {integrity: sha512-AYXhU+DmNWLSnvVwkHM92fuYhogtVHab7UQrPNaDf1sxadugg9gWVmcgJDlIwxJdpk5CVW/TFvwUKwI432zhhA==} 5859 + engines: {node: ^20.19.0 || >=22.12.0} 5860 + cpu: [s390x] 5861 + os: [linux] 5862 + libc: [glibc] 5863 + 5864 + '@oxfmt/binding-linux-x64-gnu@0.36.0': 5865 + resolution: {integrity: sha512-H16QhhQ3usoakMleiAAQ2mg0NsBDAdyE9agUgfC8IHHh3jZEbr0rIKwjEqwbOHK5M0EmfhJmr+aGO/MgZPsneA==} 5866 + engines: {node: ^20.19.0 || >=22.12.0} 5867 + cpu: [x64] 5868 + os: [linux] 5869 + libc: [glibc] 5870 + 5871 + '@oxfmt/binding-linux-x64-musl@0.36.0': 5872 + resolution: {integrity: sha512-EFFGkixA39BcmHiCe2ECdrq02D6FCve5ka6ObbvrheXl4V+R0U/E+/uLyVx1X65LW8TA8QQHdnbdDallRekohw==} 5873 + engines: {node: ^20.19.0 || >=22.12.0} 5874 + cpu: [x64] 5795 5875 os: [linux] 5796 5876 libc: [musl] 5797 5877 5798 - '@oxfmt/linux-x64-gnu@0.27.0': 5799 - resolution: {integrity: sha512-EhvDfFHO1yrK/Cu75eU1U828lBsW2cV0JITOrka5AjR3PlmnQQ03Mr9ROkWkbPmzAMklXI4Q16eO+4n+7FhS1w==} 5878 + '@oxfmt/binding-openharmony-arm64@0.36.0': 5879 + resolution: {integrity: sha512-zr/t369wZWFOj1qf06Z5gGNjFymfUNDrxKMmr7FKiDRVI1sNsdKRCuRL4XVjtcptKQ+ao3FfxLN1vrynivmCYg==} 5880 + engines: {node: ^20.19.0 || >=22.12.0} 5881 + cpu: [arm64] 5882 + os: [openharmony] 5883 + 5884 + '@oxfmt/binding-win32-arm64-msvc@0.36.0': 5885 + resolution: {integrity: sha512-FxO7UksTv8h4olzACgrqAXNF6BP329+H322323iDrMB5V/+a1kcAw07fsOsUmqNrb9iJBsCQgH/zqcqp5903ag==} 5886 + engines: {node: ^20.19.0 || >=22.12.0} 5887 + cpu: [arm64] 5888 + os: [win32] 5889 + 5890 + '@oxfmt/binding-win32-ia32-msvc@0.36.0': 5891 + resolution: {integrity: sha512-OjoMQ89H01M0oLMfr/CPNH1zi48ZIwxAKObUl57oh7ssUBNDp/2Vjf7E1TQ8M4oj4VFQ/byxl2SmcPNaI2YNDg==} 5892 + engines: {node: ^20.19.0 || >=22.12.0} 5893 + cpu: [ia32] 5894 + os: [win32] 5895 + 5896 + '@oxfmt/binding-win32-x64-msvc@0.36.0': 5897 + resolution: {integrity: sha512-MoyeQ9S36ZTz/4bDhOKJgOBIDROd4dQ5AkT9iezhEaUBxAPdNX9Oq0jD8OSnCj3G4wam/XNxVWKMA52kmzmPtQ==} 5898 + engines: {node: ^20.19.0 || >=22.12.0} 5899 + cpu: [x64] 5900 + os: [win32] 5901 + 5902 + '@oxfmt/darwin-arm64@0.27.0': 5903 + resolution: {integrity: sha512-3vwqyzNlVTVFVzHMlrqxb4tgVgHp6FYS0uIxsIZ/SeEDG0azaqiOw/2t8LlJ9f72PKRLWSey+Ak99tiKgpbsnQ==} 5904 + cpu: [arm64] 5905 + os: [darwin] 5906 + 5907 + '@oxfmt/darwin-x64@0.27.0': 5908 + resolution: {integrity: sha512-5u8mZVLm70v6l1wLZ2MmeNIEzGsruwKw5F7duePzpakPfxGtLpiFNUwe4aBUJULTP6aMzH+A4dA0JOn8lb7Luw==} 5800 5909 cpu: [x64] 5910 + os: [darwin] 5911 + 5912 + '@oxfmt/linux-arm64-gnu@0.27.0': 5913 + resolution: {integrity: sha512-aql/LLYriX/5Ar7o5Qivnp/qMTUPNiOCr7cFLvmvzYZa3XL0H8XtbKUfIVm+9ILR0urXQzcml+L8pLe1p8sgEg==} 5914 + cpu: [arm64] 5801 5915 os: [linux] 5802 5916 libc: [glibc] 5803 5917 5804 - '@oxfmt/linux-x64-gnu@0.28.0': 5805 - resolution: {integrity: sha512-sRKqAvEonuz0qr1X1ncUZceOBJerKzkO2gZIZmosvy/JmqyffpIFL3OE2tqacFkeDhrC+dNYQpusO8zsfHo3pw==} 5918 + '@oxfmt/linux-arm64-musl@0.27.0': 5919 + resolution: {integrity: sha512-6u/kNb7hubthg4u/pn3MK/GJLwPgjDvDDnjjr7TC0/OK/xztef8ToXmycxIQ9OeDNIJJf7Z0Ss/rHnKvQOWzRw==} 5920 + cpu: [arm64] 5921 + os: [linux] 5922 + libc: [musl] 5923 + 5924 + '@oxfmt/linux-x64-gnu@0.27.0': 5925 + resolution: {integrity: sha512-EhvDfFHO1yrK/Cu75eU1U828lBsW2cV0JITOrka5AjR3PlmnQQ03Mr9ROkWkbPmzAMklXI4Q16eO+4n+7FhS1w==} 5806 5926 cpu: [x64] 5807 5927 os: [linux] 5808 5928 libc: [glibc] ··· 5813 5933 os: [linux] 5814 5934 libc: [musl] 5815 5935 5816 - '@oxfmt/linux-x64-musl@0.28.0': 5817 - resolution: {integrity: sha512-fW6czbXutX/tdQe8j4nSIgkUox9RXqjyxwyWXUDItpoDkoXllq17qbD7GVc0whrEhYQC6hFE1UEAcDypLJoSzw==} 5818 - cpu: [x64] 5819 - os: [linux] 5820 - libc: [musl] 5821 - 5822 5936 '@oxfmt/win32-arm64@0.27.0': 5823 5937 resolution: {integrity: sha512-mmuEhXZEhAYAeyjVTWwGKIA3RSb2b/He9wrXkDJPhmqp8qISUzkVg1dQmLEt4hD+wI5rzR+6vchPt521tzuRDA==} 5824 5938 cpu: [arm64] 5825 5939 os: [win32] 5826 5940 5827 - '@oxfmt/win32-arm64@0.28.0': 5828 - resolution: {integrity: sha512-D/HDeQBAQRjTbD9OLV6kRDcStrIfO+JsUODDCdGmhRfNX8LPCx95GpfyybpZfn3wVF8Jq/yjPXV1xLkQ+s7RcA==} 5829 - cpu: [arm64] 5830 - os: [win32] 5831 - 5832 5941 '@oxfmt/win32-x64@0.27.0': 5833 5942 resolution: {integrity: sha512-cXKVkL1DuRq31QjwHqtBEUztyBmM9YZKdeFhsDLBURNdk1CFW42uWsmTsaqrXSoiCj7nCjfP0pwTOzxhQZra/A==} 5834 - cpu: [x64] 5835 - os: [win32] 5836 - 5837 - '@oxfmt/win32-x64@0.28.0': 5838 - resolution: {integrity: sha512-4+S2j4OxOIyo8dz5osm5dZuL0yVmxXvtmNdHB5xyGwAWVvyWNvf7tCaQD7w2fdSsAXQLOvK7KFQrHFe33nJUCA==} 5839 5943 cpu: [x64] 5840 5944 os: [win32] 5841 5945 ··· 7342 7446 '@angular/common': '>=16.0.0' 7343 7447 '@angular/core': '>=16.0.0' 7344 7448 7449 + '@tanstack/angular-query-experimental@5.90.25': 7450 + resolution: {integrity: sha512-8MmtvEq83kRbwtt6NNbDAWPMOFHLxSmvhScFtdmBP/Xo5gSSzAf4JHcblQDHV/CgWIGKOp7eOa6aXDiVIK+kbw==} 7451 + peerDependencies: 7452 + '@angular/common': '>=16.0.0' 7453 + '@angular/core': '>=16.0.0' 7454 + 7345 7455 '@tanstack/match-sorter-utils@8.19.4': 7346 7456 resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==} 7347 7457 engines: {node: '>=12'} 7458 + 7459 + '@tanstack/preact-query@5.93.0': 7460 + resolution: {integrity: sha512-c4vQWaO5mWhLUo4JYH6mfXUTK0DS+yO6S+3LLX2o0leALxzI8iRip84Cuty5iz/qQeKRULrOWHeNOt6EU6w2aw==} 7461 + peerDependencies: 7462 + preact: ^10.0.0 7348 7463 7349 7464 '@tanstack/query-core@5.73.3': 7350 7465 resolution: {integrity: sha512-LUpsgVT3IkvOECdkQ3QD6esczSH71mAzH/LDZ2cu8j6w430v5W0JB1ulzsG8FFwFBd5fm/ePM2DFpg9TucRMgQ==} 7351 7466 7467 + '@tanstack/query-core@5.90.2': 7468 + resolution: {integrity: sha512-k/TcR3YalnzibscALLwxeiLUub6jN5EDLwKDiO7q5f4ICEoptJ+n9+7vcEFy5/x/i6Q+Lb/tXrsKCggf5uQJXQ==} 7469 + 7470 + '@tanstack/query-core@5.90.20': 7471 + resolution: {integrity: sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==} 7472 + 7352 7473 '@tanstack/query-devtools@5.73.3': 7353 7474 resolution: {integrity: sha512-hBQyYwsOuO7QOprK75NzfrWs/EQYjgFA0yykmcvsV62q0t6Ua97CU3sYgjHx0ZvxkXSOMkY24VRJ5uv9f5Ik4w==} 7354 7475 7476 + '@tanstack/query-devtools@5.93.0': 7477 + resolution: {integrity: sha512-+kpsx1NQnOFTZsw6HAFCW3HkKg0+2cepGtAWXjiiSOJJ1CtQpt72EE2nyZb+AjAbLRPoeRmPJ8MtQd8r8gsPdg==} 7478 + 7355 7479 '@tanstack/react-query-devtools@5.73.3': 7356 7480 resolution: {integrity: sha512-5YizhmYep/A9h5Z+aApHZd0rwNH3FQm6JzUQmdH+f8aG5joi2cRAq+3UakDH6wst2kysReEmW4n7PaMxfCEtRQ==} 7357 7481 peerDependencies: ··· 7363 7487 peerDependencies: 7364 7488 react: ^18 || ^19 7365 7489 7366 - '@tanstack/solid-query@5.73.3': 7367 - resolution: {integrity: sha512-qDM27By4ltUTFyfh/ha+xabVveX2TZSmGTwcAoZUMjRzU0hRwFdtXVpztMcMAJ31WjxCceGSER0kkqdwQqPj+g==} 7490 + '@tanstack/react-query@5.90.21': 7491 + resolution: {integrity: sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==} 7492 + peerDependencies: 7493 + react: ^18 || ^19 7494 + 7495 + '@tanstack/solid-query@5.90.23': 7496 + resolution: {integrity: sha512-pbZc4+Kgm7ktzIuu01R3KOWfazQKgNp4AZvW0RSvv+sNMpYoileUDAkXEcjDJe6RJmb3fVvTR4LlcSL5pxDElQ==} 7368 7497 peerDependencies: 7369 7498 solid-js: ^1.6.0 7370 7499 ··· 7373 7502 peerDependencies: 7374 7503 svelte: ^3.54.0 || ^4.0.0 || ^5.0.0 7375 7504 7505 + '@tanstack/svelte-query@5.90.2': 7506 + resolution: {integrity: sha512-owjnp0w8sOXlMhLZhucHrsYvCjgjHrVyII/wlqMGefxKFyroZS3xCwTee+IUx7UHbL+QmKr/HQTeTqhgxmxPQw==} 7507 + peerDependencies: 7508 + svelte: ^3.54.0 || ^4.0.0 || ^5.0.0 7509 + 7376 7510 '@tanstack/vue-query-devtools@5.73.3': 7377 7511 resolution: {integrity: sha512-ZmsN8qsPX0ixJvCfEAyB26ep954ttIZmEWw7ckBW/K+4Ea0Bz1nteIy+KK+IqHwlttjVCJmjUR/ibsnbfPa8Aw==} 7378 7512 peerDependencies: ··· 7381 7515 7382 7516 '@tanstack/vue-query@5.73.3': 7383 7517 resolution: {integrity: sha512-e8J0m9BhaF7loNvn+G/JAK4X47+9VdzSSmEhju/+G7XK49o3eFHNCAyFX0fBRAJhEKknDaSWTk9ggSE38wuQ/w==} 7518 + peerDependencies: 7519 + '@vue/composition-api': ^1.1.2 7520 + vue: ^2.6.0 || ^3.3.0 7521 + peerDependenciesMeta: 7522 + '@vue/composition-api': 7523 + optional: true 7524 + 7525 + '@tanstack/vue-query@5.92.9': 7526 + resolution: {integrity: sha512-jjAZcqKveyX0C4w/6zUqbnqk/XzuxNWaFsWjGTJWULVFizUNeLGME2gf9vVSDclIyiBhR13oZJPPs6fJgfpIJQ==} 7384 7527 peerDependencies: 7385 7528 '@vue/composition-api': ^1.1.2 7386 7529 vue: ^2.6.0 || ^3.3.0 ··· 7507 7650 7508 7651 '@types/jasmine@5.1.9': 7509 7652 resolution: {integrity: sha512-8t4HtkW4wxiPVedMpeZ63n3vlWxEIquo/zc1Tm8ElU+SqVV7+D3Na2PWaJUp179AzTragMWVwkMv7mvty0NfyQ==} 7510 - 7511 - '@types/js-yaml@4.0.9': 7512 - resolution: {integrity: sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==} 7513 7653 7514 7654 '@types/jsdom@27.0.0': 7515 7655 resolution: {integrity: sha512-NZyFl/PViwKzdEkQg96gtnB8wm+1ljhdDay9ahn4hgb+SfVtPCbm3TlmDUFXTA+MGN3CijicnMhG18SI5H3rFw==} ··· 7806 7946 resolution: {integrity: sha512-zm6xx8UT/Xy2oSr2ZXD0pZo7Jx2XsCoID2IUh9YSTFRu7z+WdwYTRk6LhUftm1crwqbuoF6I8zAFeCMw0YjwDg==} 7807 7947 engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 7808 7948 7949 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260309.1': 7950 + resolution: {integrity: sha512-Vszk6vbONyyT47mUTEFNAXk+bJisM8F0pI+MyNPM8i2oorex7Gbp7ivFUGzdZHRFPDXMrlw6AXmgx1U2tZxiHw==} 7951 + cpu: [arm64] 7952 + os: [darwin] 7953 + 7954 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260309.1': 7955 + resolution: {integrity: sha512-UmmW/L1fW6URMILx5HqxcL2kElOyTYbY6M8yRMQK7gmBzsbkGj37JYN+WZgPkz/PQCVsxwIFcot6WmKRRXeBxQ==} 7956 + cpu: [x64] 7957 + os: [darwin] 7958 + 7959 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260309.1': 7960 + resolution: {integrity: sha512-sN5rQRvqre8JHUISJhybUQ1e4a+mb/Ifa+uWHJawJ2tojTXWkU1rJTZBnAN3/XeoIJgeSdaZQAZRDlW9B7zbvw==} 7961 + cpu: [arm64] 7962 + os: [linux] 7963 + 7964 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260309.1': 7965 + resolution: {integrity: sha512-G5zgoOZP2NjZ1kga9mend2in1e3C+Mm3XufelVZ9RwWRka744s6KxAsen853LizCrxBh58foj9pPVnH6gKUJvg==} 7966 + cpu: [arm] 7967 + os: [linux] 7968 + 7969 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260309.1': 7970 + resolution: {integrity: sha512-ZuHu9Sg4/akGSrO49hKLNKwrFXx7AZ2CS3PcTd85cC4nKudqB1aGD9rHxZZZyClj++e0qcNQ+4eTMn1sxDA9VQ==} 7971 + cpu: [x64] 7972 + os: [linux] 7973 + 7974 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260309.1': 7975 + resolution: {integrity: sha512-RNIidoGPsRaALc1znXiWfNARkGptm9e55qYnaz11YPvMrqbRKP9Y6Ipx4Oh/diIeF7y9UYiikeyk7EsyKe//sw==} 7976 + cpu: [arm64] 7977 + os: [win32] 7978 + 7979 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260309.1': 7980 + resolution: {integrity: sha512-/rEvAKowcoEdL2VeNju8apkGHEmbat10jIn1Sncny1zIaWvaMFw6bhmny+kKwX+9deitMfo9ihLlo5GCPJuMPQ==} 7981 + cpu: [x64] 7982 + os: [win32] 7983 + 7984 + '@typescript/native-preview@7.0.0-dev.20260309.1': 7985 + resolution: {integrity: sha512-ZK+ExK7scBzUCAXCTtAwUm6QENJ+l3tCDQXNCly4WcGUvbIAWdaiNns4brganGN9nrxxRkC9Rx0CrxvIsn9zHA==} 7986 + hasBin: true 7987 + 7809 7988 '@ungap/structured-clone@1.3.0': 7810 7989 resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 7811 7990 ··· 8591 8770 arktype@2.1.29: 8592 8771 resolution: {integrity: sha512-jyfKk4xIOzvYNayqnD8ZJQqOwcrTOUbIU4293yrzAjA3O1dWh61j71ArMQ6tS/u4pD7vabSPe7nG3RCyoXW6RQ==} 8593 8772 8773 + arktype@2.2.0: 8774 + resolution: {integrity: sha512-t54MZ7ti5BhOEvzEkgKnWvqj+UbDfWig+DHr5I34xatymPusKLS0lQpNJd8M6DzmIto2QGszHfNKoFIT8tMCZQ==} 8775 + 8594 8776 array-buffer-byte-length@1.0.2: 8595 8777 resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 8596 8778 engines: {node: '>= 0.4'} ··· 9016 9198 chrome-trace-event@1.0.4: 9017 9199 resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} 9018 9200 engines: {node: '>=6.0'} 9019 - 9020 - ci-info@3.9.0: 9021 - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} 9022 - engines: {node: '>=8'} 9023 9201 9024 9202 ci-info@4.4.0: 9025 9203 resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} ··· 10673 10851 resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 10674 10852 engines: {node: '>= 0.4'} 10675 10853 10676 - get-tsconfig@4.10.1: 10677 - resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} 10678 - 10679 - get-tsconfig@4.13.0: 10680 - resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==} 10854 + get-tsconfig@4.13.6: 10855 + resolution: {integrity: sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==} 10681 10856 10682 10857 giget@1.2.5: 10683 10858 resolution: {integrity: sha512-r1ekGw/Bgpi3HLV3h1MRBIlSAdHoIMklpaQ3OQLFcRw9PwAj2rqigvIbg+dBUI51OxVI2jsEtDywDBjSiuf7Ug==} ··· 10753 10928 resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} 10754 10929 engines: {node: '>=18'} 10755 10930 10756 - globals@17.3.0: 10757 - resolution: {integrity: sha512-yMqGUQVVCkD4tqjOJf3TnrvaaHDMYp4VlUSObbkIiuCPe/ofdMBFIAcBbCSRFWOnos6qRiTVStDwqPLUclaxIw==} 10931 + globals@17.4.0: 10932 + resolution: {integrity: sha512-hjrNztw/VajQwOLsMNT1cbJiH2muO3OROCHnbehc8eY5JyD2gqz4AcMHPqgaOR59DjgUjYAYLeH699g/eWi2jw==} 10758 10933 engines: {node: '>=18'} 10759 10934 10760 10935 globalthis@1.0.4: ··· 11825 12000 linkify-it@5.0.0: 11826 12001 resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} 11827 12002 11828 - lint-staged@16.2.7: 11829 - resolution: {integrity: sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==} 12003 + lint-staged@16.3.2: 12004 + resolution: {integrity: sha512-xKqhC2AeXLwiAHXguxBjuChoTTWFC6Pees0SHPwOpwlvI3BH7ZADFPddAdN3pgo3aiKgPUx/bxE78JfUnxQnlg==} 11830 12005 engines: {node: '>=20.17'} 11831 12006 hasBin: true 11832 12007 ··· 12387 12562 mz@2.7.0: 12388 12563 resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 12389 12564 12390 - nano-spawn@2.0.0: 12391 - resolution: {integrity: sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==} 12392 - engines: {node: '>=20.17'} 12393 - 12394 12565 nanoid@3.3.11: 12395 12566 resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 12396 12567 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} ··· 12855 13026 engines: {node: ^20.19.0 || >=22.12.0} 12856 13027 hasBin: true 12857 13028 12858 - oxfmt@0.28.0: 12859 - resolution: {integrity: sha512-3+hhBqPE6Kp22KfJmnstrZbl+KdOVSEu1V0ABaFIg1rYLtrMgrupx9znnHgHLqKxAVHebjTdiCJDk30CXOt6cw==} 13029 + oxfmt@0.36.0: 13030 + resolution: {integrity: sha512-/ejJ+KoSW6J9bcNT9a9UtJSJNWhJ3yOLSBLbkoFHJs/8CZjmaZVZAJe4YgO1KMJlKpNQasrn/G9JQUEZI3p0EQ==} 12860 13031 engines: {node: ^20.19.0 || >=22.12.0} 12861 13032 hasBin: true 12862 13033 ··· 13460 13631 powershell-utils@0.1.0: 13461 13632 resolution: {integrity: sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==} 13462 13633 engines: {node: '>=20'} 13634 + 13635 + preact@10.29.0: 13636 + resolution: {integrity: sha512-wSAGyk2bYR1c7t3SZ3jHcM6xy0lcBcDel6lODcs9ME6Th++Dx2KU+6D3HD8wMMKGA8Wpw7OMd3/4RGzYRpzwRg==} 13463 13637 13464 13638 precinct@12.2.0: 13465 13639 resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==} ··· 14895 15069 resolution: {integrity: sha512-50QV99kCKH5P/Vs4E2Gzp7BopNV+KzTXqWeaxrfu5IQJBOULRsTIS9seSsOVT8ZnGXzCyx55nYWAi4qJzpZKEQ==} 14896 15070 engines: {node: ^20.17.0 || >=22.9.0} 14897 15071 14898 - turbo-darwin-64@2.8.3: 14899 - resolution: {integrity: sha512-4kXRLfcygLOeNcP6JquqRLmGB/ATjjfehiojL2dJkL7GFm3SPSXbq7oNj8UbD8XriYQ5hPaSuz59iF1ijPHkTw==} 15072 + turbo-darwin-64@2.8.14: 15073 + resolution: {integrity: sha512-9sFi7n2lLfEsGWi5OEoA/eTtQU2BPKtzSYKqufMtDeRmqMT9vKjbv9gJCRkllSVE9BOXA0qXC3diyX8V8rKIKw==} 14900 15074 cpu: [x64] 14901 15075 os: [darwin] 14902 15076 14903 - turbo-darwin-arm64@2.8.3: 14904 - resolution: {integrity: sha512-xF7uCeC0UY0Hrv/tqax0BMbFlVP1J/aRyeGQPZT4NjvIPj8gSPDgFhfkfz06DhUwDg5NgMo04uiSkAWE8WB/QQ==} 15077 + turbo-darwin-arm64@2.8.14: 15078 + resolution: {integrity: sha512-aS4yJuy6A1PCLws+PJpZP0qCURG8Y5iVx13z/WAbKyeDTY6W6PiGgcEllSaeLGxyn++382ztN/EZH85n2zZ6VQ==} 14905 15079 cpu: [arm64] 14906 15080 os: [darwin] 14907 15081 14908 - turbo-linux-64@2.8.3: 14909 - resolution: {integrity: sha512-vxMDXwaOjweW/4etY7BxrXCSkvtwh0PbwVafyfT1Ww659SedUxd5rM3V2ZCmbwG8NiCfY7d6VtxyHx3Wh1GoZA==} 15082 + turbo-linux-64@2.8.14: 15083 + resolution: {integrity: sha512-XC6wPUDJkakjhNLaS0NrHDMiujRVjH+naEAwvKLArgqRaFkNxjmyNDRM4eu3soMMFmjym6NTxYaF74rvET+Orw==} 14910 15084 cpu: [x64] 14911 15085 os: [linux] 14912 15086 14913 - turbo-linux-arm64@2.8.3: 14914 - resolution: {integrity: sha512-mQX7uYBZFkuPLLlKaNe9IjR1JIef4YvY8f21xFocvttXvdPebnq3PK1Zjzl9A1zun2BEuWNUwQIL8lgvN9Pm3Q==} 15087 + turbo-linux-arm64@2.8.14: 15088 + resolution: {integrity: sha512-ChfE7isyVNjZrVSPDwcfqcHLG/FuIBbOFxnt1FM8vSuBGzHAs8AlTdwFNIxlEMJfZ8Ad9mdMxdmsCUPIWiQ6cg==} 14915 15089 cpu: [arm64] 14916 15090 os: [linux] 14917 15091 14918 - turbo-windows-64@2.8.3: 14919 - resolution: {integrity: sha512-YLGEfppGxZj3VWcNOVa08h6ISsVKiG85aCAWosOKNUjb6yErWEuydv6/qImRJUI+tDLvDvW7BxopAkujRnWCrw==} 15092 + turbo-windows-64@2.8.14: 15093 + resolution: {integrity: sha512-FTbIeQL1ycLFW2t9uQNMy+bRSzi3Xhwun/e7ZhFBdM+U0VZxxrtfYEBM9CHOejlfqomk6Jh7aRz0sJoqYn39Hg==} 14920 15094 cpu: [x64] 14921 15095 os: [win32] 14922 15096 14923 - turbo-windows-arm64@2.8.3: 14924 - resolution: {integrity: sha512-afTUGKBRmOJU1smQSBnFGcbq0iabAPwh1uXu2BVk7BREg30/1gMnJh9DFEQTah+UD3n3ru8V55J83RQNFfqoyw==} 15097 + turbo-windows-arm64@2.8.14: 15098 + resolution: {integrity: sha512-KgZX12cTyhY030qS7ieT8zRkhZZE2VWJasDFVUSVVn17nR7IShpv68/7j5UqJNeRLIGF1XPK0phsP5V5yw3how==} 14925 15099 cpu: [arm64] 14926 15100 os: [win32] 14927 15101 14928 - turbo@2.8.3: 14929 - resolution: {integrity: sha512-8Osxz5Tu/Dw2kb31EAY+nhq/YZ3wzmQSmYa1nIArqxgCAldxv9TPlrAiaBUDVnKA4aiPn0OFBD1ACcpc5VFOAQ==} 15102 + turbo@2.8.14: 15103 + resolution: {integrity: sha512-UCTxeMNYT1cKaHiIFdLCQ7ulI+jw5i5uOnJOrRXsgUD7G3+OjlUjwVd7JfeVt2McWSVGjYA3EVW/v1FSsJ5DtA==} 14930 15104 hasBin: true 14931 15105 14932 15106 type-check@0.4.0: ··· 17875 18049 '@babel/types': 7.29.0 17876 18050 esutils: 2.0.3 17877 18051 17878 - '@babel/runtime@7.28.3': {} 17879 - 17880 18052 '@babel/runtime@7.28.4': {} 17881 18053 17882 18054 '@babel/standalone@7.28.3': {} ··· 17951 18123 17952 18124 '@braidai/lang@1.1.2': {} 17953 18125 17954 - '@changesets/apply-release-plan@7.0.14': 18126 + '@changesets/apply-release-plan@7.1.0': 17955 18127 dependencies: 17956 - '@changesets/config': 3.1.2 18128 + '@changesets/config': 3.1.3 17957 18129 '@changesets/get-version-range-type': 0.4.0 17958 18130 '@changesets/git': 3.0.4 17959 18131 '@changesets/should-skip-package': 0.1.2 ··· 17980 18152 dependencies: 17981 18153 '@changesets/types': 6.1.0 17982 18154 17983 - '@changesets/cli@2.29.8(@types/node@24.10.10)': 18155 + '@changesets/cli@2.30.0(@types/node@24.10.10)': 17984 18156 dependencies: 17985 - '@changesets/apply-release-plan': 7.0.14 18157 + '@changesets/apply-release-plan': 7.1.0 17986 18158 '@changesets/assemble-release-plan': 6.0.9 17987 18159 '@changesets/changelog-git': 0.2.1 17988 - '@changesets/config': 3.1.2 18160 + '@changesets/config': 3.1.3 17989 18161 '@changesets/errors': 0.2.0 17990 18162 '@changesets/get-dependents-graph': 2.1.3 17991 - '@changesets/get-release-plan': 4.0.14 18163 + '@changesets/get-release-plan': 4.0.15 17992 18164 '@changesets/git': 3.0.4 17993 18165 '@changesets/logger': 0.1.1 17994 18166 '@changesets/pre': 2.0.2 17995 - '@changesets/read': 0.6.6 18167 + '@changesets/read': 0.6.7 17996 18168 '@changesets/should-skip-package': 0.1.2 17997 18169 '@changesets/types': 6.1.0 17998 18170 '@changesets/write': 0.4.0 17999 18171 '@inquirer/external-editor': 1.0.3(@types/node@24.10.10) 18000 18172 '@manypkg/get-packages': 1.1.3 18001 18173 ansi-colors: 4.1.3 18002 - ci-info: 3.9.0 18003 18174 enquirer: 2.4.1 18004 18175 fs-extra: 7.0.1 18005 18176 mri: 1.2.0 18006 - p-limit: 2.3.0 18007 18177 package-manager-detector: 0.2.11 18008 18178 picocolors: 1.1.1 18009 18179 resolve-from: 5.0.0 ··· 18013 18183 transitivePeerDependencies: 18014 18184 - '@types/node' 18015 18185 18016 - '@changesets/config@3.1.2': 18186 + '@changesets/config@3.1.3': 18017 18187 dependencies: 18018 18188 '@changesets/errors': 0.2.0 18019 18189 '@changesets/get-dependents-graph': 2.1.3 18020 18190 '@changesets/logger': 0.1.1 18191 + '@changesets/should-skip-package': 0.1.2 18021 18192 '@changesets/types': 6.1.0 18022 18193 '@manypkg/get-packages': 1.1.3 18023 18194 fs-extra: 7.0.1 ··· 18034 18205 picocolors: 1.1.1 18035 18206 semver: 7.7.3 18036 18207 18037 - '@changesets/get-github-info@0.7.0(encoding@0.1.13)': 18208 + '@changesets/get-github-info@0.8.0(encoding@0.1.13)': 18038 18209 dependencies: 18039 18210 dataloader: 1.4.0 18040 18211 node-fetch: 2.7.0(encoding@0.1.13) 18041 18212 transitivePeerDependencies: 18042 18213 - encoding 18043 18214 18044 - '@changesets/get-release-plan@4.0.14': 18215 + '@changesets/get-release-plan@4.0.15': 18045 18216 dependencies: 18046 18217 '@changesets/assemble-release-plan': 6.0.9 18047 - '@changesets/config': 3.1.2 18218 + '@changesets/config': 3.1.3 18048 18219 '@changesets/pre': 2.0.2 18049 - '@changesets/read': 0.6.6 18220 + '@changesets/read': 0.6.7 18050 18221 '@changesets/types': 6.1.0 18051 18222 '@manypkg/get-packages': 1.1.3 18052 18223 ··· 18064 18235 dependencies: 18065 18236 picocolors: 1.1.1 18066 18237 18067 - '@changesets/parse@0.4.2': 18238 + '@changesets/parse@0.4.3': 18068 18239 dependencies: 18069 18240 '@changesets/types': 6.1.0 18070 18241 js-yaml: 4.1.1 ··· 18076 18247 '@manypkg/get-packages': 1.1.3 18077 18248 fs-extra: 7.0.1 18078 18249 18079 - '@changesets/read@0.6.6': 18250 + '@changesets/read@0.6.7': 18080 18251 dependencies: 18081 18252 '@changesets/git': 3.0.4 18082 18253 '@changesets/logger': 0.1.1 18083 - '@changesets/parse': 0.4.2 18254 + '@changesets/parse': 0.4.3 18084 18255 '@changesets/types': 6.1.0 18085 18256 fs-extra: 7.0.1 18086 18257 p-filter: 2.1.0 ··· 18137 18308 '@cspotcode/source-map-support@0.8.1': 18138 18309 dependencies: 18139 18310 '@jridgewell/trace-mapping': 0.3.9 18311 + optional: true 18140 18312 18141 18313 '@csstools/color-helpers@6.0.1': {} 18142 18314 ··· 19591 19763 dependencies: 19592 19764 '@jridgewell/resolve-uri': 3.1.2 19593 19765 '@jridgewell/sourcemap-codec': 1.5.5 19766 + optional: true 19594 19767 19595 19768 '@jsdevtools/ono@7.1.3': {} 19596 19769 ··· 19775 19948 19776 19949 '@manypkg/find-root@1.1.0': 19777 19950 dependencies: 19778 - '@babel/runtime': 7.28.3 19951 + '@babel/runtime': 7.28.4 19779 19952 '@types/node': 12.20.55 19780 19953 find-up: 4.1.0 19781 19954 fs-extra: 8.1.0 19782 19955 19783 19956 '@manypkg/get-packages@1.1.3': 19784 19957 dependencies: 19785 - '@babel/runtime': 7.28.3 19958 + '@babel/runtime': 7.28.4 19786 19959 '@changesets/types': 4.1.0 19787 19960 '@manypkg/find-root': 1.1.0 19788 19961 fs-extra: 8.1.0 ··· 21025 21198 21026 21199 '@one-ini/wasm@0.1.1': {} 21027 21200 21028 - '@opencode-ai/sdk@1.1.48': {} 21201 + '@opencode-ai/sdk@1.2.24': {} 21029 21202 21030 21203 '@oxc-minify/binding-android-arm-eabi@0.110.0': 21031 21204 optional: true ··· 21281 21454 '@oxc-transform/binding-win32-x64-msvc@0.110.0': 21282 21455 optional: true 21283 21456 21284 - '@oxfmt/darwin-arm64@0.27.0': 21457 + '@oxfmt/binding-android-arm-eabi@0.36.0': 21458 + optional: true 21459 + 21460 + '@oxfmt/binding-android-arm64@0.36.0': 21461 + optional: true 21462 + 21463 + '@oxfmt/binding-darwin-arm64@0.36.0': 21464 + optional: true 21465 + 21466 + '@oxfmt/binding-darwin-x64@0.36.0': 21467 + optional: true 21468 + 21469 + '@oxfmt/binding-freebsd-x64@0.36.0': 21470 + optional: true 21471 + 21472 + '@oxfmt/binding-linux-arm-gnueabihf@0.36.0': 21473 + optional: true 21474 + 21475 + '@oxfmt/binding-linux-arm-musleabihf@0.36.0': 21476 + optional: true 21477 + 21478 + '@oxfmt/binding-linux-arm64-gnu@0.36.0': 21285 21479 optional: true 21286 21480 21287 - '@oxfmt/darwin-arm64@0.28.0': 21481 + '@oxfmt/binding-linux-arm64-musl@0.36.0': 21288 21482 optional: true 21289 21483 21290 - '@oxfmt/darwin-x64@0.27.0': 21484 + '@oxfmt/binding-linux-ppc64-gnu@0.36.0': 21291 21485 optional: true 21292 21486 21293 - '@oxfmt/darwin-x64@0.28.0': 21487 + '@oxfmt/binding-linux-riscv64-gnu@0.36.0': 21294 21488 optional: true 21295 21489 21296 - '@oxfmt/linux-arm64-gnu@0.27.0': 21490 + '@oxfmt/binding-linux-riscv64-musl@0.36.0': 21297 21491 optional: true 21298 21492 21299 - '@oxfmt/linux-arm64-gnu@0.28.0': 21493 + '@oxfmt/binding-linux-s390x-gnu@0.36.0': 21300 21494 optional: true 21301 21495 21302 - '@oxfmt/linux-arm64-musl@0.27.0': 21496 + '@oxfmt/binding-linux-x64-gnu@0.36.0': 21303 21497 optional: true 21304 21498 21305 - '@oxfmt/linux-arm64-musl@0.28.0': 21499 + '@oxfmt/binding-linux-x64-musl@0.36.0': 21306 21500 optional: true 21307 21501 21308 - '@oxfmt/linux-x64-gnu@0.27.0': 21502 + '@oxfmt/binding-openharmony-arm64@0.36.0': 21309 21503 optional: true 21310 21504 21311 - '@oxfmt/linux-x64-gnu@0.28.0': 21505 + '@oxfmt/binding-win32-arm64-msvc@0.36.0': 21312 21506 optional: true 21313 21507 21314 - '@oxfmt/linux-x64-musl@0.27.0': 21508 + '@oxfmt/binding-win32-ia32-msvc@0.36.0': 21315 21509 optional: true 21316 21510 21317 - '@oxfmt/linux-x64-musl@0.28.0': 21511 + '@oxfmt/binding-win32-x64-msvc@0.36.0': 21318 21512 optional: true 21319 21513 21320 - '@oxfmt/win32-arm64@0.27.0': 21514 + '@oxfmt/darwin-arm64@0.27.0': 21321 21515 optional: true 21322 21516 21323 - '@oxfmt/win32-arm64@0.28.0': 21517 + '@oxfmt/darwin-x64@0.27.0': 21324 21518 optional: true 21325 21519 21326 - '@oxfmt/win32-x64@0.27.0': 21520 + '@oxfmt/linux-arm64-gnu@0.27.0': 21327 21521 optional: true 21328 21522 21329 - '@oxfmt/win32-x64@0.28.0': 21523 + '@oxfmt/linux-arm64-musl@0.27.0': 21524 + optional: true 21525 + 21526 + '@oxfmt/linux-x64-gnu@0.27.0': 21527 + optional: true 21528 + 21529 + '@oxfmt/linux-x64-musl@0.27.0': 21530 + optional: true 21531 + 21532 + '@oxfmt/win32-arm64@0.27.0': 21533 + optional: true 21534 + 21535 + '@oxfmt/win32-x64@0.27.0': 21330 21536 optional: true 21331 21537 21332 21538 '@parcel/watcher-android-arm64@2.5.1': ··· 22724 22930 '@tanstack/query-core': 5.73.3 22725 22931 '@tanstack/query-devtools': 5.73.3 22726 22932 22933 + '@tanstack/angular-query-experimental@5.90.25(@angular/common@21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2))(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))': 22934 + dependencies: 22935 + '@angular/common': 21.1.2(@angular/core@21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0))(rxjs@7.8.2) 22936 + '@angular/core': 21.1.2(@angular/compiler@21.1.2)(rxjs@7.8.2)(zone.js@0.16.0) 22937 + '@tanstack/query-core': 5.90.20 22938 + optionalDependencies: 22939 + '@tanstack/query-devtools': 5.93.0 22940 + 22727 22941 '@tanstack/match-sorter-utils@8.19.4': 22728 22942 dependencies: 22729 22943 remove-accents: 0.5.0 22730 22944 22945 + '@tanstack/preact-query@5.93.0(preact@10.29.0)': 22946 + dependencies: 22947 + '@tanstack/query-core': 5.90.20 22948 + preact: 10.29.0 22949 + 22731 22950 '@tanstack/query-core@5.73.3': {} 22951 + 22952 + '@tanstack/query-core@5.90.2': {} 22953 + 22954 + '@tanstack/query-core@5.90.20': {} 22732 22955 22733 22956 '@tanstack/query-devtools@5.73.3': {} 22734 22957 22958 + '@tanstack/query-devtools@5.93.0': 22959 + optional: true 22960 + 22735 22961 '@tanstack/react-query-devtools@5.73.3(@tanstack/react-query@5.73.3(react@19.0.0))(react@19.0.0)': 22736 22962 dependencies: 22737 22963 '@tanstack/query-devtools': 5.73.3 ··· 22743 22969 '@tanstack/query-core': 5.73.3 22744 22970 react: 19.0.0 22745 22971 22746 - '@tanstack/solid-query@5.73.3(solid-js@1.9.9)': 22972 + '@tanstack/react-query@5.90.21(react@19.0.0)': 22747 22973 dependencies: 22748 - '@tanstack/query-core': 5.73.3 22974 + '@tanstack/query-core': 5.90.20 22975 + react: 19.0.0 22976 + 22977 + '@tanstack/solid-query@5.90.23(solid-js@1.9.9)': 22978 + dependencies: 22979 + '@tanstack/query-core': 5.90.20 22749 22980 solid-js: 1.9.9 22750 22981 22751 22982 '@tanstack/svelte-query@5.73.3(svelte@5.19.9)': 22752 22983 dependencies: 22753 22984 '@tanstack/query-core': 5.73.3 22985 + svelte: 5.19.9 22986 + 22987 + '@tanstack/svelte-query@5.90.2(svelte@5.19.9)': 22988 + dependencies: 22989 + '@tanstack/query-core': 5.90.2 22754 22990 svelte: 5.19.9 22755 22991 22756 22992 '@tanstack/vue-query-devtools@5.73.3(@tanstack/vue-query@5.73.3(vue@3.5.13(typescript@5.9.3)))(vue@3.5.13(typescript@5.9.3))': ··· 22767 23003 vue: 3.5.13(typescript@5.9.3) 22768 23004 vue-demi: 0.14.10(vue@3.5.13(typescript@5.9.3)) 22769 23005 22770 - '@tanstack/vue-query@5.73.3(vue@3.5.25(typescript@5.9.3))': 23006 + '@tanstack/vue-query@5.92.9(vue@3.5.25(typescript@5.9.3))': 22771 23007 dependencies: 22772 23008 '@tanstack/match-sorter-utils': 8.19.4 22773 - '@tanstack/query-core': 5.73.3 23009 + '@tanstack/query-core': 5.90.20 22774 23010 '@vue/devtools-api': 6.6.4 22775 23011 vue: 3.5.25(typescript@5.9.3) 22776 23012 vue-demi: 0.14.10(vue@3.5.25(typescript@5.9.3)) ··· 22784 23020 22785 23021 '@tokenizer/token@0.3.0': {} 22786 23022 22787 - '@tsconfig/node10@1.0.11': {} 23023 + '@tsconfig/node10@1.0.11': 23024 + optional: true 22788 23025 22789 - '@tsconfig/node12@1.0.11': {} 23026 + '@tsconfig/node12@1.0.11': 23027 + optional: true 22790 23028 22791 - '@tsconfig/node14@1.0.3': {} 23029 + '@tsconfig/node14@1.0.3': 23030 + optional: true 22792 23031 22793 - '@tsconfig/node16@1.0.4': {} 23032 + '@tsconfig/node16@1.0.4': 23033 + optional: true 22794 23034 22795 23035 '@tsconfig/node24@24.0.4': {} 22796 23036 ··· 22933 23173 22934 23174 '@types/jasmine@5.1.9': {} 22935 23175 22936 - '@types/js-yaml@4.0.9': {} 22937 - 22938 23176 '@types/jsdom@27.0.0': 22939 23177 dependencies: 22940 23178 '@types/node': 24.10.10 ··· 22975 23213 '@types/node@25.2.1': 22976 23214 dependencies: 22977 23215 undici-types: 7.16.0 23216 + optional: true 22978 23217 22979 23218 '@types/normalize-package-data@2.4.4': {} 22980 23219 ··· 23385 23624 '@typescript-eslint/types': 8.57.0 23386 23625 eslint-visitor-keys: 5.0.1 23387 23626 23627 + '@typescript/native-preview-darwin-arm64@7.0.0-dev.20260309.1': 23628 + optional: true 23629 + 23630 + '@typescript/native-preview-darwin-x64@7.0.0-dev.20260309.1': 23631 + optional: true 23632 + 23633 + '@typescript/native-preview-linux-arm64@7.0.0-dev.20260309.1': 23634 + optional: true 23635 + 23636 + '@typescript/native-preview-linux-arm@7.0.0-dev.20260309.1': 23637 + optional: true 23638 + 23639 + '@typescript/native-preview-linux-x64@7.0.0-dev.20260309.1': 23640 + optional: true 23641 + 23642 + '@typescript/native-preview-win32-arm64@7.0.0-dev.20260309.1': 23643 + optional: true 23644 + 23645 + '@typescript/native-preview-win32-x64@7.0.0-dev.20260309.1': 23646 + optional: true 23647 + 23648 + '@typescript/native-preview@7.0.0-dev.20260309.1': 23649 + optionalDependencies: 23650 + '@typescript/native-preview-darwin-arm64': 7.0.0-dev.20260309.1 23651 + '@typescript/native-preview-darwin-x64': 7.0.0-dev.20260309.1 23652 + '@typescript/native-preview-linux-arm': 7.0.0-dev.20260309.1 23653 + '@typescript/native-preview-linux-arm64': 7.0.0-dev.20260309.1 23654 + '@typescript/native-preview-linux-x64': 7.0.0-dev.20260309.1 23655 + '@typescript/native-preview-win32-arm64': 7.0.0-dev.20260309.1 23656 + '@typescript/native-preview-win32-x64': 7.0.0-dev.20260309.1 23657 + 23388 23658 '@ungap/structured-clone@1.3.0': {} 23389 23659 23390 23660 '@unhead/dom@1.11.20': ··· 24271 24541 acorn-walk@8.3.4: 24272 24542 dependencies: 24273 24543 acorn: 8.15.0 24544 + optional: true 24274 24545 24275 24546 acorn@7.4.1: {} 24276 24547 ··· 24393 24664 tar-stream: 3.1.7 24394 24665 zip-stream: 6.0.1 24395 24666 24396 - arg@4.1.3: {} 24667 + arg@4.1.3: 24668 + optional: true 24397 24669 24398 24670 arg@5.0.2: {} 24399 24671 ··· 24419 24691 '@ark/util': 0.56.0 24420 24692 arkregex: 0.0.5 24421 24693 24694 + arktype@2.2.0: 24695 + dependencies: 24696 + '@ark/schema': 0.56.0 24697 + '@ark/util': 0.56.0 24698 + arkregex: 0.0.5 24699 + 24422 24700 array-buffer-byte-length@1.0.2: 24423 24701 dependencies: 24424 24702 call-bound: 1.0.4 ··· 24995 25273 24996 25274 chrome-trace-event@1.0.4: {} 24997 25275 24998 - ci-info@3.9.0: {} 24999 - 25000 25276 ci-info@4.4.0: 25001 25277 optional: true 25002 25278 ··· 25302 25578 crc-32: 1.2.2 25303 25579 readable-stream: 4.7.0 25304 25580 25305 - create-require@1.1.1: {} 25581 + create-require@1.1.1: 25582 + optional: true 25306 25583 25307 25584 cron-parser@4.9.0: 25308 25585 dependencies: ··· 25674 25951 25675 25952 didyoumean@1.2.2: {} 25676 25953 25677 - diff@4.0.2: {} 25954 + diff@4.0.2: 25955 + optional: true 25678 25956 25679 25957 diff@7.0.0: {} 25680 25958 ··· 26158 26436 eslint: 9.17.0(jiti@2.6.1) 26159 26437 eslint-import-resolver-node: 0.3.9 26160 26438 eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 26161 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 26439 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)) 26162 26440 eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.6.1)) 26163 26441 eslint-plugin-react: 7.37.5(eslint@9.17.0(jiti@2.6.1)) 26164 26442 eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.6.1)) ··· 26182 26460 '@nolyfill/is-core-module': 1.0.39 26183 26461 debug: 4.4.3 26184 26462 eslint: 9.17.0(jiti@2.6.1) 26185 - get-tsconfig: 4.10.1 26463 + get-tsconfig: 4.13.6 26186 26464 is-bun-module: 2.0.0 26187 26465 stable-hash: 0.0.5 26188 26466 tinyglobby: 0.2.15 26189 26467 unrs-resolver: 1.11.1 26190 26468 optionalDependencies: 26191 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 26469 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)) 26192 26470 transitivePeerDependencies: 26193 26471 - supports-color 26194 26472 ··· 26212 26490 transitivePeerDependencies: 26213 26491 - supports-color 26214 26492 26215 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)): 26493 + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)): 26216 26494 dependencies: 26217 26495 '@rtsao/scc': 1.1.0 26218 26496 array-includes: 3.1.9 ··· 27125 27403 es-errors: 1.3.0 27126 27404 get-intrinsic: 1.3.0 27127 27405 27128 - get-tsconfig@4.10.1: 27129 - dependencies: 27130 - resolve-pkg-maps: 1.0.0 27131 - 27132 - get-tsconfig@4.13.0: 27406 + get-tsconfig@4.13.6: 27133 27407 dependencies: 27134 27408 resolve-pkg-maps: 1.0.0 27135 27409 ··· 27235 27509 27236 27510 globals@15.14.0: {} 27237 27511 27238 - globals@17.3.0: {} 27512 + globals@17.4.0: {} 27239 27513 27240 27514 globalthis@1.0.4: 27241 27515 dependencies: ··· 28671 28945 dependencies: 28672 28946 uc.micro: 2.1.0 28673 28947 28674 - lint-staged@16.2.7: 28948 + lint-staged@16.3.2: 28675 28949 dependencies: 28676 28950 commander: 14.0.3 28677 28951 listr2: 9.0.5 28678 28952 micromatch: 4.0.8 28679 - nano-spawn: 2.0.0 28680 - pidtree: 0.6.0 28681 28953 string-argv: 0.3.2 28954 + tinyexec: 1.0.2 28682 28955 yaml: 2.8.2 28683 28956 28684 28957 listhen@1.9.0: ··· 28893 29166 dependencies: 28894 29167 semver: 7.7.3 28895 29168 28896 - make-error@1.3.6: {} 29169 + make-error@1.3.6: 29170 + optional: true 28897 29171 28898 29172 make-fetch-happen@15.0.3: 28899 29173 dependencies: ··· 29403 29677 any-promise: 1.3.0 29404 29678 object-assign: 4.1.1 29405 29679 thenify-all: 1.6.0 29406 - 29407 - nano-spawn@2.0.0: {} 29408 29680 29409 29681 nanoid@3.3.11: {} 29410 29682 ··· 30639 30911 '@oxfmt/win32-arm64': 0.27.0 30640 30912 '@oxfmt/win32-x64': 0.27.0 30641 30913 30642 - oxfmt@0.28.0: 30914 + oxfmt@0.36.0: 30643 30915 dependencies: 30644 30916 tinypool: 2.1.0 30645 30917 optionalDependencies: 30646 - '@oxfmt/darwin-arm64': 0.28.0 30647 - '@oxfmt/darwin-x64': 0.28.0 30648 - '@oxfmt/linux-arm64-gnu': 0.28.0 30649 - '@oxfmt/linux-arm64-musl': 0.28.0 30650 - '@oxfmt/linux-x64-gnu': 0.28.0 30651 - '@oxfmt/linux-x64-musl': 0.28.0 30652 - '@oxfmt/win32-arm64': 0.28.0 30653 - '@oxfmt/win32-x64': 0.28.0 30918 + '@oxfmt/binding-android-arm-eabi': 0.36.0 30919 + '@oxfmt/binding-android-arm64': 0.36.0 30920 + '@oxfmt/binding-darwin-arm64': 0.36.0 30921 + '@oxfmt/binding-darwin-x64': 0.36.0 30922 + '@oxfmt/binding-freebsd-x64': 0.36.0 30923 + '@oxfmt/binding-linux-arm-gnueabihf': 0.36.0 30924 + '@oxfmt/binding-linux-arm-musleabihf': 0.36.0 30925 + '@oxfmt/binding-linux-arm64-gnu': 0.36.0 30926 + '@oxfmt/binding-linux-arm64-musl': 0.36.0 30927 + '@oxfmt/binding-linux-ppc64-gnu': 0.36.0 30928 + '@oxfmt/binding-linux-riscv64-gnu': 0.36.0 30929 + '@oxfmt/binding-linux-riscv64-musl': 0.36.0 30930 + '@oxfmt/binding-linux-s390x-gnu': 0.36.0 30931 + '@oxfmt/binding-linux-x64-gnu': 0.36.0 30932 + '@oxfmt/binding-linux-x64-musl': 0.36.0 30933 + '@oxfmt/binding-openharmony-arm64': 0.36.0 30934 + '@oxfmt/binding-win32-arm64-msvc': 0.36.0 30935 + '@oxfmt/binding-win32-ia32-msvc': 0.36.0 30936 + '@oxfmt/binding-win32-x64-msvc': 0.36.0 30654 30937 30655 30938 p-event@6.0.1: 30656 30939 dependencies: ··· 31237 31520 31238 31521 powershell-utils@0.1.0: {} 31239 31522 31523 + preact@10.29.0: {} 31524 + 31240 31525 precinct@12.2.0: 31241 31526 dependencies: 31242 31527 '@dependents/detective-less': 5.0.1 ··· 31659 31944 dependencies: 31660 31945 glob: 7.2.3 31661 31946 31662 - rolldown-plugin-dts@0.20.0(oxc-resolver@11.19.1)(rolldown@1.0.0-beta.57)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 31947 + rolldown-plugin-dts@0.20.0(@typescript/native-preview@7.0.0-dev.20260309.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-beta.57)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 31663 31948 dependencies: 31664 31949 '@babel/generator': 7.28.5 31665 31950 '@babel/parser': 7.28.5 ··· 31667 31952 ast-kit: 2.2.0 31668 31953 birpc: 4.0.0 31669 31954 dts-resolver: 2.1.3(oxc-resolver@11.19.1) 31670 - get-tsconfig: 4.13.0 31955 + get-tsconfig: 4.13.6 31671 31956 obug: 2.1.1 31672 31957 rolldown: 1.0.0-beta.57 31673 31958 optionalDependencies: 31959 + '@typescript/native-preview': 7.0.0-dev.20260309.1 31674 31960 typescript: 5.9.3 31675 31961 vue-tsc: 3.2.4(typescript@5.9.3) 31676 31962 transitivePeerDependencies: ··· 32974 33260 yn: 3.1.1 32975 33261 optionalDependencies: 32976 33262 '@swc/core': 1.11.29 33263 + optional: true 32977 33264 32978 33265 ts-node@10.9.2(@swc/core@1.11.29)(@types/node@25.2.1)(typescript@5.9.3): 32979 33266 dependencies: ··· 32994 33281 yn: 3.1.1 32995 33282 optionalDependencies: 32996 33283 '@swc/core': 1.11.29 33284 + optional: true 32997 33285 32998 33286 tsconfck@3.1.6(typescript@5.9.3): 32999 33287 optionalDependencies: ··· 33006 33294 minimist: 1.2.8 33007 33295 strip-bom: 3.0.0 33008 33296 33009 - tsdown@0.18.4(@arethetypeswrong/core@0.18.2)(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 33297 + tsdown@0.18.4(@arethetypeswrong/core@0.18.2)(@typescript/native-preview@7.0.0-dev.20260309.1)(oxc-resolver@11.19.1)(synckit@0.11.12)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)): 33010 33298 dependencies: 33011 33299 ansis: 4.2.0 33012 33300 cac: 6.7.14 ··· 33017 33305 obug: 2.1.1 33018 33306 picomatch: 4.0.3 33019 33307 rolldown: 1.0.0-beta.57 33020 - rolldown-plugin-dts: 0.20.0(oxc-resolver@11.19.1)(rolldown@1.0.0-beta.57)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 33308 + rolldown-plugin-dts: 0.20.0(@typescript/native-preview@7.0.0-dev.20260309.1)(oxc-resolver@11.19.1)(rolldown@1.0.0-beta.57)(typescript@5.9.3)(vue-tsc@3.2.4(typescript@5.9.3)) 33021 33309 semver: 7.7.3 33022 33310 tinyexec: 1.0.2 33023 33311 tinyglobby: 0.2.15 ··· 33046 33334 tsx@4.21.0: 33047 33335 dependencies: 33048 33336 esbuild: 0.27.2 33049 - get-tsconfig: 4.13.0 33337 + get-tsconfig: 4.13.6 33050 33338 optionalDependencies: 33051 33339 fsevents: 2.3.3 33052 33340 ··· 33058 33346 transitivePeerDependencies: 33059 33347 - supports-color 33060 33348 33061 - turbo-darwin-64@2.8.3: 33349 + turbo-darwin-64@2.8.14: 33062 33350 optional: true 33063 33351 33064 - turbo-darwin-arm64@2.8.3: 33352 + turbo-darwin-arm64@2.8.14: 33065 33353 optional: true 33066 33354 33067 - turbo-linux-64@2.8.3: 33355 + turbo-linux-64@2.8.14: 33068 33356 optional: true 33069 33357 33070 - turbo-linux-arm64@2.8.3: 33358 + turbo-linux-arm64@2.8.14: 33071 33359 optional: true 33072 33360 33073 - turbo-windows-64@2.8.3: 33361 + turbo-windows-64@2.8.14: 33074 33362 optional: true 33075 33363 33076 - turbo-windows-arm64@2.8.3: 33364 + turbo-windows-arm64@2.8.14: 33077 33365 optional: true 33078 33366 33079 - turbo@2.8.3: 33367 + turbo@2.8.14: 33080 33368 optionalDependencies: 33081 - turbo-darwin-64: 2.8.3 33082 - turbo-darwin-arm64: 2.8.3 33083 - turbo-linux-64: 2.8.3 33084 - turbo-linux-arm64: 2.8.3 33085 - turbo-windows-64: 2.8.3 33086 - turbo-windows-arm64: 2.8.3 33369 + turbo-darwin-64: 2.8.14 33370 + turbo-darwin-arm64: 2.8.14 33371 + turbo-linux-64: 2.8.14 33372 + turbo-linux-arm64: 2.8.14 33373 + turbo-windows-64: 2.8.14 33374 + turbo-windows-arm64: 2.8.14 33087 33375 33088 33376 type-check@0.4.0: 33089 33377 dependencies: ··· 33757 34045 33758 34046 uuid@8.3.2: {} 33759 34047 33760 - v8-compile-cache-lib@3.0.1: {} 34048 + v8-compile-cache-lib@3.0.1: 34049 + optional: true 33761 34050 33762 34051 v8-to-istanbul@9.3.0: 33763 34052 dependencies: ··· 34788 35077 buffer-crc32: 0.2.13 34789 35078 fd-slicer: 1.1.0 34790 35079 34791 - yn@3.1.1: {} 35080 + yn@3.1.1: 35081 + optional: true 34792 35082 34793 35083 yocto-queue@0.1.0: {} 34794 35084