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

Merge pull request #2818 from hey-api/changeset-release/main

ci: release

authored by

Lubos and committed by
GitHub
6770421b 2ea0a781

+143 -148
-5
.changeset/cyan-regions-invite.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix(validators): do not reference variables before they are declared
-5
.changeset/fast-views-attack.md
··· 1 - --- 2 - '@hey-api/openapi-ts': patch 3 - --- 4 - 5 - fix(renderer): allow duplicate names when one symbol is a type
-5
.changeset/wet-glasses-sleep.md
··· 1 - --- 2 - '@hey-api/codegen-core': patch 3 - --- 4 - 5 - feat: add `isRegistered()` method to file and symbol registry
+110 -110
examples/openapi-ts-openai/src/client/types.gen.ts
··· 215 215 } & ErrorEvent); 216 216 217 217 export const AssistantSupportedModels = { 218 + GPT_3_5_TURBO: 'gpt-3.5-turbo', 219 + GPT_3_5_TURBO_0125: 'gpt-3.5-turbo-0125', 220 + GPT_3_5_TURBO_0613: 'gpt-3.5-turbo-0613', 221 + GPT_3_5_TURBO_1106: 'gpt-3.5-turbo-1106', 222 + GPT_4: 'gpt-4', 223 + GPT_3_5_TURBO_16K: 'gpt-3.5-turbo-16k', 218 224 GPT_4O: 'gpt-4o', 225 + GPT_3_5_TURBO_16K_0613: 'gpt-3.5-turbo-16k-0613', 219 226 GPT_4O_2024_05_13: 'gpt-4o-2024-05-13', 220 227 GPT_4O_2024_08_06: 'gpt-4o-2024-08-06', 221 228 GPT_4O_2024_11_20: 'gpt-4o-2024-11-20', 222 - GPT_4_1: 'gpt-4.1', 223 229 GPT_4O_MINI: 'gpt-4o-mini', 224 - GPT_4_1_2025_04_14: 'gpt-4.1-2025-04-14', 225 230 GPT_4O_MINI_2024_07_18: 'gpt-4o-mini-2024-07-18', 226 - GPT_4_1_MINI: 'gpt-4.1-mini', 227 231 GPT_4_0125_PREVIEW: 'gpt-4-0125-preview', 228 - GPT_4_1_MINI_2025_04_14: 'gpt-4.1-mini-2025-04-14', 229 - GPT_4: 'gpt-4', 230 - GPT_4_1_NANO: 'gpt-4.1-nano', 231 232 GPT_4_0314: 'gpt-4-0314', 232 - GPT_5: 'gpt-5', 233 233 GPT_4_0613: 'gpt-4-0613', 234 - GPT_5_2025_08_07: 'gpt-5-2025-08-07', 235 - GPT_3_5_TURBO: 'gpt-3.5-turbo', 236 - GPT_5_MINI: 'gpt-5-mini', 237 - GPT_3_5_TURBO_0613: 'gpt-3.5-turbo-0613', 238 - GPT_5_MINI_2025_08_07: 'gpt-5-mini-2025-08-07', 239 - GPT_3_5_TURBO_0125: 'gpt-3.5-turbo-0125', 240 - GPT_5_NANO: 'gpt-5-nano', 241 - GPT_3_5_TURBO_1106: 'gpt-3.5-turbo-1106', 242 - GPT_3_5_TURBO_16K: 'gpt-3.5-turbo-16k', 243 - GPT_5_NANO_2025_08_07: 'gpt-5-nano-2025-08-07', 244 - GPT_3_5_TURBO_16K_0613: 'gpt-3.5-turbo-16k-0613', 245 - GPT_4_1_NANO_2025_04_14: 'gpt-4.1-nano-2025-04-14', 234 + GPT_4_1: 'gpt-4.1', 246 235 GPT_4_1106_PREVIEW: 'gpt-4-1106-preview', 247 - O1: 'o1', 236 + GPT_4_1_2025_04_14: 'gpt-4.1-2025-04-14', 237 + GPT_4_1_MINI: 'gpt-4.1-mini', 238 + GPT_4_1_MINI_2025_04_14: 'gpt-4.1-mini-2025-04-14', 239 + GPT_4_1_NANO: 'gpt-4.1-nano', 240 + GPT_4_1_NANO_2025_04_14: 'gpt-4.1-nano-2025-04-14', 248 241 GPT_4_32K: 'gpt-4-32k', 249 - O3_MINI: 'o3-mini', 250 242 GPT_4_32K_0314: 'gpt-4-32k-0314', 251 - O3_MINI_2025_01_31: 'o3-mini-2025-01-31', 252 243 GPT_4_32K_0613: 'gpt-4-32k-0613', 253 - O1_2024_12_17: 'o1-2024-12-17', 254 244 GPT_4_5_PREVIEW: 'gpt-4.5-preview', 255 245 GPT_4_5_PREVIEW_2025_02_27: 'gpt-4.5-preview-2025-02-27', 256 246 GPT_4_TURBO: 'gpt-4-turbo', 257 247 GPT_4_TURBO_2024_04_09: 'gpt-4-turbo-2024-04-09', 258 248 GPT_4_TURBO_PREVIEW: 'gpt-4-turbo-preview', 259 249 GPT_4_VISION_PREVIEW: 'gpt-4-vision-preview', 250 + GPT_5: 'gpt-5', 251 + GPT_5_2025_08_07: 'gpt-5-2025-08-07', 252 + GPT_5_MINI: 'gpt-5-mini', 253 + GPT_5_MINI_2025_08_07: 'gpt-5-mini-2025-08-07', 254 + GPT_5_NANO: 'gpt-5-nano', 255 + GPT_5_NANO_2025_08_07: 'gpt-5-nano-2025-08-07', 256 + O1: 'o1', 257 + O1_2024_12_17: 'o1-2024-12-17', 258 + O3_MINI: 'o3-mini', 259 + O3_MINI_2025_01_31: 'o3-mini-2025-01-31', 260 260 } as const; 261 261 262 262 export type AssistantSupportedModels = ··· 725 725 /** 726 726 * The details for events with this `type`. 727 727 */ 728 - 'user.added'?: { 728 + 'rate_limit.updated'?: { 729 729 /** 730 - * The user ID. 730 + * The payload used to update the rate limits. 731 731 */ 732 - id?: string; 733 - /** 734 - * The payload used to add the user to the project. 735 - */ 736 - data?: { 732 + changes_requested?: { 733 + /** 734 + * The maximum batch input tokens per day. Only relevant for certain models. 735 + */ 736 + batch_1_day_max_input_tokens?: number; 737 + /** 738 + * The maximum audio megabytes per minute. Only relevant for certain models. 739 + */ 740 + max_audio_megabytes_per_1_minute?: number; 741 + /** 742 + * The maximum images per minute. Only relevant for certain models. 743 + */ 744 + max_images_per_1_minute?: number; 745 + /** 746 + * The maximum requests per day. Only relevant for certain models. 747 + */ 748 + max_requests_per_1_day?: number; 749 + /** 750 + * The maximum requests per minute. 751 + */ 752 + max_requests_per_1_minute?: number; 737 753 /** 738 - * The role of the user. Is either `owner` or `member`. 754 + * The maximum tokens per minute. 739 755 */ 740 - role?: string; 756 + max_tokens_per_1_minute?: number; 741 757 }; 758 + /** 759 + * The rate limit ID 760 + */ 761 + id?: string; 742 762 }; 743 763 /** 744 764 * The details for events with this `type`. 745 765 */ 746 - 'user.updated'?: { 747 - /** 748 - * The project ID. 749 - */ 750 - id?: string; 766 + 'service_account.created'?: { 751 767 /** 752 - * The payload used to update the user. 768 + * The payload used to create the service account. 753 769 */ 754 - changes_requested?: { 770 + data?: { 755 771 /** 756 - * The role of the user. Is either `owner` or `member`. 772 + * The role of the service account. Is either `owner` or `member`. 757 773 */ 758 774 role?: string; 759 775 }; 776 + /** 777 + * The service account ID. 778 + */ 779 + id?: string; 760 780 }; 761 781 /** 762 782 * The details for events with this `type`. ··· 785 805 */ 786 806 id?: string; 787 807 }; 808 + type: AuditLogEventType; 788 809 /** 789 810 * The details for events with this `type`. 790 811 */ 791 - 'rate_limit.updated'?: { 812 + 'user.added'?: { 792 813 /** 793 - * The payload used to update the rate limits. 814 + * The payload used to add the user to the project. 794 815 */ 795 - changes_requested?: { 816 + data?: { 796 817 /** 797 - * The maximum requests per minute. 818 + * The role of the user. Is either `owner` or `member`. 798 819 */ 799 - max_requests_per_1_minute?: number; 800 - /** 801 - * The maximum tokens per minute. 802 - */ 803 - max_tokens_per_1_minute?: number; 804 - /** 805 - * The maximum images per minute. Only relevant for certain models. 806 - */ 807 - max_images_per_1_minute?: number; 808 - /** 809 - * The maximum audio megabytes per minute. Only relevant for certain models. 810 - */ 811 - max_audio_megabytes_per_1_minute?: number; 812 - /** 813 - * The maximum requests per day. Only relevant for certain models. 814 - */ 815 - max_requests_per_1_day?: number; 816 - /** 817 - * The maximum batch input tokens per day. Only relevant for certain models. 818 - */ 819 - batch_1_day_max_input_tokens?: number; 820 + role?: string; 820 821 }; 821 822 /** 822 - * The rate limit ID 823 + * The user ID. 823 824 */ 824 825 id?: string; 825 826 }; 826 - type: AuditLogEventType; 827 827 /** 828 828 * The details for events with this `type`. 829 829 */ 830 - 'service_account.created'?: { 831 - /** 832 - * The payload used to create the service account. 833 - */ 834 - data?: { 835 - /** 836 - * The role of the service account. Is either `owner` or `member`. 837 - */ 838 - role?: string; 839 - }; 830 + 'user.deleted'?: { 840 831 /** 841 - * The service account ID. 832 + * The user ID. 842 833 */ 843 834 id?: string; 844 835 }; 845 836 /** 846 837 * The details for events with this `type`. 847 838 */ 848 - 'user.deleted'?: { 839 + 'user.updated'?: { 849 840 /** 850 - * The user ID. 841 + * The payload used to update the user. 842 + */ 843 + changes_requested?: { 844 + /** 845 + * The role of the user. Is either `owner` or `member`. 846 + */ 847 + role?: string; 848 + }; 849 + /** 850 + * The project ID. 851 851 */ 852 852 id?: string; 853 853 }; ··· 18391 18391 } & MessageDeltaContentImageUrlObject); 18392 18392 18393 18393 export const ChatModel = { 18394 - GPT_4_1: 'gpt-4.1', 18395 - GPT_4_1_2025_04_14: 'gpt-4.1-2025-04-14', 18396 - GPT_4_1_MINI: 'gpt-4.1-mini', 18397 - GPT_4_1_MINI_2025_04_14: 'gpt-4.1-mini-2025-04-14', 18398 - GPT_4_1_NANO: 'gpt-4.1-nano', 18399 18394 GPT_4O: 'gpt-4o', 18400 - GPT_4_1_NANO_2025_04_14: 'gpt-4.1-nano-2025-04-14', 18395 + CHATGPT_4O_LATEST: 'chatgpt-4o-latest', 18396 + GPT_4O_2024_05_13: 'gpt-4o-2024-05-13', 18397 + CODEX_MINI_LATEST: 'codex-mini-latest', 18401 18398 GPT_4O_2024_08_06: 'gpt-4o-2024-08-06', 18402 - GPT_5: 'gpt-5', 18403 - GPT_4O_2024_05_13: 'gpt-4o-2024-05-13', 18404 - GPT_5_2025_08_07: 'gpt-5-2025-08-07', 18405 18399 GPT_4O_2024_11_20: 'gpt-4o-2024-11-20', 18406 - GPT_5_CHAT_LATEST: 'gpt-5-chat-latest', 18407 18400 GPT_4O_AUDIO_PREVIEW: 'gpt-4o-audio-preview', 18408 - GPT_5_MINI: 'gpt-5-mini', 18409 18401 GPT_4O_AUDIO_PREVIEW_2024_10_01: 'gpt-4o-audio-preview-2024-10-01', 18410 - GPT_5_MINI_2025_08_07: 'gpt-5-mini-2025-08-07', 18411 18402 GPT_4O_AUDIO_PREVIEW_2024_12_17: 'gpt-4o-audio-preview-2024-12-17', 18412 - GPT_5_NANO: 'gpt-5-nano', 18403 + GPT_4: 'gpt-4', 18413 18404 GPT_4O_AUDIO_PREVIEW_2025_06_03: 'gpt-4o-audio-preview-2025-06-03', 18414 - GPT_5_NANO_2025_08_07: 'gpt-5-nano-2025-08-07', 18415 - CHATGPT_4O_LATEST: 'chatgpt-4o-latest', 18416 - O1: 'o1', 18417 - CODEX_MINI_LATEST: 'codex-mini-latest', 18418 - O1_2024_12_17: 'o1-2024-12-17', 18419 18405 GPT_4O_MINI: 'gpt-4o-mini', 18420 - O1_MINI: 'o1-mini', 18421 18406 GPT_4O_MINI_2024_07_18: 'gpt-4o-mini-2024-07-18', 18422 - O3: 'o3', 18423 - GPT_4: 'gpt-4', 18424 - O3_2025_04_16: 'o3-2025-04-16', 18425 18407 GPT_4O_MINI_AUDIO_PREVIEW: 'gpt-4o-mini-audio-preview', 18426 - O4_MINI: 'o4-mini', 18427 18408 GPT_4O_MINI_AUDIO_PREVIEW_2024_12_17: 'gpt-4o-mini-audio-preview-2024-12-17', 18428 - O4_MINI_2025_04_16: 'o4-mini-2025-04-16', 18429 18409 GPT_3_5_TURBO: 'gpt-3.5-turbo', 18430 - O3_MINI: 'o3-mini', 18410 + GPT_4_1: 'gpt-4.1', 18431 18411 GPT_3_5_TURBO_0301: 'gpt-3.5-turbo-0301', 18432 - O3_MINI_2025_01_31: 'o3-mini-2025-01-31', 18412 + GPT_4_1_2025_04_14: 'gpt-4.1-2025-04-14', 18433 18413 GPT_3_5_TURBO_0613: 'gpt-3.5-turbo-0613', 18434 - O1_PREVIEW: 'o1-preview', 18414 + GPT_4_1_MINI: 'gpt-4.1-mini', 18435 18415 GPT_3_5_TURBO_0125: 'gpt-3.5-turbo-0125', 18436 - O1_PREVIEW_2024_09_12: 'o1-preview-2024-09-12', 18416 + GPT_4_1_MINI_2025_04_14: 'gpt-4.1-mini-2025-04-14', 18437 18417 GPT_3_5_TURBO_1106: 'gpt-3.5-turbo-1106', 18438 - O1_MINI_2024_09_12: 'o1-mini-2024-09-12', 18418 + GPT_4_1_NANO: 'gpt-4.1-nano', 18439 18419 GPT_3_5_TURBO_16K: 'gpt-3.5-turbo-16k', 18420 + GPT_4_1_NANO_2025_04_14: 'gpt-4.1-nano-2025-04-14', 18421 + GPT_3_5_TURBO_16K_0613: 'gpt-3.5-turbo-16k-0613', 18422 + GPT_5: 'gpt-5', 18440 18423 GPT_4O_MINI_SEARCH_PREVIEW: 'gpt-4o-mini-search-preview', 18441 - GPT_3_5_TURBO_16K_0613: 'gpt-3.5-turbo-16k-0613', 18424 + GPT_5_2025_08_07: 'gpt-5-2025-08-07', 18442 18425 GPT_4O_MINI_SEARCH_PREVIEW_2025_03_11: 18443 18426 'gpt-4o-mini-search-preview-2025-03-11', 18427 + GPT_5_CHAT_LATEST: 'gpt-5-chat-latest', 18444 18428 GPT_4O_SEARCH_PREVIEW: 'gpt-4o-search-preview', 18429 + GPT_5_MINI: 'gpt-5-mini', 18445 18430 GPT_4O_SEARCH_PREVIEW_2025_03_11: 'gpt-4o-search-preview-2025-03-11', 18431 + GPT_5_MINI_2025_08_07: 'gpt-5-mini-2025-08-07', 18446 18432 GPT_4_0125_PREVIEW: 'gpt-4-0125-preview', 18433 + GPT_5_NANO: 'gpt-5-nano', 18447 18434 GPT_4_0314: 'gpt-4-0314', 18435 + GPT_5_NANO_2025_08_07: 'gpt-5-nano-2025-08-07', 18448 18436 GPT_4_0613: 'gpt-4-0613', 18437 + O1: 'o1', 18449 18438 GPT_4_1106_PREVIEW: 'gpt-4-1106-preview', 18439 + O1_2024_12_17: 'o1-2024-12-17', 18450 18440 GPT_4_32K: 'gpt-4-32k', 18441 + O1_MINI: 'o1-mini', 18451 18442 GPT_4_32K_0314: 'gpt-4-32k-0314', 18443 + O3: 'o3', 18452 18444 GPT_4_32K_0613: 'gpt-4-32k-0613', 18445 + O3_2025_04_16: 'o3-2025-04-16', 18453 18446 GPT_4_TURBO: 'gpt-4-turbo', 18447 + O4_MINI: 'o4-mini', 18454 18448 GPT_4_TURBO_2024_04_09: 'gpt-4-turbo-2024-04-09', 18449 + O4_MINI_2025_04_16: 'o4-mini-2025-04-16', 18455 18450 GPT_4_TURBO_PREVIEW: 'gpt-4-turbo-preview', 18451 + O3_MINI: 'o3-mini', 18456 18452 GPT_4_VISION_PREVIEW: 'gpt-4-vision-preview', 18453 + O3_MINI_2025_01_31: 'o3-mini-2025-01-31', 18454 + O1_MINI_2024_09_12: 'o1-mini-2024-09-12', 18455 + O1_PREVIEW: 'o1-preview', 18456 + O1_PREVIEW_2024_09_12: 'o1-preview-2024-09-12', 18457 18457 } as const; 18458 18458 18459 18459 export type ChatModel = (typeof ChatModel)[keyof typeof ChatModel];
+6
packages/codegen-core/CHANGELOG.md
··· 1 1 # @hey-api/codegen-core 2 2 3 + ## 0.3.1 4 + 5 + ### Patch Changes 6 + 7 + - feat: add `isRegistered()` method to file and symbol registry ([#2812](https://github.com/hey-api/openapi-ts/pull/2812)) ([`022f7dd`](https://github.com/hey-api/openapi-ts/commit/022f7dd0bcb74d2da855f393e2175645aa670351)) by [@mrlubos](https://github.com/mrlubos) 8 + 3 9 ## 0.3.0 4 10 5 11 ### Minor Changes
+1 -1
packages/codegen-core/package.json
··· 1 1 { 2 2 "name": "@hey-api/codegen-core", 3 - "version": "0.3.0", 3 + "version": "0.3.1", 4 4 "description": "🧱 TypeScript framework for generating structured, multi-file source code from abstract syntax trees.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": {
+12
packages/openapi-ts/CHANGELOG.md
··· 1 1 # @hey-api/openapi-ts 2 2 3 + ## 0.86.2 4 + 5 + ### Patch Changes 6 + 7 + - fix(validators): do not reference variables before they are declared ([#2812](https://github.com/hey-api/openapi-ts/pull/2812)) ([`69783d1`](https://github.com/hey-api/openapi-ts/commit/69783d19be37014b5116a2ede5bb74adadbb8110)) by [@mrlubos](https://github.com/mrlubos) 8 + 9 + - fix(renderer): allow duplicate names when one symbol is a type ([#2812](https://github.com/hey-api/openapi-ts/pull/2812)) ([`523038e`](https://github.com/hey-api/openapi-ts/commit/523038e82c949a436a467486a26333d50ce0e7cd)) by [@mrlubos](https://github.com/mrlubos) 10 + 11 + ### Updated Dependencies: 12 + 13 + - @hey-api/codegen-core@0.3.1 14 + 3 15 ## 0.86.1 4 16 5 17 ### Patch Changes
+2 -2
packages/openapi-ts/package.json
··· 1 1 { 2 2 "name": "@hey-api/openapi-ts", 3 - "version": "0.86.1", 3 + "version": "0.86.2", 4 4 "description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.", 5 5 "homepage": "https://heyapi.dev/", 6 6 "repository": { ··· 90 90 "node": ">=20.19.0" 91 91 }, 92 92 "dependencies": { 93 - "@hey-api/codegen-core": "workspace:^0.3.0", 93 + "@hey-api/codegen-core": "workspace:^0.3.1", 94 94 "@hey-api/json-schema-ref-parser": "1.2.1", 95 95 "ansi-colors": "4.1.3", 96 96 "c12": "3.3.1",
+12 -20
pnpm-lock.yaml
··· 1262 1262 packages/openapi-ts: 1263 1263 dependencies: 1264 1264 '@hey-api/codegen-core': 1265 - specifier: workspace:^0.3.0 1265 + specifier: workspace:^0.3.1 1266 1266 version: link:../codegen-core 1267 1267 '@hey-api/json-schema-ref-parser': 1268 1268 specifier: 1.2.1 ··· 6279 6279 '@tufjs/models@3.0.1': 6280 6280 resolution: {integrity: sha512-UUYHISyhCU3ZgN8yaear3cGATHb3SMuKHsQ/nVbHXcmnBf+LzQ/cQfhNG+rfaSHgqGKNEm2cOCLVLELStUQ1JA==} 6281 6281 engines: {node: ^18.17.0 || >=20.5.0} 6282 - 6283 - '@tybys/wasm-util@0.10.0': 6284 - resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==} 6285 6282 6286 6283 '@tybys/wasm-util@0.10.1': 6287 6284 resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==} ··· 14253 14250 '@vitejs/plugin-basic-ssl': 1.2.0(vite@7.1.5(@types/node@22.10.5)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.39.0)(yaml@2.8.0)) 14254 14251 ansi-colors: 4.1.3 14255 14252 autoprefixer: 10.4.20(postcss@8.5.2) 14256 - babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0) 14253 + babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)) 14257 14254 browserslist: 4.25.4 14258 14255 copy-webpack-plugin: 12.0.2(webpack@5.98.0) 14259 14256 css-loader: 7.1.2(webpack@5.98.0) ··· 14273 14270 picomatch: 4.0.2 14274 14271 piscina: 4.8.0 14275 14272 postcss: 8.5.2 14276 - postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0) 14273 + postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 14277 14274 resolve-url-loader: 5.0.0 14278 14275 rxjs: 7.8.1 14279 14276 sass: 1.85.0 ··· 14341 14338 '@vitejs/plugin-basic-ssl': 1.2.0(vite@7.1.5(@types/node@22.10.5)(jiti@2.6.1)(less@4.2.2)(sass@1.85.0)(terser@5.43.1)(yaml@2.8.0)) 14342 14339 ansi-colors: 4.1.3 14343 14340 autoprefixer: 10.4.20(postcss@8.5.2) 14344 - babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0) 14341 + babel-loader: 9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)) 14345 14342 browserslist: 4.25.4 14346 14343 copy-webpack-plugin: 12.0.2(webpack@5.98.0) 14347 14344 css-loader: 7.1.2(webpack@5.98.0) ··· 14361 14358 picomatch: 4.0.2 14362 14359 piscina: 4.8.0 14363 14360 postcss: 8.5.2 14364 - postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0) 14361 + postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 14365 14362 resolve-url-loader: 5.0.0 14366 14363 rxjs: 7.8.1 14367 14364 sass: 1.85.0 ··· 14449 14446 picomatch: 4.0.2 14450 14447 piscina: 4.8.0 14451 14448 postcss: 8.5.2 14452 - postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0) 14449 + postcss-loader: 8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)) 14453 14450 resolve-url-loader: 5.0.0 14454 14451 rxjs: 7.8.1 14455 14452 sass: 1.85.0 ··· 17870 17867 dependencies: 17871 17868 '@emnapi/core': 1.5.0 17872 17869 '@emnapi/runtime': 1.5.0 17873 - '@tybys/wasm-util': 0.10.0 17870 + '@tybys/wasm-util': 0.10.1 17874 17871 optional: true 17875 17872 17876 17873 '@napi-rs/wasm-runtime@1.0.7': ··· 20152 20149 '@tufjs/canonical-json': 2.0.0 20153 20150 minimatch: 9.0.5 20154 20151 20155 - '@tybys/wasm-util@0.10.0': 20156 - dependencies: 20157 - tslib: 2.8.1 20158 - optional: true 20159 - 20160 20152 '@tybys/wasm-util@0.10.1': 20161 20153 dependencies: 20162 20154 tslib: 2.8.1 ··· 21728 21720 schema-utils: 4.3.2 21729 21721 webpack: 5.98.0(esbuild@0.25.0) 21730 21722 21731 - babel-loader@9.2.1(@babel/core@7.26.9)(webpack@5.98.0): 21723 + babel-loader@9.2.1(@babel/core@7.26.9)(webpack@5.98.0(esbuild@0.25.0)): 21732 21724 dependencies: 21733 21725 '@babel/core': 7.26.9 21734 21726 find-cache-dir: 4.0.0 ··· 23161 23153 eslint: 9.17.0(jiti@2.6.1) 23162 23154 eslint-import-resolver-node: 0.3.9 23163 23155 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.8.3))(eslint@9.17.0(jiti@2.6.1)))(eslint@9.17.0(jiti@2.6.1)) 23164 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.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.8.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)) 23156 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)) 23165 23157 eslint-plugin-jsx-a11y: 6.10.2(eslint@9.17.0(jiti@2.6.1)) 23166 23158 eslint-plugin-react: 7.37.5(eslint@9.17.0(jiti@2.6.1)) 23167 23159 eslint-plugin-react-hooks: 5.2.0(eslint@9.17.0(jiti@2.6.1)) ··· 23199 23191 tinyglobby: 0.2.14 23200 23192 unrs-resolver: 1.11.1 23201 23193 optionalDependencies: 23202 - eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.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.8.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)) 23194 + eslint-plugin-import: 2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)) 23203 23195 transitivePeerDependencies: 23204 23196 - supports-color 23205 23197 ··· 23214 23206 transitivePeerDependencies: 23215 23207 - supports-color 23216 23208 23217 - eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.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.8.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)): 23209 + eslint-plugin-import@2.32.0(@typescript-eslint/parser@8.29.1(eslint@9.17.0(jiti@2.6.1))(typescript@5.8.3))(eslint-import-resolver-typescript@3.10.1)(eslint@9.17.0(jiti@2.6.1)): 23218 23210 dependencies: 23219 23211 '@rtsao/scc': 1.1.0 23220 23212 array-includes: 3.1.9 ··· 26975 26967 ts-node: 10.9.2(@types/node@22.10.5)(typescript@5.9.3) 26976 26968 optional: true 26977 26969 26978 - postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0): 26970 + postcss-loader@8.1.1(postcss@8.5.2)(typescript@5.8.3)(webpack@5.98.0(esbuild@0.25.0)): 26979 26971 dependencies: 26980 26972 cosmiconfig: 9.0.0(typescript@5.8.3) 26981 26973 jiti: 1.21.7