diff --git a/.gitignore b/.gitignore
index ef13c79..2d73193 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,6 @@
# artifacts
coverage/
public/
-pages/
# installs
node_modules/
@@ -17,4 +16,8 @@ node_modules/
dist/
dist_*/
-# custom
\ No newline at end of file
+# AI
+.claude/
+.serena/
+
+#------# custom
diff --git a/changelog.md b/changelog.md
index a66fd5d..b1e60b1 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,6 +1,19 @@
# Changelog
+## 2026-01-18 - 0.9.0 - feat(providers)
+Add Anthropic extended thinking and adapt providers to new streaming/file APIs; bump dependencies and update docs, tests and configuration
+
+- Add IAnthropicProviderOptions.extendedThinking with thinking modes (quick/normal/deep/off) and getThinkingConfig mapping budgets; apply thinking to Anthropic requests and omit temperature when thinking is enabled.
+- Update Anthropic research flow to include thinking configuration and conditionally set temperature.
+- OpenAI image editing: use openai.toFile to convert image/mask Buffers to uploadable files (image/png) before sending.
+- ElevenLabs streaming: switch from response.streamNode() to response.stream() and convert web stream to Node stream using Readable.fromWeb().
+- Upgrade dependencies and dev tools: @anthropic-ai/sdk ^0.71.2, @push.rocks/smartrequest ^5.0.1, @git.zone/tsbuild and related @git.zone packages, and other bumps in package.json.
+- Tests and test imports updated to use @git.zone/tstest/tapbundle; many test files adjusted accordingly.
+- Docs and hints updated: README and readme.hints.md include extended thinking docs, examples, formatting fixes, security/issue reporting guidance, and trademark/license clarifications.
+- Project config tweaks: package build script changed, tsconfig baseUrl/paths added, npmextra.json reorganized (release registries added), .gitignore updated to ignore .claude/.serena local tooling files.
+
## 2025-10-30 - 0.8.0 - feat(provider.anthropic)
+
Add extended thinking modes to AnthropicProvider and apply thinking budgets to API calls
- Introduce IAnthropicProviderOptions.extendedThinking to configure thinking modes: 'quick' | 'normal' | 'deep' | 'off'.
@@ -10,6 +23,7 @@ Add extended thinking modes to AnthropicProvider and apply thinking budgets to A
- Add .claude/settings.local.json for local assistant permissions used in development/testing.
## 2025-10-10 - 0.7.7 - fix(MultiModalModel)
+
Lazy-load SmartPdf and guard document processing across providers; ensure SmartPdf is initialized only when needed
- Make SmartPdf lazy-loaded: smartpdfInstance is now nullable and no longer started automatically in start()
@@ -20,6 +34,7 @@ Lazy-load SmartPdf and guard document processing across providers; ensure SmartP
- Add local Claude permissions file (.claude/settings.local.json) for tooling/configuration
## 2025-10-09 - 0.7.6 - fix(provider.elevenlabs)
+
Provide default ElevenLabs TTS voice fallback and add local tool/project configs
- ElevenLabsProvider: fallback to Samara voice id ('19STyYD15bswVz51nqLf') when no voiceId or defaultVoiceId is provided — avoids throwing an error on TTS calls.
@@ -28,18 +43,21 @@ Provide default ElevenLabs TTS voice fallback and add local tool/project configs
- Add .serena/project.yml and .serena/.gitignore to include Serena project configuration and ignore cache.
## 2025-10-08 - 0.7.5 - fix(provider.elevenlabs)
+
Update ElevenLabs default TTS model to eleven_v3 and add local Claude permissions file
- Changed default ElevenLabs modelId from 'eleven_multilingual_v2' to 'eleven_v3' in ts/provider.elevenlabs.ts to use the newer/default TTS model.
- Added .claude/settings.local.json with a permissions allow-list for local Claude tooling and CI tasks.
## 2025-10-03 - 0.7.4 - fix(provider.anthropic)
+
Use image/png for embedded PDF images in Anthropic provider and add local Claude settings for development permissions
- AnthropicProvider: change media_type from 'image/jpeg' to 'image/png' when embedding images extracted from PDFs to ensure correct format in Anthropic requests.
- Add .claude/settings.local.json with development/testing permissions for local Claude usage (shell commands, webfetch, websearch, test/run tasks).
## 2025-10-03 - 0.7.3 - fix(tests)
+
Add extensive provider/feature tests and local Claude CI permissions
- Add many focused test files covering providers and features: OpenAI, Anthropic, Perplexity, Groq, Ollama, Exo, XAI (chat, audio, vision, document, research, image generation, stubs, interfaces, basic)
@@ -48,12 +66,14 @@ Add extensive provider/feature tests and local Claude CI permissions
- No changes to library runtime code — this change adds tests and CI/local agent configuration only
## 2025-10-03 - 0.7.2 - fix(anthropic)
+
Update Anthropic provider branding to Claude Sonnet 4.5 and add local Claude permissions
- Docs: Replace 'Claude 3 Opus' with 'Claude Sonnet 4.5' in README provider capabilities matrix.
- Config: Add .claude/settings.local.json to define local Claude permissions for tests and development commands.
## 2025-10-03 - 0.7.1 - fix(docs)
+
Add README image generation docs and .claude local settings
- Add .claude/settings.local.json with permission allow-list for local assistant tooling and web search
@@ -62,6 +82,7 @@ Add README image generation docs and .claude local settings
- Mark image generation support as implemented in the roadmap and remove duplicate entry
## 2025-10-03 - 0.7.0 - feat(providers)
+
Add research API and image generation/editing support; extend providers and tests
- Introduce ResearchOptions and ResearchResponse to the MultiModalModel interface and implement research() where supported
@@ -75,14 +96,16 @@ Add research API and image generation/editing support; extend providers and test
- Add local Claude agent permissions file (.claude/settings.local.json) and various provider type/import updates
## 2025-09-28 - 0.6.1 - fix(provider.anthropic)
+
Fix Anthropic research tool identifier and add tests + local Claude permissions
- Replace Anthropic research tool type from 'computer_20241022' to 'web_search_20250305' to match the expected web-search tool schema.
-- Add comprehensive test suites and fixtures for providers and research features (new/updated tests under test/ including anthropic, openai, research.* and stubs).
+- Add comprehensive test suites and fixtures for providers and research features (new/updated tests under test/ including anthropic, openai, research.\* and stubs).
- Fix test usage of XAI provider class name (use XAIProvider) and adjust basic provider test expectations (provider instantiation moved to start()).
- Add .claude/settings.local.json with local Claude permissions to allow common CI/dev commands and web search during testing.
## 2025-09-28 - 0.6.0 - feat(research)
+
Introduce research API with provider implementations, docs and tests
- Add ResearchOptions and ResearchResponse interfaces and a new abstract research() method to MultiModalModel
@@ -97,6 +120,7 @@ Introduce research API with provider implementations, docs and tests
- Add .claude/settings.local.json (local agent permissions for CI/dev tasks)
## 2025-08-12 - 0.5.11 - fix(openaiProvider)
+
Update default chat model to gpt-5-mini and bump dependency versions
- Changed default chat model in OpenAiProvider from 'o3-mini' and 'o4-mini' to 'gpt-5-mini'
@@ -105,6 +129,7 @@ Update default chat model to gpt-5-mini and bump dependency versions
- Added new local Claude settings configuration (.claude/settings.local.json)
## 2025-08-03 - 0.5.10 - fix(dependencies)
+
Update SmartPdf to v4.1.1 for enhanced PDF processing capabilities
- Updated @push.rocks/smartpdf from ^3.3.0 to ^4.1.1
@@ -112,12 +137,14 @@ Update SmartPdf to v4.1.1 for enhanced PDF processing capabilities
- Dependency updates for better performance and compatibility
## 2025-08-01 - 0.5.9 - fix(documentation)
+
Remove contribution section from readme
- Removed the contribution section from readme.md as requested
- Kept the roadmap section for future development plans
## 2025-08-01 - 0.5.8 - fix(core)
+
Fix SmartPdf lifecycle management and update dependencies
- Moved SmartPdf instance management to the MultiModalModel base class for better resource sharing
@@ -127,12 +154,14 @@ Fix SmartPdf lifecycle management and update dependencies
- Enhanced readme with professional documentation and feature matrix
## 2025-07-26 - 0.5.7 - fix(provider.openai)
+
Fix stream type mismatch in audio method
- Fixed type error where OpenAI SDK returns a web ReadableStream but the audio method needs to return a Node.js ReadableStream
- Added conversion using Node.js's built-in Readable.fromWeb() method
## 2025-07-25 - 0.5.5 - feat(documentation)
+
Comprehensive documentation enhancement and test improvements
- Completely rewrote readme.md with detailed provider comparisons, advanced usage examples, and performance tips
@@ -141,6 +170,7 @@ Comprehensive documentation enhancement and test improvements
- Added verbose flag to test script for better debugging
## 2025-05-13 - 0.5.4 - fix(provider.openai)
+
Update dependency versions, clean test imports, and adjust default OpenAI model configurations
- Bump dependency versions in package.json (@git.zone/tsbuild, @push.rocks/tapbundle, openai, etc.)
@@ -148,17 +178,20 @@ Update dependency versions, clean test imports, and adjust default OpenAI model
- Remove unused 'expectAsync' import from test file
## 2025-04-03 - 0.5.3 - fix(package.json)
+
Add explicit packageManager field to package.json
- Include the packageManager property to specify the pnpm version and checksum.
- Align package metadata with current standards.
## 2025-04-03 - 0.5.2 - fix(readme)
+
Remove redundant conclusion section from README to streamline documentation.
- Eliminated the conclusion block describing SmartAi's capabilities and documentation pointers.
## 2025-02-25 - 0.5.1 - fix(OpenAiProvider)
+
Corrected audio model ID in OpenAiProvider
- Fixed audio model identifier from 'o3-mini' to 'tts-1-hd' in the OpenAiProvider's audio method.
@@ -166,6 +199,7 @@ Corrected audio model ID in OpenAiProvider
- Corrected spelling errors in test documentation and comments.
## 2025-02-25 - 0.5.0 - feat(documentation and configuration)
+
Enhanced package and README documentation
- Expanded the package description to better reflect the library's capabilities.
@@ -173,6 +207,7 @@ Enhanced package and README documentation
- Provided error handling strategies and advanced streaming customization examples.
## 2025-02-25 - 0.4.2 - fix(core)
+
Fix OpenAI chat streaming and PDF document processing logic.
- Updated OpenAI chat streaming to handle new async iterable format.
@@ -180,6 +215,7 @@ Fix OpenAI chat streaming and PDF document processing logic.
- Removed unsupported temperature options from OpenAI requests.
## 2025-02-25 - 0.4.1 - fix(provider)
+
Fix provider modules for consistency
- Updated TypeScript interfaces and options in provider modules for better type safety.
@@ -187,6 +223,7 @@ Fix provider modules for consistency
- Added optional model options to OpenAI provider for custom model usage.
## 2025-02-08 - 0.4.0 - feat(core)
+
Added support for Exo AI provider
- Introduced ExoProvider with chat functionalities.
@@ -194,18 +231,21 @@ Added support for Exo AI provider
- Extended Conversation class to support ExoProvider.
## 2025-02-05 - 0.3.3 - fix(documentation)
+
Update readme with detailed license and legal information.
- Added explicit section on License and Legal Information in the README.
- Clarified the use of trademarks and company information.
## 2025-02-05 - 0.3.2 - fix(documentation)
+
Remove redundant badges from readme
- Removed Build Status badge from the readme file.
- Removed License badge from the readme file.
## 2025-02-05 - 0.3.1 - fix(documentation)
+
Updated README structure and added detailed usage examples
- Introduced a Table of Contents
@@ -214,6 +254,7 @@ Updated README structure and added detailed usage examples
- Clarified the development setup with instructions for running tests and building the project
## 2025-02-05 - 0.3.0 - feat(integration-xai)
+
Add support for X.AI provider with chat and document processing capabilities.
- Introduced XAIProvider class for integrating X.AI features.
@@ -221,6 +262,7 @@ Add support for X.AI provider with chat and document processing capabilities.
- Enabled document processing capabilities with PDF conversion in X.AI.
## 2025-02-03 - 0.2.0 - feat(provider.anthropic)
+
Add support for vision and document processing in Anthropic provider
- Implemented vision tasks for Anthropic provider using Claude-3-opus-20240229 model.
@@ -228,6 +270,7 @@ Add support for vision and document processing in Anthropic provider
- Updated documentation to reflect the new capabilities of the Anthropic provider.
## 2025-02-03 - 0.1.0 - feat(providers)
+
Add vision and document processing capabilities to providers
- OpenAI and Ollama providers now support vision tasks using GPT-4 Vision and Llava models respectively.
@@ -236,6 +279,7 @@ Add vision and document processing capabilities to providers
- Updated the readme file with examples for vision and document processing.
## 2025-02-03 - 0.0.19 - fix(core)
+
Enhanced chat streaming and error handling across providers
- Refactored chatStream method to properly handle input streams and processes in Perplexity, OpenAI, Ollama, and Anthropic providers.
@@ -244,6 +288,7 @@ Enhanced chat streaming and error handling across providers
- Adjusted the test logic in test/test.ts for the new classification response requirement.
## 2024-09-19 - 0.0.18 - fix(dependencies)
+
Update dependencies to the latest versions.
- Updated @git.zone/tsbuild from ^2.1.76 to ^2.1.84
@@ -257,46 +302,53 @@ Update dependencies to the latest versions.
- Updated openai from ^4.47.1 to ^4.62.1
## 2024-05-29 - 0.0.17 - Documentation
+
Updated project description.
- Improved project description for clarity and details.
## 2024-05-17 - 0.0.16 to 0.0.15 - Core
+
Fixes and updates.
- Various core updates and fixes for stability improvements.
## 2024-04-29 - 0.0.14 to 0.0.13 - Core
+
Fixes and updates.
- Multiple core updates and fixes for enhanced functionality.
## 2024-04-29 - 0.0.12 - Core
+
Fixes and updates.
- Core update and bug fixes.
## 2024-04-29 - 0.0.11 - Provider
+
Fix integration for anthropic provider.
- Correction in the integration process with anthropic provider for better compatibility.
## 2024-04-27 - 0.0.10 to 0.0.9 - Core
+
Fixes and updates.
- Updates and fixes to core components.
- Updated tsconfig for improved TypeScript configuration.
## 2024-04-01 - 0.0.8 to 0.0.7 - Core and npmextra
+
Core updates and npmextra configuration.
- Core fixes and updates.
- Updates to npmextra.json for githost configuration.
## 2024-03-31 - 0.0.6 to 0.0.2 - Core
+
Initial core updates and fixes.
- Multiple updates and fixes to core following initial versions.
-
-This summarizes the relevant updates and changes based on the provided commit messages. The changelog excludes commits that are version tags without meaningful content or repeated entries.
\ No newline at end of file
+This summarizes the relevant updates and changes based on the provided commit messages. The changelog excludes commits that are version tags without meaningful content or repeated entries.
diff --git a/npmextra.json b/npmextra.json
index 721db40..c536f0d 100644
--- a/npmextra.json
+++ b/npmextra.json
@@ -1,5 +1,5 @@
{
- "gitzone": {
+ "@git.zone/cli": {
"projectType": "npm",
"module": {
"githost": "code.foss.global",
@@ -33,13 +33,19 @@
"AI toolkit",
"provider switching"
]
+ },
+ "release": {
+ "accessLevel": "public",
+ "registries": [
+ "https://verdaccio.lossless.digital",
+ "https://registry.npmjs.org"
+ ]
}
},
- "npmci": {
- "npmGlobalTools": [],
- "npmAccessLevel": "public"
- },
- "tsdoc": {
+ "@git.zone/tsdoc": {
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
+ },
+ "@ship.zone/szci": {
+ "npmGlobalTools": []
}
}
\ No newline at end of file
diff --git a/package.json b/package.json
index 62abfd5..3144f44 100644
--- a/package.json
+++ b/package.json
@@ -11,27 +11,26 @@
"scripts": {
"test": "(tstest test/ --web --verbose)",
"typecheck": "tsbuild check",
- "build": "(tsbuild --web --allowimplicitany)",
+ "build": "(tsbuild tsfolders --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
- "@git.zone/tsbuild": "^2.6.8",
- "@git.zone/tsbundle": "^2.5.1",
- "@git.zone/tsrun": "^1.3.3",
- "@git.zone/tstest": "^2.3.8",
+ "@git.zone/tsbuild": "^4.1.2",
+ "@git.zone/tsbundle": "^2.8.1",
+ "@git.zone/tsrun": "^2.0.1",
+ "@git.zone/tstest": "^3.1.4",
"@push.rocks/qenv": "^6.1.3",
- "@push.rocks/tapbundle": "^6.0.3",
"@types/node": "^22.15.17",
"typescript": "^5.9.3"
},
"dependencies": {
- "@anthropic-ai/sdk": "^0.65.0",
+ "@anthropic-ai/sdk": "^0.71.2",
"@push.rocks/smartarray": "^1.1.0",
"@push.rocks/smartfile": "^11.2.7",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpdf": "^4.1.1",
"@push.rocks/smartpromise": "^4.2.3",
- "@push.rocks/smartrequest": "^4.3.1",
+ "@push.rocks/smartrequest": "^5.0.1",
"@push.rocks/webstream": "^1.0.10",
"openai": "^5.12.2"
},
@@ -86,7 +85,8 @@
"onlyBuiltDependencies": [
"esbuild",
"puppeteer"
- ]
+ ],
+ "overrides": {}
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index bd65c4a..7067821 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,8 +9,8 @@ importers:
.:
dependencies:
'@anthropic-ai/sdk':
- specifier: ^0.65.0
- version: 0.65.0(zod@3.25.76)
+ specifier: ^0.71.2
+ version: 0.71.2(zod@3.25.76)
'@push.rocks/smartarray':
specifier: ^1.1.0
version: 1.1.0
@@ -27,8 +27,8 @@ importers:
specifier: ^4.2.3
version: 4.2.3
'@push.rocks/smartrequest':
- specifier: ^4.3.1
- version: 4.3.1
+ specifier: ^5.0.1
+ version: 5.0.1
'@push.rocks/webstream':
specifier: ^1.0.10
version: 1.0.10
@@ -37,23 +37,20 @@ importers:
version: 5.12.2(ws@8.18.3)(zod@3.25.76)
devDependencies:
'@git.zone/tsbuild':
- specifier: ^2.6.8
- version: 2.6.8
+ specifier: ^4.1.2
+ version: 4.1.2
'@git.zone/tsbundle':
- specifier: ^2.5.1
- version: 2.5.1
+ specifier: ^2.8.1
+ version: 2.8.1
'@git.zone/tsrun':
- specifier: ^1.3.3
- version: 1.3.3
+ specifier: ^2.0.1
+ version: 2.0.1
'@git.zone/tstest':
- specifier: ^2.3.8
- version: 2.3.8(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)(typescript@5.9.3)
+ specifier: ^3.1.4
+ version: 3.1.4(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)(typescript@5.9.3)
'@push.rocks/qenv':
specifier: ^6.1.3
version: 6.1.3
- '@push.rocks/tapbundle':
- specifier: ^6.0.3
- version: 6.0.3(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
'@types/node':
specifier: ^22.15.17
version: 22.15.17
@@ -63,8 +60,8 @@ importers:
packages:
- '@anthropic-ai/sdk@0.65.0':
- resolution: {integrity: sha512-zIdPOcrCVEI8t3Di40nH4z9EoeyGZfXbYSvWdDLsB/KkaSYMnEgC7gmcgWu83g2NTn1ZTpbMvpdttWDGGIk6zw==}
+ '@anthropic-ai/sdk@0.71.2':
+ resolution: {integrity: sha512-TGNDEUuEstk/DKu0/TflXAEt+p+p/WhTlFzEnoosvbaDU2LTjm42igSdlL0VijrKpWejtOKxX0b8A7uc+XiSAQ==}
hasBin: true
peerDependencies:
zod: ^3.25.0 || ^4.0.0
@@ -81,8 +78,8 @@ packages:
'@api.global/typedrequest@3.1.10':
resolution: {integrity: sha512-EiCp44XVcMjBvEs4oM1nMUaeY4ySU0Pzt3+mDwVG5DNP6EV87Nwancbr2jKScvaFNel9eeDgGtgEnFBKjOnApA==}
- '@api.global/typedserver@3.0.79':
- resolution: {integrity: sha512-NIZMQOeqEpqPT3qeA0hqTyLgZw5zO3bvRHkiDfFOrWMtnfvOLWZwmqJAcgpSSHHiwzuw47NNPvBZdJGXKnH+Zg==}
+ '@api.global/typedserver@3.0.80':
+ resolution: {integrity: sha512-dcp0oXsjBL+XdFg1wUUP08uJQid5bQ0Yv3V3Y3lnI2QCbat0FU+Tsb0TZRnZ4+P150Vj/ITBqJUgDzFsF34grA==}
'@api.global/typedsocket@3.0.1':
resolution: {integrity: sha512-xojiAVNXtHoxkpBo8U2HHJG8FrVXXuLvDNndSHXwx4C9VslUwDn5zSCI+PdBl8iAg+ZuBmKjqkpZZ9sL6DC5yQ==}
@@ -122,6 +119,10 @@ packages:
resolution: {integrity: sha512-6JQGrmQBHjnARQR+HSaj8DvLRbXTpPa8knYi1veT709JHXVkCkNNLKs7ULjVNCpSffRpzVYJn+eONHKj3Y0knQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-s3@3.971.0':
+ resolution: {integrity: sha512-BBUne390fKa4C4QvZlUZ5gKcu+Uyid4IyQ20N4jl0vS7SK2xpfXlJcgKqPW5ts6kx6hWTQBk6sH5Lf12RvuJxg==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/client-sso@3.750.0':
resolution: {integrity: sha512-y0Rx6pTQXw0E61CaptpZF65qNggjqOgymq/RYZU5vWba5DGQ+iqGt8Yq8s+jfBoBBNXshxq8l8Dl5Uq/JTY1wg==}
engines: {node: '>=18.0.0'}
@@ -134,6 +135,10 @@ packages:
resolution: {integrity: sha512-GGDwjW2cLzoEF5A1tBlZQZXzhlZzuM6cKNbSxUsCcBXtPAX03eb2GKApVy1SzpD03nTJk5T6GicGAm+BzK+lEg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/client-sso@3.971.0':
+ resolution: {integrity: sha512-Xx+w6DQqJxDdymYyIxyKJnRzPvVJ4e/Aw0czO7aC9L/iraaV7AG8QtRe93OGW6aoHSh72CIiinnpJJfLsQqP4g==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/core@3.750.0':
resolution: {integrity: sha512-bZ5K7N5L4+Pa2epbVpUQqd1XLG2uU8BGs/Sd+2nbgTf+lNQJyIxAg/Qsrjz9MzmY8zzQIeRQEkNmR6yVAfCmmQ==}
engines: {node: '>=18.0.0'}
@@ -146,6 +151,14 @@ packages:
resolution: {integrity: sha512-+FuwAcozee8joVfjwly/8kSFNCvQOkcQYjINUckqBkdjO4iCRfOgSaz+0JMpMcYgVPnnyZv62gJ2g0bj0U+YDQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/core@3.970.0':
+ resolution: {integrity: sha512-klpzObldOq8HXzDjDlY6K8rMhYZU6mXRz6P9F9N+tWnjoYFfeBMra8wYApydElTUYQKP1O7RLHwH1OKFfKcqIA==}
+ engines: {node: '>=20.0.0'}
+
+ '@aws-sdk/crc64-nvme@3.969.0':
+ resolution: {integrity: sha512-IGNkP54HD3uuLnrPCYsv3ZD478UYq+9WwKrIVJ9Pdi3hxPg8562CH3ZHf8hEgfePN31P9Kj+Zu9kq2Qcjjt61A==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-cognito-identity@3.808.0':
resolution: {integrity: sha512-AbsD/qHyQmyZ+CqJNOaGlnwZaXu8HfndfEiLsIJU/dIf9Wbt7ZtsHSAI/x78awxGohDneMZ6c5vuaRGYL7Z04g==}
engines: {node: '>=18.0.0'}
@@ -162,6 +175,10 @@ packages:
resolution: {integrity: sha512-vtMDguMci2aXhkgEqg1iqyQ7vVcafpx9uypksM6FQsNr3Cc/8I6HgfBAja6BuPwkaCn9NoMnG0/iuuOWr8P9dg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-env@3.970.0':
+ resolution: {integrity: sha512-rtVzXzEtAfZBfh+lq3DAvRar4c3jyptweOAJR2DweyXx71QSMY+O879hjpMwES7jl07a3O1zlnFIDo4KP/96kQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-http@3.750.0':
resolution: {integrity: sha512-wFB9qqfa20AB0dElsQz5ZlZT5o+a+XzpEpmg0erylmGYqEOvh8NQWfDUVpRmQuGq9VbvW/8cIbxPoNqEbPtuWQ==}
engines: {node: '>=18.0.0'}
@@ -174,6 +191,10 @@ packages:
resolution: {integrity: sha512-L97N2SUkZp03s1LJZ1sCkUaUZ7m9T72faaadn05wyst/iXonSZKPHYMQVWGYhTC2OtRV0FQvBXIAqFZsNGQD0Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-http@3.970.0':
+ resolution: {integrity: sha512-CjDbWL7JxjLc9ZxQilMusWSw05yRvUJKRpz59IxDpWUnSMHC9JMMUUkOy5Izk8UAtzi6gupRWArp4NG4labt9Q==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-ini@3.750.0':
resolution: {integrity: sha512-2YIZmyEr5RUd3uxXpxOLD9G67Bibm4I/65M6vKFP17jVMUT+R1nL7mKqmhEVO2p+BoeV+bwMyJ/jpTYG368PCg==}
engines: {node: '>=18.0.0'}
@@ -186,6 +207,14 @@ packages:
resolution: {integrity: sha512-r7TbHD80WXo42kTEC5bqa4b87ho3T3yd2VEKo1qbEmOUovocntO8HC3JxHYr0XSeZ82DEYxLARb84akWjabPzg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-ini@3.971.0':
+ resolution: {integrity: sha512-c0TGJG4xyfTZz3SInXfGU8i5iOFRrLmy4Bo7lMyH+IpngohYMYGYl61omXqf2zdwMbDv+YJ9AviQTcCaEUKi8w==}
+ engines: {node: '>=20.0.0'}
+
+ '@aws-sdk/credential-provider-login@3.971.0':
+ resolution: {integrity: sha512-yhbzmDOsk0RXD3rTPhZra4AWVnVAC4nFWbTp+sUty1hrOPurUmhuz8bjpLqYTHGnlMbJp+UqkQONhS2+2LzW2g==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-node@3.750.0':
resolution: {integrity: sha512-THWHHAceLwsOiowPEmKyhWVDlEUxH07GHSw5AQFDvNQtGKOQl0HSIFO1mKObT2Q2Vqzji9Bq8H58SO5BFtNPRw==}
engines: {node: '>=18.0.0'}
@@ -198,6 +227,10 @@ packages:
resolution: {integrity: sha512-xga127vP0rFxiHjEUjLe6Yf4hQ/AZinOF4AqQr/asWQO+/uwh3aH8nXcS4lkpZNygxMHbuNXm7Xg504GKCMlLQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-node@3.971.0':
+ resolution: {integrity: sha512-epUJBAKivtJqalnEBRsYIULKYV063o/5mXNJshZfyvkAgNIzc27CmmKRXTN4zaNOZg8g/UprFp25BGsi19x3nQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-process@3.750.0':
resolution: {integrity: sha512-Q78SCH1n0m7tpu36sJwfrUSxI8l611OyysjQeMiIOliVfZICEoHcLHLcLkiR+tnIpZ3rk7d2EQ6R1jwlXnalMQ==}
engines: {node: '>=18.0.0'}
@@ -210,6 +243,10 @@ packages:
resolution: {integrity: sha512-P8R4GpDLppe+8mp+SOj1fKaY3AwDULCi/fqMSJjvf8qN6OM+vGGpFP3iXvkjFYyyV+8nRXY+HQCLRoZKpRtzMg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-process@3.970.0':
+ resolution: {integrity: sha512-0XeT8OaT9iMA62DFV9+m6mZfJhrD0WNKf4IvsIpj2Z7XbaYfz3CoDDvNoALf3rPY9NzyMHgDxOspmqdvXP00mw==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-sso@3.750.0':
resolution: {integrity: sha512-FGYrDjXN/FOQVi/t8fHSv8zCk+NEvtFnuc4cZUj5OIbM4vrfFc5VaPyn41Uza3iv6Qq9rZg0QOwWnqK8lNrqUw==}
engines: {node: '>=18.0.0'}
@@ -222,6 +259,10 @@ packages:
resolution: {integrity: sha512-wYljHU7yNEzt7ngZZ21FWh+RlO16gTpWvXyRqlryuCgIWugHD8bl7JphGnUN1md5/v+mCRuGK58JoFGZq+qrjA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-sso@3.971.0':
+ resolution: {integrity: sha512-dY0hMQ7dLVPQNJ8GyqXADxa9w5wNfmukgQniLxGVn+dMRx3YLViMp5ZpTSQpFhCWNF0oKQrYAI5cHhUJU1hETw==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-provider-web-identity@3.750.0':
resolution: {integrity: sha512-Nz8zs3YJ+GOTSrq+LyzbbC1Ffpt7pK38gcOyNZv76pP5MswKTUKNYBJehqwa+i7FcFQHsCk3TdhR8MT1ZR23uA==}
engines: {node: '>=18.0.0'}
@@ -234,6 +275,10 @@ packages:
resolution: {integrity: sha512-V9PurepVko8+iyEvI9WAlk5dXJ1uWIW03RPLnNBEmeCqFjjit16HrNaaVvnp9fQbG7CSKSGqK026SjDgtKGKYA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/credential-provider-web-identity@3.971.0':
+ resolution: {integrity: sha512-F1AwfNLr7H52T640LNON/h34YDiMuIqW/ZreGzhRR6vnFGaSPtNSKAKB2ssAMkLM8EVg8MjEAYD3NCUiEo+t/w==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/credential-providers@3.808.0':
resolution: {integrity: sha512-JJvY/gcet+tFw7dGifhTMJ2jfLXCJBR2Tu2rY/ePi+HVUrR//TnWmcm8qGvT1nWiCQ7w9NEhMlJgqKEIM/MkVQ==}
engines: {node: '>=18.0.0'}
@@ -246,6 +291,10 @@ packages:
resolution: {integrity: sha512-mPF3N6eZlVs9G8aBSzvtoxR1RZqMo1aIwR+X8BAZSkhfj55fVF2no4IfPXfdFO3I66N+zEQ8nKoB0uTATWrogQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-bucket-endpoint@3.969.0':
+ resolution: {integrity: sha512-MlbrlixtkTVhYhoasblKOkr7n2yydvUZjjxTnBhIuHmkyBS1619oGnTfq/uLeGYb4NYXdeQ5OYcqsRGvmWSuTw==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-expect-continue@3.734.0':
resolution: {integrity: sha512-P38/v1l6HjuB2aFUewt7ueAW5IvKkFcv5dalPtbMGRhLeyivBOHwbCyuRKgVs7z7ClTpu9EaViEGki2jEQqEsQ==}
engines: {node: '>=18.0.0'}
@@ -254,6 +303,10 @@ packages:
resolution: {integrity: sha512-bwq9nj6MH38hlJwOY9QXIDwa6lI48UsaZpaXbdD71BljEIRlxDzfB4JaYb+ZNNK7RIAdzsP/K05mJty6KJAQHw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-expect-continue@3.969.0':
+ resolution: {integrity: sha512-qXygzSi8osok7tH9oeuS3HoKw6jRfbvg5Me/X5RlHOvSSqQz8c5O9f3MjUApaCUSwbAU92KrbZWasw2PKiaVHg==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-flexible-checksums@3.750.0':
resolution: {integrity: sha512-ach0d2buDnX2TUausUbiXXFWFo3IegLnCrA+Rw8I9AYVpLN9lTaRwAYJwYC6zEuW9Golff8MwkYsp/OaC5tKMw==}
engines: {node: '>=18.0.0'}
@@ -262,6 +315,10 @@ packages:
resolution: {integrity: sha512-vbOf5Pf2bRjw+Is1OsUKKP88uPKES8/B3c3yq0B72Y4ZgZEDymXIxGvZYPkThLk266PH7eHo+ZneZjkdfz6Zbg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-flexible-checksums@3.971.0':
+ resolution: {integrity: sha512-+hGUDUxeIw8s2kkjfeXym0XZxdh0cqkHkDpEanWYdS1gnWkIR+gf9u/DKbKqGHXILPaqHXhWpLTQTVlaB4sI7Q==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-host-header@3.734.0':
resolution: {integrity: sha512-LW7RRgSOHHBzWZnigNsDIzu3AiwtjeI2X66v+Wn1P1u+eXssy1+up4ZY/h+t2sU4LU36UvEf+jrZti9c6vRnFw==}
engines: {node: '>=18.0.0'}
@@ -274,6 +331,10 @@ packages:
resolution: {integrity: sha512-yWX7GvRmqBtbNnUW7qbre3GvZmyYwU0WHefpZzDTYDoNgatuYq6LgUIQ+z5C04/kCRoFkAFrHag8a3BXqFzq5A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-host-header@3.969.0':
+ resolution: {integrity: sha512-AWa4rVsAfBR4xqm7pybQ8sUNJYnjyP/bJjfAw34qPuh3M9XrfGbAHG0aiAfQGrBnmS28jlO6Kz69o+c6PRw1dw==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-location-constraint@3.734.0':
resolution: {integrity: sha512-EJEIXwCQhto/cBfHdm3ZOeLxd2NlJD+X2F+ZTOxzokuhBtY0IONfC/91hOo5tWQweerojwshSMHRCKzRv1tlwg==}
engines: {node: '>=18.0.0'}
@@ -282,6 +343,10 @@ packages:
resolution: {integrity: sha512-MuCS5R2ngNoYifkVt05CTULvYVWX0dvRT0/Md4jE3a0u0yMygYy31C1zorwfE/SUgAQXyLmUx8ATmPp9PppImQ==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-location-constraint@3.969.0':
+ resolution: {integrity: sha512-zH7pDfMLG/C4GWMOpvJEoYcSpj7XsNP9+irlgqwi667sUQ6doHQJ3yyDut3yiTk0maq1VgmriPFELyI9lrvH/g==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-logger@3.734.0':
resolution: {integrity: sha512-mUMFITpJUW3LcKvFok176eI5zXAUomVtahb9IQBwLzkqFYOrMJvWAvoV4yuxrJ8TlQBG8gyEnkb9SnhZvjg67w==}
engines: {node: '>=18.0.0'}
@@ -294,6 +359,10 @@ packages:
resolution: {integrity: sha512-UoHebjE7el/tfRo8/CQTj91oNUm+5Heus5/a4ECdmWaSCHCS/hXTsU3PTTHAY67oAQR8wBLFPfp3mMvXjB+L2A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-logger@3.969.0':
+ resolution: {integrity: sha512-xwrxfip7Y2iTtCMJ+iifN1E1XMOuhxIHY9DreMCvgdl4r7+48x2S1bCYPWH3eNY85/7CapBWdJ8cerpEl12sQQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-recursion-detection@3.734.0':
resolution: {integrity: sha512-CUat2d9ITsFc2XsmeiRQO96iWpxSKYFjxvj27Hc7vo87YUHRnfMfnc8jw1EpxEwMcvBD7LsRa6vDNky6AjcrFA==}
engines: {node: '>=18.0.0'}
@@ -306,6 +375,10 @@ packages:
resolution: {integrity: sha512-Wd2t8qa/4OL0v/oDpCHHYkgsXJr8/ttCxrvCKAt0H1zZe2LlRhY9gpDVKqdertfHrHDj786fOvEQA28G1L75Dg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-recursion-detection@3.969.0':
+ resolution: {integrity: sha512-2r3PuNquU3CcS1Am4vn/KHFwLi8QFjMdA/R+CRDXT4AFO/0qxevF/YStW3gAKntQIgWgQV8ZdEtKAoJvLI4UWg==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-sdk-s3@3.750.0':
resolution: {integrity: sha512-3H6Z46cmAQCHQ0z8mm7/cftY5ifiLfCjbObrbyyp2fhQs9zk6gCKzIX8Zjhw0RMd93FZi3ebRuKJWmMglf4Itw==}
engines: {node: '>=18.0.0'}
@@ -314,6 +387,10 @@ packages:
resolution: {integrity: sha512-8Ztl5natyVXOvpk/en2j9Bjn2t8vawjbvgcU0/ZF5/JtA1rKSTctRXusICJgCovFHzaAH2MVhA51nnp3d8rViA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-sdk-s3@3.970.0':
+ resolution: {integrity: sha512-v/Y5F1lbFFY7vMeG5yYxuhnn0CAshz6KMxkz1pDyPxejNE9HtA0w8R6OTBh/bVdIm44QpjhbI7qeLdOE/PLzXQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-ssec@3.734.0':
resolution: {integrity: sha512-d4yd1RrPW/sspEXizq2NSOUivnheac6LPeLSLnaeTbBG9g1KqIqvCzP1TfXEqv2CrWfHEsWtJpX7oyjySSPvDQ==}
engines: {node: '>=18.0.0'}
@@ -322,6 +399,10 @@ packages:
resolution: {integrity: sha512-YiLLJmA3RvjL38mFLuu8fhTTGWtp2qT24VqpucgfoyziYcTgIQkJJmKi90Xp6R6/3VcArqilyRgM1+x8i/em+Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-ssec@3.971.0':
+ resolution: {integrity: sha512-QGVhvRveYG64ZhnS/b971PxXM6N2NU79Fxck4EfQ7am8v1Br0ctoeDDAn9nXNblLGw87we9Z65F7hMxxiFHd3w==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/middleware-user-agent@3.750.0':
resolution: {integrity: sha512-YYcslDsP5+2NZoN3UwuhZGkhAHPSli7HlJHBafBrvjGV/I9f8FuOO1d1ebxGdEP4HyRXUGyh+7Ur4q+Psk0ryw==}
engines: {node: '>=18.0.0'}
@@ -334,6 +415,10 @@ packages:
resolution: {integrity: sha512-CMAjq2oCEv5EEvmlFvio8t4KQL2jGORyDQu7oLj4l0a2biPgxbwL3utalbm9yKty1rQM5zKpaa7id7ZG3X1f6A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/middleware-user-agent@3.970.0':
+ resolution: {integrity: sha512-dnSJGGUGSFGEX2NzvjwSefH+hmZQ347AwbLhAsi0cdnISSge+pcGfOFrJt2XfBIypwFe27chQhlfuf/gWdzpZg==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/nested-clients@3.750.0':
resolution: {integrity: sha512-OH68BRF0rt9nDloq4zsfeHI0G21lj11a66qosaljtEP66PWm7tQ06feKbFkXHT5E1K3QhJW3nVyK8v2fEBY5fg==}
engines: {node: '>=18.0.0'}
@@ -346,6 +431,10 @@ packages:
resolution: {integrity: sha512-0/r0bh/9Bm14lVe+jAzQQB2ufq9S4Vd9Wg5rZn8RhrhKl6y/DC1aRzOo2kJTNu5pCbVfQsd/VXLLnkcbOrDy6A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/nested-clients@3.971.0':
+ resolution: {integrity: sha512-TWaILL8GyYlhGrxxnmbkazM4QsXatwQgoWUvo251FXmUOsiXDFDVX3hoGIfB3CaJhV2pJPfebHUNJtY6TjZ11g==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/region-config-resolver@3.734.0':
resolution: {integrity: sha512-Lvj1kPRC5IuJBr9DyJ9T9/plkh+EfKLy+12s/mykOy1JaKHDpvj+XGy2YO6YgYVOb8JFtaqloid+5COtje4JTQ==}
engines: {node: '>=18.0.0'}
@@ -358,6 +447,10 @@ packages:
resolution: {integrity: sha512-7F0N888qVLHo4CSQOsnkZ4QAp8uHLKJ4v3u09Ly5k4AEStrSlFpckTPyUx6elwGL+fxGjNE2aakK8vEgzzCV0A==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/region-config-resolver@3.969.0':
+ resolution: {integrity: sha512-scj9OXqKpcjJ4jsFLtqYWz3IaNvNOQTFFvEY8XMJXTv+3qF5I7/x9SJtKzTRJEBF3spjzBUYPtGFbs9sj4fisQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/signature-v4-multi-region@3.750.0':
resolution: {integrity: sha512-RA9hv1Irro/CrdPcOEXKwJ0DJYJwYCsauGEdRXihrRfy8MNSR9E+mD5/Fr5Rxjaq5AHM05DYnN3mg/DU6VwzSw==}
engines: {node: '>=18.0.0'}
@@ -366,6 +459,10 @@ packages:
resolution: {integrity: sha512-zqxRN8/dSrAaAEi5oXIeScsrbDkS63+ZyaBrkC6bc8Jd/bCvJM6D4LjJJxIOPBNXuF0bNhBIlTmqwtbkiqCwZw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/signature-v4-multi-region@3.970.0':
+ resolution: {integrity: sha512-z3syXfuK/x/IsKf/AeYmgc2NT7fcJ+3fHaGO+fkghkV9WEba3fPyOwtTBX4KpFMNb2t50zDGZwbzW1/5ighcUQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/token-providers@3.750.0':
resolution: {integrity: sha512-X/KzqZw41iWolwNdc8e3RMcNSMR364viHv78u6AefXOO5eRM40c4/LuST1jDzq35/LpnqRhL7/MuixOetw+sFw==}
engines: {node: '>=18.0.0'}
@@ -378,6 +475,10 @@ packages:
resolution: {integrity: sha512-gdxXleCjMUAKnyR/1ksdnv3Fuifr9iuaeEtINRHkwVluwcORabEdOlxW36th2QdkpTTyP1hW35VATz2R6v/i2Q==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/token-providers@3.971.0':
+ resolution: {integrity: sha512-4hKGWZbmuDdONMJV0HJ+9jwTDb0zLfKxcCLx2GEnBY31Gt9GeyIQ+DZ97Bb++0voawj6pnZToFikXTyrEq2x+w==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/types@3.734.0':
resolution: {integrity: sha512-o11tSPTT70nAkGV1fN9wm/hAIiLPyWX6SuGf+9JyTp7S/rC2cFWhR26MvA69nplcjNaXVzB0f+QFrLXXjOqCrg==}
engines: {node: '>=18.0.0'}
@@ -390,6 +491,10 @@ packages:
resolution: {integrity: sha512-FfEM25hLEs4LoXsLXQ/q6X6L4JmKkKkbVFpKD4mwfVHtRVQG6QxJiCPcrkcPISquiy6esbwK2eh64TWbiD60cg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/types@3.969.0':
+ resolution: {integrity: sha512-7IIzM5TdiXn+VtgPdVLjmE6uUBUtnga0f4RiSEI1WW10RPuNvZ9U+pL3SwDiRDAdoGrOF9tSLJOFZmfuwYuVYQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/util-arn-parser@3.723.0':
resolution: {integrity: sha512-ZhEfvUwNliOQROcAk34WJWVYTlTa4694kSVhDSjW6lE1bMataPnIN8A0ycukEzBXmd8ZSoBcQLn6lKGl7XIJ5w==}
engines: {node: '>=18.0.0'}
@@ -398,6 +503,10 @@ packages:
resolution: {integrity: sha512-u8H4f2Zsi19DGnwj5FSZzDMhytYF/bCh37vAtBsn3cNDL3YG578X5oc+wSX54pM3tOxS+NY7tvOAo52SW7koUA==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-arn-parser@3.968.0':
+ resolution: {integrity: sha512-gqqvYcitIIM2K4lrDX9de9YvOfXBcVdxfT/iLnvHJd4YHvSXlt+gs+AsL4FfPCxG4IG9A+FyulP9Sb1MEA75vw==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/util-endpoints@3.743.0':
resolution: {integrity: sha512-sN1l559zrixeh5x+pttrnd0A3+r34r0tmPkJ/eaaMaAzXqsmKU/xYre9K3FNnsSS1J1k4PEfk/nHDTVUgFYjnw==}
engines: {node: '>=18.0.0'}
@@ -410,6 +519,10 @@ packages:
resolution: {integrity: sha512-5nZP3hGA8FHEtKvEQf4Aww5QZOkjLW1Z+NixSd+0XKfHvA39Ah5sZboScjLx0C9kti/K3OGW1RCx5K9Zc3bZqg==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/util-endpoints@3.970.0':
+ resolution: {integrity: sha512-TZNZqFcMUtjvhZoZRtpEGQAdULYiy6rcGiXAbLU7e9LSpIYlRqpLa207oMNfgbzlL2PnHko+eVg8rajDiSOYCg==}
+ engines: {node: '>=20.0.0'}
+
'@aws-sdk/util-locate-window@3.723.0':
resolution: {integrity: sha512-Yf2CS10BqK688DRsrKI/EO6B8ff5J86NXe4C+VCysK7UOgN0l1zOTeTukZ3H8Q9tYYX3oaF1961o8vRkFm7Nmw==}
engines: {node: '>=18.0.0'}
@@ -423,6 +536,9 @@ packages:
'@aws-sdk/util-user-agent-browser@3.901.0':
resolution: {integrity: sha512-Ntb6V/WFI21Ed4PDgL/8NSfoZQQf9xzrwNgiwvnxgAl/KvAvRBgQtqj5gHsDX8Nj2YmJuVoHfH9BGjL9VQ4WNg==}
+ '@aws-sdk/util-user-agent-browser@3.969.0':
+ resolution: {integrity: sha512-bpJGjuKmFr0rA6UKUCmN8D19HQFMLXMx5hKBXqBlPFdalMhxJSjcxzX9DbQh0Fn6bJtxCguFmRGOBdQqNOt49g==}
+
'@aws-sdk/util-user-agent-node@3.750.0':
resolution: {integrity: sha512-84HJj9G9zbrHX2opLk9eHfDceB+UIHVrmflMzWHpsmo9fDuro/flIBqaVDlE021Osj6qIM0SJJcnL6s23j7JEw==}
engines: {node: '>=18.0.0'}
@@ -450,6 +566,15 @@ packages:
aws-crt:
optional: true
+ '@aws-sdk/util-user-agent-node@3.971.0':
+ resolution: {integrity: sha512-Eygjo9mFzQYjbGY3MYO6CsIhnTwAMd3WmuFalCykqEmj2r5zf0leWrhPaqvA5P68V5JdGfPYgj7vhNOd6CtRBQ==}
+ engines: {node: '>=20.0.0'}
+ peerDependencies:
+ aws-crt: '>=1.0.0'
+ peerDependenciesMeta:
+ aws-crt:
+ optional: true
+
'@aws-sdk/xml-builder@3.734.0':
resolution: {integrity: sha512-Zrjxi5qwGEcUsJ0ru7fRtW74WcTS0rbLcehoFB+rN1GRi2hbLcFaYs4PwVA5diLeAJH0gszv3x4Hr/S87MfbKQ==}
engines: {node: '>=18.0.0'}
@@ -458,10 +583,18 @@ packages:
resolution: {integrity: sha512-pxFCkuAP7Q94wMTNPAwi6hEtNrp/BdFf+HOrIEeFQsk4EoOmpKY3I6S+u6A9Wg295J80Kh74LqDWM22ux3z6Aw==}
engines: {node: '>=18.0.0'}
+ '@aws-sdk/xml-builder@3.969.0':
+ resolution: {integrity: sha512-BSe4Lx/qdRQQdX8cSSI7Et20vqBspzAjBy8ZmXVoyLkol3y4sXBXzn+BiLtR+oh60ExQn6o2DU4QjdOZbXaKIQ==}
+ engines: {node: '>=20.0.0'}
+
'@aws/lambda-invoke-store@0.0.1':
resolution: {integrity: sha512-ORHRQ2tmvnBXc8t/X9Z8IcSbBA4xTLKuN873FopzklHMeqBst7YG0d+AX97inkvDX+NChYtSr+qGfcqGFaI8Zw==}
engines: {node: '>=18.0.0'}
+ '@aws/lambda-invoke-store@0.2.3':
+ resolution: {integrity: sha512-oLvsaPMTBejkkmHhjf09xTgk71mOqyr/409NKhRIL08If7AhVfUsJhVsx386uJaqNd42v9kWamQ9lFbkoC2dYw==}
+ engines: {node: '>=18.0.0'}
+
'@babel/code-frame@7.26.2':
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
@@ -484,16 +617,9 @@ packages:
'@cloudflare/workers-types@4.20251008.0':
resolution: {integrity: sha512-dZLkO4PbCL0qcCSKzuW7KE4GYe49lI12LCfQ5y9XeSwgYBoAUbwH4gmJ6A0qUIURiTJTkGkRkhVPqpq2XNgYRA==}
- '@colors/colors@1.6.0':
- resolution: {integrity: sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==}
- engines: {node: '>=0.1.90'}
-
'@configvault.io/interfaces@1.0.17':
resolution: {integrity: sha512-bEcCUR2VBDJsTin8HQh8Uw/mlYl2v8A3jMIaQ+MTB9Hrqd6CZL2dL7iJdWyFl/3EIX+LDxWFR+Oq7liIq7w+1Q==}
- '@dabh/diagnostics@2.0.3':
- resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==}
-
'@design.estate/dees-comms@1.0.27':
resolution: {integrity: sha512-GvzTUwkV442LD60T08iqSoqvhA02Mou5lFvvqBPc4yBUiU7cZISqBx+76xvMgMIEI9Dx9JfTl4/2nW8MoVAanw==}
@@ -503,347 +629,194 @@ packages:
'@design.estate/dees-element@2.1.2':
resolution: {integrity: sha512-ZiwvE411RJPHaYio26asQLnSmtJ6G1HRLYWbxW/HvCMbFtrcrXysP1y4PQ9KjdNfiQ4yoWPjTtwYMJjLE0NcbA==}
- '@emnapi/core@1.4.5':
- resolution: {integrity: sha512-XsLw1dEOpkSX/WucdqUhPWP7hDxSvZiY+fsUC14h+FtQ2Ifni4znbBt8punRX+Uj2JG/uDb8nEHVKvrVlvdZ5Q==}
+ '@emnapi/core@1.8.1':
+ resolution: {integrity: sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==}
'@emnapi/runtime@1.4.5':
resolution: {integrity: sha512-++LApOtY0pEEz1zrd9vy1/zXVaVJJ/EbAF3u0fXIzPJEDtnITsBGbbK0EkM72amhl/R5b+5xx0Y/QhcVOpuulg==}
- '@emnapi/wasi-threads@1.0.4':
- resolution: {integrity: sha512-PJR+bOmMOPH8AtcTGAyYNiuJ3/Fcoj2XN/gBEWzDIKh254XO+mM9XoXHk5GNEhodxeMznbg7BlRojVbKN+gC6g==}
+ '@emnapi/runtime@1.8.1':
+ resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
- '@esbuild/aix-ppc64@0.25.0':
- resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
+ '@emnapi/wasi-threads@1.1.0':
+ resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
+
+ '@esbuild/aix-ppc64@0.27.2':
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.25.8':
- resolution: {integrity: sha512-urAvrUedIqEiFR3FYSLTWQgLu5tb+m0qZw0NBEasUeo6wuqatkMDaRT+1uABiGXEu5vqgPd7FGE1BhsAIy9QVA==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/android-arm64@0.25.0':
- resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
+ '@esbuild/android-arm64@0.27.2':
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.8':
- resolution: {integrity: sha512-OD3p7LYzWpLhZEyATcTSJ67qB5D+20vbtr6vHlHWSQYhKtzUYrETuWThmzFpZtFsBIxRvhO07+UgVA9m0i/O1w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm@0.25.0':
- resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
+ '@esbuild/android-arm@0.27.2':
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.8':
- resolution: {integrity: sha512-RONsAvGCz5oWyePVnLdZY/HHwA++nxYWIX1atInlaW6SEkwq6XkP3+cb825EUcRs5Vss/lGh/2YxAb5xqc07Uw==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-x64@0.25.0':
- resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
+ '@esbuild/android-x64@0.27.2':
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.25.8':
- resolution: {integrity: sha512-yJAVPklM5+4+9dTeKwHOaA+LQkmrKFX96BM0A/2zQrbS6ENCmxc4OVoBs5dPkCCak2roAD+jKCdnmOqKszPkjA==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/darwin-arm64@0.25.0':
- resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
+ '@esbuild/darwin-arm64@0.27.2':
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.25.8':
- resolution: {integrity: sha512-Jw0mxgIaYX6R8ODrdkLLPwBqHTtYHJSmzzd+QeytSugzQ0Vg4c5rDky5VgkoowbZQahCbsv1rT1KW72MPIkevw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.25.0':
- resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
+ '@esbuild/darwin-x64@0.27.2':
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.8':
- resolution: {integrity: sha512-Vh2gLxxHnuoQ+GjPNvDSDRpoBCUzY4Pu0kBqMBDlK4fuWbKgGtmDIeEC081xi26PPjn+1tct+Bh8FjyLlw1Zlg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/freebsd-arm64@0.25.0':
- resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
+ '@esbuild/freebsd-arm64@0.27.2':
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.25.8':
- resolution: {integrity: sha512-YPJ7hDQ9DnNe5vxOm6jaie9QsTwcKedPvizTVlqWG9GBSq+BuyWEDazlGaDTC5NGU4QJd666V0yqCBL2oWKPfA==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.25.0':
- resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
+ '@esbuild/freebsd-x64@0.27.2':
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.8':
- resolution: {integrity: sha512-MmaEXxQRdXNFsRN/KcIimLnSJrk2r5H8v+WVafRWz5xdSVmWLoITZQXcgehI2ZE6gioE6HirAEToM/RvFBeuhw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/linux-arm64@0.25.0':
- resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
+ '@esbuild/linux-arm64@0.27.2':
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.8':
- resolution: {integrity: sha512-WIgg00ARWv/uYLU7lsuDK00d/hHSfES5BzdWAdAig1ioV5kaFNrtK8EqGcUBJhYqotlUByUKz5Qo6u8tt7iD/w==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm@0.25.0':
- resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
+ '@esbuild/linux-arm@0.27.2':
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.8':
- resolution: {integrity: sha512-FuzEP9BixzZohl1kLf76KEVOsxtIBFwCaLupVuk4eFVnOZfU+Wsn+x5Ryam7nILV2pkq2TqQM9EZPsOBuMC+kg==}
- engines: {node: '>=18'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-ia32@0.25.0':
- resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
+ '@esbuild/linux-ia32@0.27.2':
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.25.8':
- resolution: {integrity: sha512-A1D9YzRX1i+1AJZuFFUMP1E9fMaYY+GnSQil9Tlw05utlE86EKTUA7RjwHDkEitmLYiFsRd9HwKBPEftNdBfjg==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-loong64@0.25.0':
- resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
+ '@esbuild/linux-loong64@0.27.2':
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.8':
- resolution: {integrity: sha512-O7k1J/dwHkY1RMVvglFHl1HzutGEFFZ3kNiDMSOyUrB7WcoHGf96Sh+64nTRT26l3GMbCW01Ekh/ThKM5iI7hQ==}
- engines: {node: '>=18'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.25.0':
- resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
+ '@esbuild/linux-mips64el@0.27.2':
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.8':
- resolution: {integrity: sha512-uv+dqfRazte3BzfMp8PAQXmdGHQt2oC/y2ovwpTteqrMx2lwaksiFZ/bdkXJC19ttTvNXBuWH53zy/aTj1FgGw==}
- engines: {node: '>=18'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.25.0':
- resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
+ '@esbuild/linux-ppc64@0.27.2':
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.8':
- resolution: {integrity: sha512-GyG0KcMi1GBavP5JgAkkstMGyMholMDybAf8wF5A70CALlDM2p/f7YFE7H92eDeH/VBtFJA5MT4nRPDGg4JuzQ==}
- engines: {node: '>=18'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.25.0':
- resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
+ '@esbuild/linux-riscv64@0.27.2':
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.8':
- resolution: {integrity: sha512-rAqDYFv3yzMrq7GIcen3XP7TUEG/4LK86LUPMIz6RT8A6pRIDn0sDcvjudVZBiiTcZCY9y2SgYX2lgK3AF+1eg==}
- engines: {node: '>=18'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-s390x@0.25.0':
- resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
+ '@esbuild/linux-s390x@0.27.2':
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.8':
- resolution: {integrity: sha512-Xutvh6VjlbcHpsIIbwY8GVRbwoviWT19tFhgdA7DlenLGC/mbc3lBoVb7jxj9Z+eyGqvcnSyIltYUrkKzWqSvg==}
- engines: {node: '>=18'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-x64@0.25.0':
- resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
+ '@esbuild/linux-x64@0.27.2':
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.25.8':
- resolution: {integrity: sha512-ASFQhgY4ElXh3nDcOMTkQero4b1lgubskNlhIfJrsH5OKZXDpUAKBlNS0Kx81jwOBp+HCeZqmoJuihTv57/jvQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/netbsd-arm64@0.25.0':
- resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
+ '@esbuild/netbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-arm64@0.25.8':
- resolution: {integrity: sha512-d1KfruIeohqAi6SA+gENMuObDbEjn22olAR7egqnkCD9DGBG0wsEARotkLgXDu6c4ncgWTZJtN5vcgxzWRMzcw==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [netbsd]
-
- '@esbuild/netbsd-x64@0.25.0':
- resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
+ '@esbuild/netbsd-x64@0.27.2':
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.8':
- resolution: {integrity: sha512-nVDCkrvx2ua+XQNyfrujIG38+YGyuy2Ru9kKVNyh5jAys6n+l44tTtToqHjino2My8VAY6Lw9H7RI73XFi66Cg==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [netbsd]
-
- '@esbuild/openbsd-arm64@0.25.0':
- resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
+ '@esbuild/openbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-arm64@0.25.8':
- resolution: {integrity: sha512-j8HgrDuSJFAujkivSMSfPQSAa5Fxbvk4rgNAS5i3K+r8s1X0p1uOO2Hl2xNsGFppOeHOLAVgYwDVlmxhq5h+SQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.25.0':
- resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
+ '@esbuild/openbsd-x64@0.27.2':
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.8':
- resolution: {integrity: sha512-1h8MUAwa0VhNCDp6Af0HToI2TJFAn1uqT9Al6DJVzdIBAd21m/G0Yfc77KDM3uF3T/YaOgQq3qTJHPbTOInaIQ==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openharmony-arm64@0.25.8':
- resolution: {integrity: sha512-r2nVa5SIK9tSWd0kJd9HCffnDHKchTGikb//9c7HX+r+wHYCpQrSgxhlY6KWV1nFo1l4KFbsMlHk+L6fekLsUg==}
+ '@esbuild/openharmony-arm64@0.27.2':
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
- '@esbuild/sunos-x64@0.25.0':
- resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
+ '@esbuild/sunos-x64@0.27.2':
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.25.8':
- resolution: {integrity: sha512-zUlaP2S12YhQ2UzUfcCuMDHQFJyKABkAjvO5YSndMiIkMimPmxA+BYSBikWgsRpvyxuRnow4nS5NPnf9fpv41w==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/win32-arm64@0.25.0':
- resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
+ '@esbuild/win32-arm64@0.27.2':
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.25.8':
- resolution: {integrity: sha512-YEGFFWESlPva8hGL+zvj2z/SaK+pH0SwOM0Nc/d+rVnW7GSTFlLBGzZkuSU9kFIGIo8q9X3ucpZhu8PDN5A2sQ==}
- engines: {node: '>=18'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-ia32@0.25.0':
- resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
+ '@esbuild/win32-ia32@0.27.2':
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.25.8':
- resolution: {integrity: sha512-hiGgGC6KZ5LZz58OL/+qVVoZiuZlUYlYHNAmczOm7bs2oE1XriPFi5ZHHrS8ACpV5EjySrnoCKmcbQMN+ojnHg==}
- engines: {node: '>=18'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-x64@0.25.0':
- resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
+ '@esbuild/win32-x64@0.27.2':
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.8':
- resolution: {integrity: sha512-cn3Yr7+OaaZq1c+2pe+8yxC8E144SReCQjN6/2ynubzYjvyqZjTXfQJpAcQpsdJq3My7XADANiYGHoFC69pLQw==}
- engines: {node: '>=18'}
- cpu: [x64]
- os: [win32]
-
- '@esm-bundle/chai@4.3.4-fix.0':
- resolution: {integrity: sha512-26SKdM4uvDWlY8/OOOxSB1AqQWeBosCX3wRYUZO7enTAj03CtVxIiCimYVG2WpULcyV51qapK4qTovwkUr5Mlw==}
-
- '@git.zone/tsbuild@2.6.8':
- resolution: {integrity: sha512-g1z7+MxiYD0xMfuqn8NSWitbfK1OaF0Qolmw7WOmUsHmNF60T1AR02Lo4DtNmnjSpchA+xzDFAQzL1xTcQA39w==}
+ '@git.zone/tsbuild@4.1.2':
+ resolution: {integrity: sha512-S518ulKveO76pS6jrAELrnFaCw5nDAIZD9j6QzVmLYDiZuJmlRwPK3/2E8ugQ+b7ffpkwJ9MT685ooEGDcWQ4Q==}
hasBin: true
- '@git.zone/tsbundle@2.5.1':
- resolution: {integrity: sha512-gBskgM3ECy9FEmhCWnQahDyFCAjjw/7emjx/KYM/FOlPqGV+hmYzt368zwSlkzOGgYF8k9OZ+mp6vexDL/+f2w==}
+ '@git.zone/tsbundle@2.8.1':
+ resolution: {integrity: sha512-K4HzZmJ3wrR+sO5sZwcVcSEHxJiLj71bv7J6GRmGoex8sXj6T2QrpkeCshsnbMan8OCuwOKtzyVrBDXt36chHw==}
hasBin: true
- '@git.zone/tspublish@1.10.3':
- resolution: {integrity: sha512-o2/jvNsdLC8SRdH1kQ7JjNOQNu9el0FpJ/QOW3mgiC5C9reuTp18iU4kijsVVLgvw4KZv6Z289SoKPh3HPsS0g==}
+ '@git.zone/tspublish@1.11.0':
+ resolution: {integrity: sha512-dkgaDBTzZJ53lAV72r7OW/W7l/KqpkncFuPojr11JO35OKAbjjDhZbAwPv4oGX9NplyXrhC5VJRPNX/orqNTHA==}
hasBin: true
- '@git.zone/tsrun@1.3.3':
- resolution: {integrity: sha512-DDzWunkxXLtXJTxBf4EioXLwhuqdA2VzdTmOzWrw4Z4Qnms/YM67q36yajwNohAajPYyRz5DayU0ikrceFXyVw==}
+ '@git.zone/tsrun@2.0.1':
+ resolution: {integrity: sha512-NEcnsjvlC1o3Z6SS3VhKCf6Ev+Sh4EAinmggslrIR/ppMrvjDbXNFXoyr3PB+GLeSAR0JRZ1fGvVYjpEzjBdIg==}
hasBin: true
- '@git.zone/tstest@2.3.8':
- resolution: {integrity: sha512-rt7rpR2UwzHXjpqquEvWG4LfzGOGeI6lcR2YyO8pc7lqjhH+xsuaWPUQ5IwFl4Vw4VnR9ZoHBCqkjvxF8ow1wQ==}
+ '@git.zone/tstest@3.1.4':
+ resolution: {integrity: sha512-S7kubbb0yLYOh/QAzFsjG6a20lZiyNKo4pt0yK1yvd9I7X8Rw6/mCT/BicLkan7G7Nk7scUfxaK9+aFsHmdQdw==}
hasBin: true
- '@hapi/bourne@3.0.0':
- resolution: {integrity: sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w==}
-
'@happy-dom/global-registrator@15.11.7':
resolution: {integrity: sha512-mfOoUlIw8VBiJYPrl5RZfMzkXC/z7gbSpi2ecycrj/gRWLq2CMV+Q+0G+JPjeOmuNFgg0skEIzkVFzVYFP6URw==}
engines: {node: '>=18.0.0'}
@@ -970,6 +943,62 @@ packages:
cpu: [x64]
os: [win32]
+ '@inquirer/checkbox@3.0.1':
+ resolution: {integrity: sha512-0hm2nrToWUdD6/UHnel/UKGdk1//ke5zGUpHIvk5ZWmaKezlGxZkOJXNSWsdxO/rEqTkbB3lNC2J6nBElV2aAQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/confirm@4.0.1':
+ resolution: {integrity: sha512-46yL28o2NJ9doViqOy0VDcoTzng7rAb6yPQKU7VDLqkmbCaH4JqK4yk4XqlzNWy9PVC5pG1ZUXPBQv+VqnYs2w==}
+ engines: {node: '>=18'}
+
+ '@inquirer/core@9.2.1':
+ resolution: {integrity: sha512-F2VBt7W/mwqEU4bL0RnHNZmC/OxzNx9cOYxHqnXX3MP6ruYvZUZAW9imgN9+h/uBT/oP8Gh888J2OZSbjSeWcg==}
+ engines: {node: '>=18'}
+
+ '@inquirer/editor@3.0.1':
+ resolution: {integrity: sha512-VA96GPFaSOVudjKFraokEEmUQg/Lub6OXvbIEZU1SDCmBzRkHGhxoFAVaF30nyiB4m5cEbDgiI2QRacXZ2hw9Q==}
+ engines: {node: '>=18'}
+
+ '@inquirer/expand@3.0.1':
+ resolution: {integrity: sha512-ToG8d6RIbnVpbdPdiN7BCxZGiHOTomOX94C2FaT5KOHupV40tKEDozp12res6cMIfRKrXLJyexAZhWVHgbALSQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/figures@1.0.15':
+ resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
+ engines: {node: '>=18'}
+
+ '@inquirer/input@3.0.1':
+ resolution: {integrity: sha512-BDuPBmpvi8eMCxqC5iacloWqv+5tQSJlUafYWUe31ow1BVXjW2a5qe3dh4X/Z25Wp22RwvcaLCc2siHobEOfzg==}
+ engines: {node: '>=18'}
+
+ '@inquirer/number@2.0.1':
+ resolution: {integrity: sha512-QpR8jPhRjSmlr/mD2cw3IR8HRO7lSVOnqUvQa8scv1Lsr3xoAMMworcYW3J13z3ppjBFBD2ef1Ci6AE5Qn8goQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/password@3.0.1':
+ resolution: {integrity: sha512-haoeEPUisD1NeE2IanLOiFr4wcTXGWrBOyAyPZi1FfLJuXOzNmxCJPgUrGYKVh+Y8hfGJenIfz5Wb/DkE9KkMQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/prompts@6.0.1':
+ resolution: {integrity: sha512-yl43JD/86CIj3Mz5mvvLJqAOfIup7ncxfJ0Btnl0/v5TouVUyeEdcpknfgc+yMevS/48oH9WAkkw93m7otLb/A==}
+ engines: {node: '>=18'}
+
+ '@inquirer/rawlist@3.0.1':
+ resolution: {integrity: sha512-VgRtFIwZInUzTiPLSfDXK5jLrnpkuSOh1ctfaoygKAdPqjcjKYmGh6sCY1pb0aGnCGsmhUxoqLDUAU0ud+lGXQ==}
+ engines: {node: '>=18'}
+
+ '@inquirer/search@2.0.1':
+ resolution: {integrity: sha512-r5hBKZk3g5MkIzLVoSgE4evypGqtOannnB3PKTG9NRZxyFRKcfzrdxXXPcoJQsxJPzvdSU2Rn7pB7lw0GCmGAg==}
+ engines: {node: '>=18'}
+
+ '@inquirer/select@3.0.1':
+ resolution: {integrity: sha512-lUDGUxPhdWMkN/fHy1Lk7pF3nK1fh/gqeyWXmctefhxLYxlDsc7vsPBEpxrfVGDsVdyYJsiJoD4bJ1b623cV1Q==}
+ engines: {node: '>=18'}
+
+ '@inquirer/type@2.0.0':
+ resolution: {integrity: sha512-XvJRx+2KR3YXyYtPUUy+qd9i7p+GO9Ko6VIIpWlBrpWwXDv8WLFeHTxz35CfQFUiBMLXlGHhGzys7lqit9gWag==}
+ engines: {node: '>=18'}
+
'@isaacs/balanced-match@4.0.1':
resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==}
engines: {node: 20 || >=22}
@@ -982,18 +1011,6 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
- '@jest/expect-utils@29.7.0':
- resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- '@jest/schemas@29.6.3':
- resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- '@jest/types@29.6.3':
- resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
'@jimp/core@1.6.0':
resolution: {integrity: sha512-EQQlKU3s9QfdJqiSrZWNTxBs3rKXgO2W+GxNXDtwchF3a4IqxDheFX1ti+Env9hdJXDiYLp2jTRjlxhPthsk8w==}
engines: {node: '>=18'}
@@ -1106,101 +1123,47 @@ packages:
resolution: {integrity: sha512-gqFTGEosKbOkYF/WFj26jMHOI5OH2jeP1MmC/zbK6BF6VJBf8rIC5898dPfSzZEbSA0wbbV5slbntWVc5PKLFA==}
engines: {node: '>=18'}
- '@koa/router@9.4.0':
- resolution: {integrity: sha512-dOOXgzqaDoHu5qqMEPLKEgLz5CeIA7q8+1W62mCvFVCOqeC71UoTGJ4u1xUSOpIl2J1x2pqrNULkFteUeZW3/A==}
- engines: {node: '>= 8.0.0'}
-
'@leichtgewicht/ip-codec@2.0.5':
resolution: {integrity: sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==}
- '@lit-labs/ssr-dom-shim@1.3.0':
- resolution: {integrity: sha512-nQIWonJ6eFAvUUrSlwyHDm/aE8PBDu5kRpL0vHMg6K8fK3Diq1xdPjTnsJSwxABhaZ+5eBi1btQB5ShUTKo4nQ==}
-
'@lit-labs/ssr-dom-shim@1.4.0':
resolution: {integrity: sha512-ficsEARKnmmW5njugNYKipTm4SFnbik7CXtoencDZzmzo/dQ+2Q0bgkzJuoJP20Aj0F+izzJjOqsnkd6F/o1bw==}
- '@lit/reactive-element@2.0.4':
- resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==}
-
'@lit/reactive-element@2.1.1':
resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==}
'@mixmark-io/domino@2.2.0':
resolution: {integrity: sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==}
- '@module-federation/error-codes@0.17.0':
- resolution: {integrity: sha512-+pZ12frhaDqh4Xs/MQj4Vu4CAjnJTiEb8Z6fqPfn/TLHh4YLWMOzpzxGuMFDHqXwMb3o8FRAUhNB0eX2ZmhwTA==}
+ '@module-federation/error-codes@0.22.0':
+ resolution: {integrity: sha512-xF9SjnEy7vTdx+xekjPCV5cIHOGCkdn3pIxo9vU7gEZMIw0SvAEdsy6Uh17xaCpm8V0FWvR0SZoK9Ik6jGOaug==}
- '@module-federation/runtime-core@0.17.0':
- resolution: {integrity: sha512-MYwDDevYnBB9gXFfNOmJVIX5XZcbCHd0dral7gT7yVmlwOhbuGOLlm2dh2icwwdCYHA9AFDCfU9l1nJR4ex/ng==}
+ '@module-federation/runtime-core@0.22.0':
+ resolution: {integrity: sha512-GR1TcD6/s7zqItfhC87zAp30PqzvceoeDGYTgF3Vx2TXvsfDrhP6Qw9T4vudDQL3uJRne6t7CzdT29YyVxlgIA==}
- '@module-federation/runtime-tools@0.17.0':
- resolution: {integrity: sha512-t4QcKfhmwOHedwByDKUlTQVw4+gPotySYPyNa8GFrBSr1F6wcGdGyOhzP+PdgpiJLIM03cB6V+IKGGHE28SfDQ==}
+ '@module-federation/runtime-tools@0.22.0':
+ resolution: {integrity: sha512-4ScUJ/aUfEernb+4PbLdhM/c60VHl698Gn1gY21m9vyC1Ucn69fPCA1y2EwcCB7IItseRMoNhdcWQnzt/OPCNA==}
- '@module-federation/runtime@0.17.0':
- resolution: {integrity: sha512-eMtrtCSSV6neJpMmQ8WdFpYv93raSgsG5RiAPsKUuSCXfZ5D+yzvleZ+gPcEpFT9HokmloxAn0jep50/1upTQw==}
+ '@module-federation/runtime@0.22.0':
+ resolution: {integrity: sha512-38g5iPju2tPC3KHMPxRKmy4k4onNp6ypFPS1eKGsNLUkXgHsPMBFqAjDw96iEcjri91BrahG4XcdyKi97xZzlA==}
- '@module-federation/sdk@0.17.0':
- resolution: {integrity: sha512-tjrNaYdDocHZsWu5iXlm83lwEK8A64r4PQB3/kY1cW1iOvggR2RESLAWPxRJXC2cLF8fg8LDKOBdgERZW1HPFA==}
+ '@module-federation/sdk@0.22.0':
+ resolution: {integrity: sha512-x4aFNBKn2KVQRuNVC5A7SnrSCSqyfIWmm1DvubjbO9iKFe7ith5niw8dqSFBekYBg2Fwy+eMg4sEFNVvCAdo6g==}
- '@module-federation/webpack-bundler-runtime@0.17.0':
- resolution: {integrity: sha512-o8XtXwqTDlqLgcALOfObcCbqXvUcSDHIEXrkcb4W+I8GJY7IqV0+x6rX4mJ3f59tca9qOF8zsZsOA6BU93Pvgw==}
+ '@module-federation/webpack-bundler-runtime@0.22.0':
+ resolution: {integrity: sha512-aM8gCqXu+/4wBmJtVeMeeMN5guw3chf+2i6HajKtQv7SJfxV/f4IyNQJUeUQu9HfiAZHjqtMV5Lvq/Lvh8LdyA==}
'@mongodb-js/saslprep@1.2.2':
resolution: {integrity: sha512-EB0O3SCSNRUFk66iRCpI+cXzIjdswfCs7F6nOC3RAGJ7xr5YhaicvsRwJ9eyzYvYRlCSDUO/c7g4yNulxKC1WA==}
- '@napi-rs/wasm-runtime@1.0.1':
- resolution: {integrity: sha512-KVlQ/jgywZpixGCKMNwxStmmbYEMyokZpCf2YuIChhfJA2uqfAKNEM8INz7zzTo55iEXfBhIIs3VqYyqzDLj8g==}
+ '@napi-rs/wasm-runtime@1.0.7':
+ resolution: {integrity: sha512-SeDnOO0Tk7Okiq6DbXmmBODgOAb9dp9gjlphokTUxmt8U3liIP1ZsozBahH69j/RJv+Rfs6IwUKHTgQYJ/HBAw==}
- '@nodelib/fs.scandir@2.1.5':
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
- engines: {node: '>= 8'}
+ '@napi-rs/wasm-runtime@1.1.1':
+ resolution: {integrity: sha512-p64ah1M1ld8xjWv3qbvFwHiFVWrq1yFvV4f7w+mzaqiR4IlSgkqhcRdHwsGgomwzBH51sRY4NEowLxnaBjcW/A==}
- '@nodelib/fs.stat@2.0.5':
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
- engines: {node: '>= 8'}
-
- '@nodelib/fs.walk@1.2.8':
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
- engines: {node: '>= 8'}
-
- '@oozcitak/dom@1.15.10':
- resolution: {integrity: sha512-0JT29/LaxVgRcGKvHmSrUTEvZ8BXvZhGl2LASRUgHqDTC1M5g1pLmVv56IYNyt3bG2CUjDkc67wnyZC14pbQrQ==}
- engines: {node: '>=8.0'}
-
- '@oozcitak/infra@1.0.8':
- resolution: {integrity: sha512-JRAUc9VR6IGHOL7OGF+yrvs0LO8SlqGnPAMqyzOuFZPSZSXI7Xf2O9+awQPSMXgIWGtgUf/dA6Hs6X6ySEaWTg==}
- engines: {node: '>=6.0'}
-
- '@oozcitak/url@1.0.4':
- resolution: {integrity: sha512-kDcD8y+y3FCSOvnBI6HJgl00viO/nGbQoCINmQ0h98OhnGITrWR3bOGfwYCthgcrV8AnTJz8MzslTQbC3SOAmw==}
- engines: {node: '>=8.0'}
-
- '@oozcitak/util@8.3.8':
- resolution: {integrity: sha512-T8TbSnGsxo6TDBJx/Sgv/BlVJL3tshxZP7Aq5R1mSnM5OcHY2dQaxLMu2+E8u3gN0MLOzdjurqN4ZRVuzQycOQ==}
- engines: {node: '>=8.0'}
-
- '@open-wc/dedupe-mixin@1.4.0':
- resolution: {integrity: sha512-Sj7gKl1TLcDbF7B6KUhtvr+1UCxdhMbNY5KxdU5IfMFWqL8oy1ZeAcCANjoB1TL0AJTcPmcCFsCbHf8X2jGDUA==}
-
- '@open-wc/scoped-elements@3.0.5':
- resolution: {integrity: sha512-q4U+hFTQQRyorJILOpmBm6PY2hgjCnQe214nXJNjbJMQ9EvT55oyZ7C8BY5aFYJkytUyBoawlMpZt4F2xjdzHw==}
-
- '@open-wc/semantic-dom-diff@0.20.1':
- resolution: {integrity: sha512-mPF/RPT2TU7Dw41LEDdaeP6eyTOWBD4z0+AHP4/d0SbgcfJZVRymlIB6DQmtz0fd2CImIS9kszaMmwMt92HBPA==}
-
- '@open-wc/testing-helpers@3.0.1':
- resolution: {integrity: sha512-hyNysSatbgT2FNxHJsS3rGKcLEo6+HwDFu1UQL6jcSQUabp/tj3PyX7UnXL3H5YGv0lJArdYLSnvjLnjn3O2fw==}
-
- '@open-wc/testing@4.0.0':
- resolution: {integrity: sha512-KI70O0CJEpBWs3jrTju4BFCy7V/d4tFfYWkg8pMzncsDhD7TYNHLw5cy+s1FHXIgVFetnMDhPpwlKIPvtTQW7w==}
-
- '@oxc-project/runtime@0.77.3':
- resolution: {integrity: sha512-vsC/ewcGJ7xXnnwZkku7rpPH5Lxb5g4J+V6lD9eBTnRLmXVXM7Qu50y+ozD+UD5IXaSoVOvVMGTT4YSNCz2MQQ==}
- engines: {node: '>=6.9.0'}
-
- '@oxc-project/types@0.77.3':
- resolution: {integrity: sha512-5Vh+neJhhxuF0lYCjZXbxjqm2EO6YJ1jG+KuHntrd6VY67OMpYhWq2cZhUhy+xL9qLJVJRaeII7Xj9fciA6v7A==}
+ '@oxc-project/types@0.99.0':
+ resolution: {integrity: sha512-LLDEhXB7g1m5J+woRSgfKsFPS3LhR9xRhTeIoEBm5WrkwMxn6eZ0Ld0c0K5eHB57ChZX6I3uSmmLjZ8pcjlRcw==}
'@pdf-lib/standard-fonts@1.0.0':
resolution: {integrity: sha512-hU30BK9IUN/su0Mn9VdlVKsWBS6GyhVfqjwl1FjZN4TxP6cCw0jP2w7V3Hf5uX7M0AZJ16vey9yE0ny7Sa59ZA==}
@@ -1258,9 +1221,6 @@ packages:
engines: {node: '>=18'}
hasBin: true
- '@push.rocks/consolecolor@2.0.2':
- resolution: {integrity: sha512-IBwxCLX+YF3f5wB2N4LfuvFqm9WPlBMiEeSAfjN8YQCyYec6u1hlrR3EIj8vT300pppjeGrybJHK+GyjdGXZJw==}
-
'@push.rocks/consolecolor@2.0.3':
resolution: {integrity: sha512-hA+m0BMqEwZNSAS7c2aQFfoPkpX/dNdsHzkdLdeERUOy7BLacb9ItTUofGtjtginP0yDj4NSpqSjNYyX3Y8Y/w==}
@@ -1288,6 +1248,9 @@ packages:
'@push.rocks/mongodump@1.0.8':
resolution: {integrity: sha512-oDufyjNBg8I50OaJvbHhc0RnRpJQ544dr9her0G6sA8JmI3hD2/amTdcPLVIX1kzYf5GsTUKeWuRaZgdNqz3ew==}
+ '@push.rocks/npmextra@5.3.3':
+ resolution: {integrity: sha512-snLpSHwaQ5OXlZzF1KX/FY71W5LwajjBzor82Vue0smjEPnSeUPY5/JcVdMwtdprdJe13pc/EQQuIiL/zw4/yg==}
+
'@push.rocks/qenv@6.1.3':
resolution: {integrity: sha512-+z2hsAU/7CIgpYLFqvda8cn9rUBMHqLdQLjsFfRn5jPoD7dJ5rFlpkbhfM4Ws8mHMniwWaxGKo+q/YBhtzRBLg==}
@@ -1306,6 +1269,9 @@ packages:
'@push.rocks/smartbucket@3.3.7':
resolution: {integrity: sha512-RiOuEtwHJ+HFbV1nlZgh5VuMvP6PXElX6rVe7OSQsyNCBybRQa/d1qDic92+2Ejx852DGeHlyREELQCxd/a/7w==}
+ '@push.rocks/smartbucket@4.3.0':
+ resolution: {integrity: sha512-4nstzEduCKou4R5ekKH6kUjDZXWfrtjA1hIQ4MJmTbtncmm2+4+ixjaFThS2nS8Aa+fHcBgOtKkBv8wTsgvK/Q==}
+
'@push.rocks/smartbuffer@3.0.5':
resolution: {integrity: sha512-pWYF08Mn8s/KF/9nHRk7pZPzuMjmYVQay2c5gGexdayxn1W4eCSYYhWH73vR2JBfGeGq/izbRNuUuEaIEeTIKA==}
@@ -1317,9 +1283,10 @@ packages:
'@push.rocks/smartchok@1.1.1':
resolution: {integrity: sha512-WmNigGmn1muBJMANVuJb4F8x3TzgYrnn6YZm6ixTsG+0WFbYevivEwp+J4S7npobLHsR7ynf+Ky8LxRYmsL50A==}
+ deprecated: This package has been renamed. Please use @push.rocks/smartwatch instead.
- '@push.rocks/smartcli@4.0.11':
- resolution: {integrity: sha512-KDWfUqWBoUZsOEtsDx36d6qc8GG7Zo5E+HHamYY68KVDO8BMu6jbBucoUUPDksczLEmbXKLmroBP1mn/xozQOA==}
+ '@push.rocks/smartcli@4.0.20':
+ resolution: {integrity: sha512-gCo4ItvsPj8WoVAJw/6vkuoGA5FtIoACux2ktcCeH0nrFe7/xGR6waJ1aZcYAi7QN4gi52TlsgwuKz7BzXqhmQ==}
'@push.rocks/smartclickhouse@2.0.17':
resolution: {integrity: sha512-IYO8Obor/Ruam2KQ2B/+5uQ+rL0exU5KZoSgOc3jkkrfjn+zZenN2xoV8lVqavAtxZVfG7MfxFrcv6I7I9ZMmA==}
@@ -1342,20 +1309,20 @@ packages:
'@push.rocks/smartenv@5.0.13':
resolution: {integrity: sha512-ACXmUcHZHl2CF2jnVuRw9saRRrZvJblCRs2d+K5aLR1DfkYFX3eA21kcMlKeLisI3aGNbIj9vz/rowN5qkRkfA==}
+ '@push.rocks/smartenv@6.0.0':
+ resolution: {integrity: sha512-ktW5MqOFs0492sB4vrvl4lgRFQ/sQ4AyREgB+sCIzGqszHWGVvGXR95Y2a3z66jkLPYML2CUWHzmMlfv8fkG+A==}
+
'@push.rocks/smarterror@2.0.1':
resolution: {integrity: sha512-iCcH1D8tlDJgMFsaJ6lhdOTKhbU0KoprNv9MRP9o7691QOx4JEDXiHtr/lNtxVo8BUtdb9CF6kazaknO9KuORA==}
'@push.rocks/smartexit@1.0.23':
resolution: {integrity: sha512-WmwKYcwbHBByoABhHHB+PAjr5475AtD/xBh1mDcqPrFsOOUOZq3BBUdpq25wI3ccu/SZB5IwaimiVzadls6HkA==}
- '@push.rocks/smartexpect@2.4.2':
- resolution: {integrity: sha512-L+aS1n5rWhf/yOh5R3zPgwycYtDr5FfrDWgasy6ShhN6Zbn/z/AOPbWcF/OpeTmx0XabWB2h5d4xBcCKLl47cQ==}
-
'@push.rocks/smartexpect@2.5.0':
resolution: {integrity: sha512-yoyuCoQ3tTiAriuvF+/09fNbVfFnacudL2SwHSzPhX/ugaE7VTSWXQ9A34eKOWvil0MPyDcOY36fVZDxvrPd8A==}
- '@push.rocks/smartfeed@1.0.11':
- resolution: {integrity: sha512-02uhXxQamgfBo3T12FsAdfyElnpoWuDUb08B2AE60DbIaukVx/7Mi17xwobApY1flNSr5StZDt8N8vxPhBhIXw==}
+ '@push.rocks/smartfeed@1.4.0':
+ resolution: {integrity: sha512-bvj/3cGQI6TbbjbqrgC1uufcqprd/VthefuIsS8KHiHyCqYD5Z6RTjrbQY9WOCsmub/dcuMavfXQZqe9g2+OrQ==}
'@push.rocks/smartfile-interfaces@1.0.7':
resolution: {integrity: sha512-MeOl/200UOvSO4Pgq/DVFiBVZpL9gjOBQM+4XYNjSxda8c6VBvchHAntaFLQUlO8U1ckNaP9i+nMO4O4/0ymyw==}
@@ -1363,18 +1330,24 @@ packages:
'@push.rocks/smartfile@11.2.7':
resolution: {integrity: sha512-8Yp7/sAgPpWJBHohV92ogHWKzRomI5MEbSG6b5W2n18tqwfAmjMed0rQvsvGrSBlnEWCKgoOrYIIZbLO61+J0Q==}
+ '@push.rocks/smartfile@13.1.2':
+ resolution: {integrity: sha512-DaEhwmnGEpX4coeeToaw4cZe3pNBhH7CY1iGr+d3pIXihozREvzzAR9/0i2r7bUXXL5+Lgy8YYIk5ZS+fwxMKA==}
+
+ '@push.rocks/smartfs@1.3.1':
+ resolution: {integrity: sha512-ZSduVS8tM+/erbyCTvRRvc9gLWwbpqN5xdIIkMr+gub7fowSeJb7tR2rnGwySa63DyimU0q2KTp79VV9YqGLeg==}
+
'@push.rocks/smartguard@3.1.0':
resolution: {integrity: sha512-J23q84f1O+TwFGmd4lrO9XLHUh2DaLXo9PN/9VmTWYzTkQDv5JehmifXVI0esophXcCIfbdIu6hbt7/aHlDF4A==}
- '@push.rocks/smarthash@3.0.4':
- resolution: {integrity: sha512-HJ/fSx41jm0CvSaqMLa6b2nuNK5rHAqAeAq3dAB7Sq9BCPm2M0J5ZVDTzEAH8pS91XYniUiwuE0jwPERNn9hmw==}
-
'@push.rocks/smarthash@3.2.0':
resolution: {integrity: sha512-+dgvrtj9hwE/Xxqy9NLEDw8kmbn4TybFhwHsU6C0baVt7oTy97fj39PO0ooyNCKVfNrfLGhq5iSUTAJiGWnMlQ==}
'@push.rocks/smarthash@3.2.6':
resolution: {integrity: sha512-Mq/WNX0Tjjes3X1gHd/ZBwOOKSrAG/Z3Xoc0OcCm3P20WKpniihkMpsnlE7wGjvpHLi/ZRe/XkB3KC3d5r9X4g==}
+ '@push.rocks/smartinteract@2.0.16':
+ resolution: {integrity: sha512-eltvVRRUKBKd77DSFA4DPY2g4V4teZLNe8A93CDy/WglglYcUjxMoLY/b0DFTWCWKYT+yjk6Fe6p0FRrvX9Yvg==}
+
'@push.rocks/smartjimp@1.2.0':
resolution: {integrity: sha512-SPz8p2ZuphNqIXK/UDsNFrnpJn/jr6FbuBSMQc0V2v2ffQIF32ZqktKQpXpitiqD1K5JEYS56JAhlYHgrAu7yw==}
@@ -1396,15 +1369,9 @@ packages:
'@push.rocks/smartlog@3.0.7':
resolution: {integrity: sha512-WHOw0iHHjCEbYY4KGX40iFtLI11QJvvWIbC9yFn3Mt+nrdupMnry7Ztc5v/PqO8lu33Q6xDBMXiNQ9yNY0HVGw==}
- '@push.rocks/smartlog@3.0.9':
- resolution: {integrity: sha512-B/YIJrwXsbxPkAJly8+55yx3Eqm5bIaCZ/xD2oe6fD8Zp58VLF2P8hpoQZJOiSO+KI7wXVlTEFHsmt8fpRZIVA==}
-
'@push.rocks/smartlog@3.1.10':
resolution: {integrity: sha512-5pf5JyzOE2WTCUislNIW4EHePo1a7hiXB+jbil38+N5hW71AEwcPFe6oGxbp5w9ALlz66hV2+E+25R0SsxN+fQ==}
- '@push.rocks/smartlog@3.1.8':
- resolution: {integrity: sha512-j4H5x4/hEmiIO7q+/LKyX3N+AhRIOj1jDE4TvZDvujZkbT/9wEWfpO1bqeMe/EQbg1eOQMlAuyrcLXUcDICpQg==}
-
'@push.rocks/smartmanifest@2.0.2':
resolution: {integrity: sha512-QGc5C9vunjfUbYsPGz5bynV/mVmPHkrQDkWp8ZO8VJtK1GZe+njgbrNyxn2SUHR0IhSAbSXl1j4JvBqYf5eTVg==}
@@ -1417,8 +1384,8 @@ packages:
'@push.rocks/smartmime@2.0.4':
resolution: {integrity: sha512-mG6lRBLr5nF+GLZmgCcdjhdDsmTtJWBFZDCa1eJ8Au9TvUzbPW0fY5aqJBb3UwfyZzH6St8Th9cJSXjagOQkYA==}
- '@push.rocks/smartmongo@2.0.12':
- resolution: {integrity: sha512-NglYiO14BikxnlvW6JF18FtopBtaWQEGAtPxHmmSCbyhU8Mi0aEFO7VgCasE9Kguba/wcR597qhcDEdcpBg1eQ==}
+ '@push.rocks/smartmongo@2.0.14':
+ resolution: {integrity: sha512-fvfPeCDDy5JaDBpVnsMKednsOoRzuYC0OszO8OoLOX/RaR755zIbRppCCK8Cez0hqd6eNkJGQeWdX/vXlJOPBA==}
'@push.rocks/smartnetwork@4.1.2':
resolution: {integrity: sha512-TjucG72ooHgzAUpNu2LAv4iFoettmZq2aEWhhzIa7AKcOvt4yxsk3Vl73guhKRohTfhdRauPcH5OHISLUHJbYA==}
@@ -1465,6 +1432,9 @@ packages:
'@push.rocks/smartrequest@4.3.1':
resolution: {integrity: sha512-H5FQSfFEbSJCHpE2A+SasQQcxM5FlxhHIUEzhUsSLjtlCTEu9T7Xb1WzVLFYvdWfyP5VIrg+XM4AMOols8cG+Q==}
+ '@push.rocks/smartrequest@5.0.1':
+ resolution: {integrity: sha512-gZQQF6HVt3LwTBxaPh6hHObd4VF76PUYQcs5pHD7f0VXaEewmrNAQSnccoinOY7fi45+0dOf04PJOXu9MibPzQ==}
+
'@push.rocks/smartrouter@1.3.3':
resolution: {integrity: sha512-1+xZEnWlhzqLWAaJ1zFNhQ0zgbfCWQl1DBT72LygLxTs+P0K8AwJKgqo/IX6CT55kGCFnPAZIYSbVJlGsgrB0w==}
@@ -1474,11 +1444,8 @@ packages:
'@push.rocks/smartrx@3.0.7':
resolution: {integrity: sha512-qCWy0s3RLAgGSnaw/Gu0BNaJ59CsI6RK5OJDCCqxc7P2X/S755vuLtnAR5/0dEjdhCHXHX9ytPZx+o9g/CNiyA==}
- '@push.rocks/smarts3@2.2.5':
- resolution: {integrity: sha512-OZjD0jBCUTJCLnwraxBcyZ3he5buXf2OEM1zipiTBChA2EcKUZWKk/a6KR5WT+NlFCIIuB23UG+U+cxsIWM91Q==}
-
- '@push.rocks/smarts3@2.2.6':
- resolution: {integrity: sha512-f2i2keHs+KZr5cyB8nBOnmRGiE2YG42W4pSx+8gmZEsf8yZUT1iUnuD/YZVTKosH2v5dPCKdmtSpMSux8Q/tCw==}
+ '@push.rocks/smarts3@3.0.3':
+ resolution: {integrity: sha512-Y9nXMwurthJ9Z7yi0RwjhPFUC58aY8Mhia8kFo6Xj1tBM4LE8Oxg/ydejF7otHqQGr3QyqV5C4YrDEG17rUuzg==}
'@push.rocks/smartshell@3.2.3':
resolution: {integrity: sha512-BWA/DH1H9lG7Er23d4uYgirfYaya5dX4g/WpWm2la7mOzuL9o2FnPIhel52DQUKIh7ty3Ql305ApV8YaAb4+/w==}
@@ -1486,8 +1453,8 @@ packages:
'@push.rocks/smartshell@3.3.0':
resolution: {integrity: sha512-m0w618H6YBs+vXGz1CgS4nPi5CUAnqRtckcS9/koGwfcIx1IpjqmiP47BoCTbdgcv0IPUxQVBG1IXTHPuZ8Z5g==}
- '@push.rocks/smartsitemap@2.0.3':
- resolution: {integrity: sha512-jIcms8V1b2mt3dS4PKNlLR1DRC8pCDWMRVbnyM/2+snZOJZonQRlQzAyX8No0EfLbfdrfnxv2IjPX13X29Re6g==}
+ '@push.rocks/smartsitemap@2.0.4':
+ resolution: {integrity: sha512-76dYWG/o/EjV4vYCK7ZKM35T9xgrI+oHEiiIE6E2MDaFIU6QnSfciTfbscH5nc0vxx8Ah+I0HPEJO94BM2S39w==}
'@push.rocks/smartsocket@2.1.0':
resolution: {integrity: sha512-etOGyfiDFQz/1WJnD3jFL2N7ykujTjiudAz6qZTz82xE5oabKuKX+Cn8SdM9dOwzyWmBUKbUdll8QhovAXjn+g==}
@@ -1519,14 +1486,14 @@ packages:
'@push.rocks/smartversion@3.0.5':
resolution: {integrity: sha512-8MZSo1yqyaKxKq0Q5N188l4un++9GFWVbhCAX5mXJwewZHn97ujffTeL+eOQYpWFTEpUhaq1QhL4NhqObBCt1Q==}
- '@push.rocks/smartxml@1.1.1':
- resolution: {integrity: sha512-1toSmLE1EGK8oENh09XjV588+IdzUB3x1PCaxKjSyIsAt54bUQj3kH/yzLODF+19p07OE0KM5U1oqWpjOcFCzA==}
+ '@push.rocks/smartxml@2.0.0':
+ resolution: {integrity: sha512-1d06zYJX4Zt8s5w5qFOUg2LAEz9ykrh9d6CQPK4WAgOBIefb1xzVEWHc7yoxicc2OkzNgC3IBCEg3s6BncZKWw==}
'@push.rocks/smartyaml@2.0.5':
resolution: {integrity: sha512-tBcf+HaOIfeEsTMwgUZDtZERCxXQyRsWO8Ar5DjBdiSRchbhVGZQEBzXswMS0W5ZoRenjgPK+4tPW3JQGRTfbg==}
- '@push.rocks/tapbundle@6.0.3':
- resolution: {integrity: sha512-SuP14V6TPdtd1y1CYTvwTKJdpHa7EzY55NfaaEMxW4oRKvHgJiOiPEiR/IrtL9tSiDMSfrx12waTMgZheYaBug==}
+ '@push.rocks/smartyaml@3.0.4':
+ resolution: {integrity: sha512-1JRt+hnoc2zHw3AW+vXKlCdSVwqOmY/01fu+2HBviS0UDjoZCa+/rp6E3GaQb5lEEafKi8ENbffAfjXXp3N2xQ==}
'@push.rocks/taskbuffer@3.1.7':
resolution: {integrity: sha512-QktGVJPucqQmW/QNGnscf4FAigT1H7JWKFGFdRuDEaOHKFh9qN+PXG3QY7DtZ4jfXdGLxPN4yAufDuPSAJYFnw==}
@@ -1537,6 +1504,9 @@ packages:
'@push.rocks/webrequest@3.0.37':
resolution: {integrity: sha512-fLN7kP6GeHFxE4UH4r9C9pjcQb0QkJxHeAMwXvbOqB9hh0MFNKhtGU7GoaTn8SVRGRMPc9UqZVNwo6u5l8Wn0A==}
+ '@push.rocks/webrequest@4.0.1':
+ resolution: {integrity: sha512-I60XZZLVf8W5I7YdmUVVu4G92teE3rg3/aKaV00BRg8vJ3VXx3wc59Qj4em7zxQ5o0HvL8m1Aezw3RFMDPyVgA==}
+
'@push.rocks/websetup@3.0.19':
resolution: {integrity: sha512-iKJDwXdMmQdu5siOIgziPRxM51lN1AU9HOr+yMteu1YMDkZT7HKCyisDAr4gC9WZ9a7FzsG8zgthm4dMeA8NTw==}
@@ -1654,150 +1624,159 @@ packages:
resolution: {integrity: sha512-6KGnf2vHR7hW4mQpAD7gkDVL3QVML3jb/No/Uw+qCqvs0TaQr60Yjm+CXoLxJNCKwmrL+I1yx8mhAHBHfYJiJA==}
deprecated: This package has been deprecated in favour of the new package at @push.rocks/smarturl
- '@rolldown/binding-android-arm64@1.0.0-beta.29':
- resolution: {integrity: sha512-pDv7gg59Gdy80eFmMkEqXEaoJi3Y9W/a9T3z9M4t8Ma8aVXNldvSy9UgtlX7AK7DPqF8tULnmIZ2Z3rvGMz/NQ==}
+ '@rolldown/binding-android-arm64@1.0.0-beta.52':
+ resolution: {integrity: sha512-MBGIgysimZPqTDcLXI+i9VveijkP5C3EAncEogXhqfax6YXj1Tr2LY3DVuEOMIjWfMPMhtQSPup4fSTAmgjqIw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [android]
- '@rolldown/binding-darwin-arm64@1.0.0-beta.29':
- resolution: {integrity: sha512-fPqR6TfTqbzgKKCQYtcCS+Dms91YcptTbdlwJ13DxOUgMe8LgDIVsLLlEykfm7ijJd5mM4zNw0Hr2CJb6kvQZw==}
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.52':
+ resolution: {integrity: sha512-MmKeoLnKu1d9j6r19K8B+prJnIZ7u+zQ+zGQ3YHXGnr41rzE3eqQLovlkvoZnRoxDGPA4ps0pGiwXy6YE3lJyg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [darwin]
- '@rolldown/binding-darwin-x64@1.0.0-beta.29':
- resolution: {integrity: sha512-7Z4qosL0xN8i6++txHOEPCVP3/lcGLOvftUJOWATZ5aDkDskwcZDa66BGiJt/K1/DgW4kpRVmnGWUWAORHBbFA==}
+ '@rolldown/binding-darwin-x64@1.0.0-beta.52':
+ resolution: {integrity: sha512-qpHedvQBmIjT8zdnjN3nWPR2qjQyJttbXniCEKKdHeAbZG9HyNPBUzQF7AZZGwmS9coQKL+hWg9FhWzh2dZ2IA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [darwin]
- '@rolldown/binding-freebsd-x64@1.0.0-beta.29':
- resolution: {integrity: sha512-0HLTfPW5Glh608s76qgayN/nPsXPchNUumavf7W5nh1eMG6qBsOO7Q1QaK0v4un7qtsn3IA/1Tgq0ZgNc0dbeg==}
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.52':
+ resolution: {integrity: sha512-dDp7WbPapj/NVW0LSiH/CLwMhmLwwKb3R7mh2kWX+QW85X1DGVnIEyKh9PmNJjB/+suG1dJygdtdNPVXK1hylg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [freebsd]
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.29':
- resolution: {integrity: sha512-QNboxdVTJOZS4zP8kA2+XUwAegejd5QNSH5zVR4neqG2AfbxRcMFzSVRkJHN6yDaaKweD/4sUvXfmef6p/7zsw==}
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.52':
+ resolution: {integrity: sha512-9e4l6vy5qNSliDPqNfR6CkBOAx6PH7iDV4OJiEJzajajGrVy8gc/IKKJUsoE52G8ud8MX6r3PMl97NfwgOzB7g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm]
os: [linux]
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.29':
- resolution: {integrity: sha512-hzBmOtYdC4369XxN2SNJ3oBlXKWNif3ieWBT+oh/qvAeox4fQR0ngqyh+kIGOufBnP5Zc2rqJf9LzIbJw3Tx/Q==}
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.52':
+ resolution: {integrity: sha512-V48oDR84feRU2KRuzpALp594Uqlx27+zFsT6+BgTcXOtu7dWy350J1G28ydoCwKB+oxwsRPx2e7aeQnmd3YJbQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.29':
- resolution: {integrity: sha512-6B35GmFJJ4RX88OgubrnUmuJBUgRh6/OTXIpy8m/VUnoc683lufIPo26HW/0LxLgxp2GM7KHr3LOULcVxbqq4Q==}
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.52':
+ resolution: {integrity: sha512-ENLmSQCWqSA/+YN45V2FqTIemg7QspaiTjlm327eUAMeOLdqmSOVVyrQexJGNTQ5M8sDYCgVAig2Kk01Ggmqaw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [linux]
- '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.29':
- resolution: {integrity: sha512-z3ru8fUCunQM8q9I7RbDVMT5cxzxVVVBNNKM5/qAQQrdObd1u8g0LR5z0yLtaFWzybwLVdPtJDRcXtLm5tOBFA==}
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.52':
+ resolution: {integrity: sha512-klahlb2EIFltSUubn/VLjuc3qxp1E7th8ukayPfdkcKvvYcQ5rJztgx8JsJSuAKVzKtNTqUGOhy4On71BuyV8g==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.52':
+ resolution: {integrity: sha512-UuA+JqQIgqtkgGN2c/AQ5wi8M6mJHrahz/wciENPTeI6zEIbbLGoth5XN+sQe2pJDejEVofN9aOAp0kaazwnVg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.52':
+ resolution: {integrity: sha512-1BNQW8u4ro8bsN1+tgKENJiqmvc+WfuaUhXzMImOVSMw28pkBKdfZtX2qJPADV3terx+vNJtlsgSGeb3+W6Jiw==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [openharmony]
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.29':
- resolution: {integrity: sha512-n6fs4L7j99MIiI6vKhQDdyScv4/uMAPtIMkB0zGbUX8MKWT1osym1hvWVdlENjnS/Phf0zzhjyOgoFDzdhI1cQ==}
- cpu: [x64]
- os: [linux]
-
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.29':
- resolution: {integrity: sha512-C5hcJgtDN4rp6/WsPTQSDVUWrdnIC//ynMGcUIh1O0anm9KnSy47zKQ5D9EqtlEKvO+2PPqmyUVJ2DTq18nlVA==}
- cpu: [x64]
- os: [linux]
-
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.29':
- resolution: {integrity: sha512-lMN1IBItdZFO182Sdus9oVuNDqyIymn/bsR5KwgeGaiqLsrmpQHBSLwkS/nKJO1nzYlpGDRugFSpnrSJ5ZmihQ==}
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.52':
+ resolution: {integrity: sha512-K/p7clhCqJOQpXGykrFaBX2Dp9AUVIDHGc+PtFGBwg7V+mvBTv/tsm3LC3aUmH02H2y3gz4y+nUTQ0MLpofEEg==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.29':
- resolution: {integrity: sha512-0UrXCUAOrbWdyVJskzjtne/4d3YMMhhhpBnob3SeF4jAvbKYqPhCZJ71pP7yUpvbowGXXTnHWpKfitg4Sovmtw==}
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.52':
+ resolution: {integrity: sha512-a4EkXBtnYYsKipjS7QOhEBM4bU5IlR9N1hU+JcVEVeuTiaslIyhWVKsvf7K2YkQHyVAJ+7/A9BtrGqORFcTgng==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [arm64]
os: [win32]
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.29':
- resolution: {integrity: sha512-YX0OYL1dcB7rPnsndpEa68fytYyZZj1iaWzH7momFB2oBS2lXAe1UrrDWcdLoUXdzPIyzpvtBCiS2XcDgYG7ag==}
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.52':
+ resolution: {integrity: sha512-5ZXcYyd4GxPA6QfbGrNcQjmjbuLGvfz6728pZMsQvGHI+06LT06M6TPtXvFvLgXtexc+OqvFe1yAIXJU1gob/w==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [ia32]
os: [win32]
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.29':
- resolution: {integrity: sha512-azrPWbV+NZiCFNs59AgH9Y6vFKHoAI6T/XtKKsoLxkPyP1LpbdgL5eqRfeWz+GCAUY9qhDOC4hH1GjFG8PrZIg==}
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.52':
+ resolution: {integrity: sha512-tzpnRQXJrSzb8Z9sm97UD3cY0toKOImx+xRKsDLX4zHaAlRXWh7jbaKBePJXEN7gNw7Nm03PBNwphdtA8KSUYQ==}
+ engines: {node: ^20.19.0 || >=22.12.0}
cpu: [x64]
os: [win32]
- '@rolldown/pluginutils@1.0.0-beta.29':
- resolution: {integrity: sha512-NIJgOsMjbxAXvoGq/X0gD7VPMQ8j9g0BiDaNjVNVjvl+iKXxL3Jre0v31RmBYeLEmkbj2s02v8vFTbUXi5XS2Q==}
+ '@rolldown/pluginutils@1.0.0-beta.52':
+ resolution: {integrity: sha512-/L0htLJZbaZFL1g9OHOblTxbCYIGefErJjtYOwgl9ZqNx27P3L0SDfjhhHIss32gu5NWgnxuT2a2Hnnv6QGHKA==}
- '@rspack/binding-darwin-arm64@1.4.10':
- resolution: {integrity: sha512-PraYGuVSzvEwdoYC8T70qI/8j1QeUe2sysiWmjSdxUpxJsDfw35hK9TfxULeAJULlAUAiiXs03hdZk29DBc3ow==}
+ '@rspack/binding-darwin-arm64@1.7.2':
+ resolution: {integrity: sha512-EsmfzNZnuEhVPMX5jWATCHT2UCCBh6iqq448xUMmASDiKVbIOhUTN1ONTV+aMERYl7BgMNJn0iTis6ot2GWKIg==}
cpu: [arm64]
os: [darwin]
- '@rspack/binding-darwin-x64@1.4.10':
- resolution: {integrity: sha512-rWTSJ08TE0uqUjqAHkTmWqJu+FLSJ70A199Fk9k/FLZTS8UtHjuzZW7rv4qIN2nwJJLherxFUnP6y69cHuaGNw==}
+ '@rspack/binding-darwin-x64@1.7.2':
+ resolution: {integrity: sha512-lQLq0eNzFDzR31XD0H5oTG0y8cBoNF9hJ2gt1GgqMlYvaY+pMEeh7s4rTX1/M0c4gHpLudp86SsDuDJ53BwnaQ==}
cpu: [x64]
os: [darwin]
- '@rspack/binding-linux-arm64-gnu@1.4.10':
- resolution: {integrity: sha512-cs6yu250FzRU1hl+02VLoJRdzbAveTOqvREeHgqL5AiTc6q1dQo1IZ16/Qt4+g0DMjnvM66pELRIO2nphXL8aA==}
+ '@rspack/binding-linux-arm64-gnu@1.7.2':
+ resolution: {integrity: sha512-rtrsygVbDYw55ukdIk3NEwNQWkUemfRgeNOUvZ0k/6p7eP16020VPDvIqvcmyPtBhwFmz5vfo57GnBLisjM/kw==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-arm64-musl@1.4.10':
- resolution: {integrity: sha512-NnOAoWkpZvOa+xM7NAJg25O+tSKt6xCXoga+gOw5XPni1NxHDc3PNh5bU6fAmc2Z29YLLdxeVqPmIDfdk1EkDg==}
+ '@rspack/binding-linux-arm64-musl@1.7.2':
+ resolution: {integrity: sha512-zhh6ycumTHI7V/VOOT6DolvBe5RFG+Np/e5hhlhjEFtskraO9rkWg8knE9Ssu6a6Qdj4nGscqOj9ENNpc6gb+A==}
cpu: [arm64]
os: [linux]
- '@rspack/binding-linux-x64-gnu@1.4.10':
- resolution: {integrity: sha512-FcaBqMclADWiqX+Mez15kggwaVYZkoEqDiQwYRpYDbBMsiJEtfp41GnNRstTWxYxFbcmuWoZl2cYy+LepR21ag==}
+ '@rspack/binding-linux-x64-gnu@1.7.2':
+ resolution: {integrity: sha512-ON9hy6OTpBOmmFp/51RPa0r9bDbZ3wTTubT54V+yhHuB+eSrlXQIOQScUGCGoGgqp6sLTwKjv2yy7YLyzd1gCA==}
cpu: [x64]
os: [linux]
- '@rspack/binding-linux-x64-musl@1.4.10':
- resolution: {integrity: sha512-vgRQhCw+C/Nxv6MZVNUkPzSXs6kIWHIrGKUvOM1ceeAkT+jNFEQdukkQ5LsYgEqEwP9ezWubxN3IGrMxyimlPw==}
+ '@rspack/binding-linux-x64-musl@1.7.2':
+ resolution: {integrity: sha512-+2nnjwaSOStgLKtY5O7I3yfkwTkhiJLQ35CwQqWKRw+g1E4OFIKpXBfl34JDtrF/2DeS7sVVyLeuC25+43n9/A==}
cpu: [x64]
os: [linux]
- '@rspack/binding-wasm32-wasi@1.4.10':
- resolution: {integrity: sha512-lk647+Ob3yvVS2FgW0vCfo/gz9h0Q7v9HGBFcsD1uW0/tSqXMa2s9ZvIn+B7S9tRgIoosXEAuq8NeCXKGWVj5Q==}
+ '@rspack/binding-wasm32-wasi@1.7.2':
+ resolution: {integrity: sha512-TU/aLBpm9CTR/RTLF27WlvBKGyju6gpiNTRd3XRbX2JfY3UBNUQN/Ev+gQMVeOj55y9Fruzou42/w9ncTKA0Dw==}
cpu: [wasm32]
- '@rspack/binding-win32-arm64-msvc@1.4.10':
- resolution: {integrity: sha512-9mB3kh4pKaY4wFosZwuxb5EUtt7vv/uKW3OF4TJDC35bH7r54s+YYpHyXROT304r6URl4b6HNHlysL2m7BLihg==}
+ '@rspack/binding-win32-arm64-msvc@1.7.2':
+ resolution: {integrity: sha512-RReQN3AUu46XUZnOy5L/vSj5J+tcl/bzSnGQ2KetZ7dUOjGCC6c0Ki3EiklVM5OC1Agytz0Rz7cJqHJ+HaQbsA==}
cpu: [arm64]
os: [win32]
- '@rspack/binding-win32-ia32-msvc@1.4.10':
- resolution: {integrity: sha512-DPlyLZDUWkNcFI7zp1BQVVnihd4j/hCIbxqvIKvUt7whIVYMP52i8lCsa52uNGBSj7BcbcKAFElXC9dHVvoQGA==}
+ '@rspack/binding-win32-ia32-msvc@1.7.2':
+ resolution: {integrity: sha512-EytrfT2sfUCnRMtXfSNv7AR65DWuY3dX/Bsn1TTin7CC6+RFEAP9nzHtCMISvFPp+c5bveok0/eY8j/f4LZ/Gg==}
cpu: [ia32]
os: [win32]
- '@rspack/binding-win32-x64-msvc@1.4.10':
- resolution: {integrity: sha512-FEE6OM0Wh7nj90+1ARXojT0Dnqox9UlIUIj7MQmX09yeMtckR+HITeq75F8y0l7HUvKOl2zQovmenk1KgyJV8Q==}
+ '@rspack/binding-win32-x64-msvc@1.7.2':
+ resolution: {integrity: sha512-zLFt6cr55fjbIy6HT1xS2yLVmtvRjyZ0TbcRum7Ipp+s23gyGHVYNRuDMj34AHnhbCcX/XrxDTzCc4ba6xtYTw==}
cpu: [x64]
os: [win32]
- '@rspack/binding@1.4.10':
- resolution: {integrity: sha512-awiXN7qTTTLWFThbJFL+M4k1if4sb17xKA5TaHbbxs0qKSlpe3adwNrNHaNU2WOQz+PbuF++OMyd+4gUusKuVg==}
+ '@rspack/binding@1.7.2':
+ resolution: {integrity: sha512-bVssRQ39TgGA2RxKEbhUBKYRHln9sbBi0motHmqSU53aMnIkiLXjcj7tZC5dK7Okl2SrHM5KCYK9eG4UodDfdA==}
- '@rspack/core@1.4.10':
- resolution: {integrity: sha512-eK3H328pihiM1323OlaClKJ9WlqgGBZpcR5AqFoWsG0KD01tKCJOeZEgtCY6paRLrsQrEJwBrLntkG0fE7WNGg==}
- engines: {node: '>=16.0.0'}
+ '@rspack/core@1.7.2':
+ resolution: {integrity: sha512-Pm06phSQqbthbzl92KdnbXmwcnYRv3Ef86uE6hoADqVjsmt2WvJwNjpqgs0S6n+s9UL6QzxqaaAaKg5qeBT+3g==}
+ engines: {node: '>=18.12.0'}
peerDependencies:
'@swc/helpers': '>=0.5.1'
peerDependenciesMeta:
'@swc/helpers':
optional: true
- '@rspack/lite-tapable@1.0.1':
- resolution: {integrity: sha512-VynGOEsVw2s8TAlLf/uESfrgfrq2+rcXB1muPJYBWbsm1Oa6r5qVQhjA5ggM6z/coYPrsVMgovl3Ff7Q7OCp1w==}
- engines: {node: '>=16.0.0'}
+ '@rspack/lite-tapable@1.1.0':
+ resolution: {integrity: sha512-E2B0JhYFmVAwdDiG14+DW0Di4Ze4Jg10Pc4/lILUrd5DRCaklduz2OvJ5HYQ6G+hd+WTzqQb3QnDNfK4yvAFYw==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
- '@sinclair/typebox@0.27.8':
- resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
-
'@sindresorhus/is@5.6.0':
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
engines: {node: '>=14.16'}
@@ -1806,14 +1785,14 @@ packages:
resolution: {integrity: sha512-fiUIYgIgRjMWznk6iLJz35K2YxSLHzLBA/RC6lBrKfQ8fHbPfvk7Pk9UvpKoHgJjI18MnbPuEju53zcVy6KF1g==}
engines: {node: '>=18.0.0'}
- '@smithy/abort-controller@4.0.2':
- resolution: {integrity: sha512-Sl/78VDtgqKxN2+1qduaVE140XF+Xg+TafkncspwM4jFP/LHr76ZHmIY/y3V1M0mMLNk+Je6IGbzxy23RSToMw==}
- engines: {node: '>=18.0.0'}
-
'@smithy/abort-controller@4.2.0':
resolution: {integrity: sha512-PLUYa+SUKOEZtXFURBu/CNxlsxfaFGxSBPcStL13KpVeVWIfdezWyDqkz7iDLmwnxojXD0s5KzuB5HGHvt4Aeg==}
engines: {node: '>=18.0.0'}
+ '@smithy/abort-controller@4.2.8':
+ resolution: {integrity: sha512-peuVfkYHAmS5ybKxWcfraK7WBBP0J+rkfUcbHJJKQ4ir3UAUNQI+Y4Vt/PqSzGqgloJ5O1dk7+WzNL8wcCSXbw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/chunked-blob-reader-native@4.0.0':
resolution: {integrity: sha512-R9wM2yPmfEMsUmlMlIgSzOyICs0x9uu7UTHoccMyt7BWw8shcGM8HqB355+BZCPBcySvbTYMs62EgEQkNxz2ig==}
engines: {node: '>=18.0.0'}
@@ -1834,14 +1813,14 @@ packages:
resolution: {integrity: sha512-Igfg8lKu3dRVkTSEm98QpZUvKEOa71jDX4vKRcvJVyRc3UgN3j7vFMf0s7xLQhYmKa8kyJGQgUJDOV5V3neVlQ==}
engines: {node: '>=18.0.0'}
- '@smithy/config-resolver@4.1.2':
- resolution: {integrity: sha512-7r6mZGwb5LmLJ+zPtkLoznf2EtwEuSWdtid10pjGl/7HefCE4mueOkrfki8JCUm99W6UfP47/r3tbxx9CfBN5A==}
- engines: {node: '>=18.0.0'}
-
'@smithy/config-resolver@4.3.0':
resolution: {integrity: sha512-9oH+n8AVNiLPK/iK/agOsoWfrKZ3FGP3502tkksd6SRsKMYiu7AFX0YXo6YBADdsAj7C+G/aLKdsafIJHxuCkQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/config-resolver@4.4.6':
+ resolution: {integrity: sha512-qJpzYC64kaj3S0fueiu3kXm8xPrR3PcXDPEgnaNMRn0EjNSZFoFjvbUp0YUDsRhN1CB90EnHJtbxWKevnH99UQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/core@3.1.5':
resolution: {integrity: sha512-HLclGWPkCsekQgsyzxLhCQLa8THWXtB5PxyYN+2O6nkyLt550KQKTlbV2D1/j5dNIQapAZM1+qFnpBFxZQkgCA==}
engines: {node: '>=18.0.0'}
@@ -1850,22 +1829,22 @@ packages:
resolution: {integrity: sha512-VJWncXgt+ExNn0U2+Y7UywuATtRYaodGQKFo9mDyh70q+fJGedfrqi2XuKU1BhiLeXgg6RZrW7VEKfeqFhHAJA==}
engines: {node: '>=18.0.0'}
- '@smithy/core@3.3.2':
- resolution: {integrity: sha512-GlLv+syoWolhtjX12XplL9BXBu10cjjD8iQC69fiKTrVNOB3Fjt8CVI9ccm6G3bLbMNe1gzrLD7yyMkYo4hchw==}
+ '@smithy/core@3.20.7':
+ resolution: {integrity: sha512-aO7jmh3CtrmPsIJxUwYIzI5WVlMK8BMCPQ4D4nTzqTqBhbzvxHNzBMGcEg13yg/z9R2Qsz49NUFl0F0lVbTVFw==}
engines: {node: '>=18.0.0'}
'@smithy/credential-provider-imds@4.0.1':
resolution: {integrity: sha512-l/qdInaDq1Zpznpmev/+52QomsJNZ3JkTl5yrTl02V6NBgJOQ4LY0SFw/8zsMwj3tLe8vqiIuwF6nxaEwgf6mg==}
engines: {node: '>=18.0.0'}
- '@smithy/credential-provider-imds@4.0.4':
- resolution: {integrity: sha512-jN6M6zaGVyB8FmNGG+xOPQB4N89M1x97MMdMnm1ESjljLS3Qju/IegQizKujaNcy2vXAvrz0en8bobe6E55FEA==}
- engines: {node: '>=18.0.0'}
-
'@smithy/credential-provider-imds@4.2.0':
resolution: {integrity: sha512-SOhFVvFH4D5HJZytb0bLKxCrSnwcqPiNlrw+S4ZXjMnsC+o9JcUQzbZOEQcA8yv9wJFNhfsUiIUKiEnYL68Big==}
engines: {node: '>=18.0.0'}
+ '@smithy/credential-provider-imds@4.2.8':
+ resolution: {integrity: sha512-FNT0xHS1c/CPN8upqbMFP83+ul5YgdisfCfkZ86Jh2NSmnqw/AJ6x5pEogVCTVvSm7j9MopRU89bmDelxuDMYw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-codec@4.0.1':
resolution: {integrity: sha512-Q2bCAAR6zXNVtJgifsU16ZjKGqdw/DyecKNgIgi7dlqw04fqDu0mnq+JmGphqheypVc64CYq3azSuCpAdFk2+A==}
engines: {node: '>=18.0.0'}
@@ -1874,6 +1853,10 @@ packages:
resolution: {integrity: sha512-XE7CtKfyxYiNZ5vz7OvyTf1osrdbJfmUy+rbh+NLQmZumMGvY0mT0Cq1qKSfhrvLtRYzMsOBuRpi10dyI0EBPg==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-codec@4.2.8':
+ resolution: {integrity: sha512-jS/O5Q14UsufqoGhov7dHLOPCzkYJl9QDzusI2Psh4wyYx/izhzvX9P4D69aTxcdfVhEPhjK+wYyn/PzLjKbbw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-browser@4.0.1':
resolution: {integrity: sha512-HbIybmz5rhNg+zxKiyVAnvdM3vkzjE6ccrJ620iPL8IXcJEntd3hnBl+ktMwIy12Te/kyrSbUb8UCdnUT4QEdA==}
engines: {node: '>=18.0.0'}
@@ -1882,6 +1865,10 @@ packages:
resolution: {integrity: sha512-U53p7fcrk27k8irLhOwUu+UYnBqsXNLKl1XevOpsxK3y1Lndk8R7CSiZV6FN3fYFuTPuJy5pP6qa/bjDzEkRvA==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-browser@4.2.8':
+ resolution: {integrity: sha512-MTfQT/CRQz5g24ayXdjg53V0mhucZth4PESoA5IhvaWVDTOQLfo8qI9vzqHcPsdd2v6sqfTYqF5L/l+pea5Uyw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-config-resolver@4.0.1':
resolution: {integrity: sha512-lSipaiq3rmHguHa3QFF4YcCM3VJOrY9oq2sow3qlhFY+nBSTF/nrO82MUQRPrxHQXA58J5G1UnU2WuJfi465BA==}
engines: {node: '>=18.0.0'}
@@ -1890,6 +1877,10 @@ packages:
resolution: {integrity: sha512-uwx54t8W2Yo9Jr3nVF5cNnkAAnMCJ8Wrm+wDlQY6rY/IrEgZS3OqagtCu/9ceIcZFQ1zVW/zbN9dxb5esuojfA==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-config-resolver@4.3.8':
+ resolution: {integrity: sha512-ah12+luBiDGzBruhu3efNy1IlbwSEdNiw8fOZksoKoWW1ZHvO/04MQsdnws/9Aj+5b0YXSSN2JXKy/ClIsW8MQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-node@4.0.1':
resolution: {integrity: sha512-o4CoOI6oYGYJ4zXo34U8X9szDe3oGjmHgsMGiZM0j4vtNoT+h80TLnkUcrLZR3+E6HIxqW+G+9WHAVfl0GXK0Q==}
engines: {node: '>=18.0.0'}
@@ -1898,6 +1889,10 @@ packages:
resolution: {integrity: sha512-yjM2L6QGmWgJjVu/IgYd6hMzwm/tf4VFX0lm8/SvGbGBwc+aFl3hOzvO/e9IJ2XI+22Tx1Zg3vRpFRs04SWFcg==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-node@4.2.8':
+ resolution: {integrity: sha512-cYpCpp29z6EJHa5T9WL0KAlq3SOKUQkcgSoeRfRVwjGgSFl7Uh32eYGt7IDYCX20skiEdRffyDpvF2efEZPC0A==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/eventstream-serde-universal@4.0.1':
resolution: {integrity: sha512-Z94uZp0tGJuxds3iEAZBqGU2QiaBHP4YytLUjwZWx+oUeohCsLyUm33yp4MMBmhkuPqSbQCXq5hDet6JGUgHWA==}
engines: {node: '>=18.0.0'}
@@ -1906,18 +1901,22 @@ packages:
resolution: {integrity: sha512-C3jxz6GeRzNyGKhU7oV656ZbuHY93mrfkT12rmjDdZch142ykjn8do+VOkeRNjSGKw01p4g+hdalPYPhmMwk1g==}
engines: {node: '>=18.0.0'}
+ '@smithy/eventstream-serde-universal@4.2.8':
+ resolution: {integrity: sha512-iJ6YNJd0bntJYnX6s52NC4WFYcZeKrPUr1Kmmr5AwZcwCSzVpS7oavAmxMR7pMq7V+D1G4s9F5NJK0xwOsKAlQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/fetch-http-handler@5.0.1':
resolution: {integrity: sha512-3aS+fP28urrMW2KTjb6z9iFow6jO8n3MFfineGbndvzGZit3taZhKWtTorf+Gp5RpFDDafeHlhfsGlDCXvUnJA==}
engines: {node: '>=18.0.0'}
- '@smithy/fetch-http-handler@5.0.2':
- resolution: {integrity: sha512-+9Dz8sakS9pe7f2cBocpJXdeVjMopUDLgZs1yWeu7h++WqSbjUYv/JAJwKwXw1HV6gq1jyWjxuyn24E2GhoEcQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/fetch-http-handler@5.3.1':
resolution: {integrity: sha512-3AvYYbB+Dv5EPLqnJIAgYw/9+WzeBiUYS8B+rU0pHq5NMQMvrZmevUROS4V2GAt0jEOn9viBzPLrZE+riTNd5Q==}
engines: {node: '>=18.0.0'}
+ '@smithy/fetch-http-handler@5.3.9':
+ resolution: {integrity: sha512-I4UhmcTYXBrct03rwzQX1Y/iqQlzVQaPxWjCjula++5EmWq9YGBrx6bbGqluGc1f0XEfhSkiY4jhLgbsJUMKRA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-blob-browser@4.0.1':
resolution: {integrity: sha512-rkFIrQOKZGS6i1D3gKJ8skJ0RlXqDvb1IyAphksaFOMzkn3v3I1eJ8m7OkLj0jf1McP63rcCEoLlkAn/HjcTRw==}
engines: {node: '>=18.0.0'}
@@ -1926,18 +1925,22 @@ packages:
resolution: {integrity: sha512-Os9cg1fTXMwuqbvjemELlf+HB5oEeVyZmYsTbAtDQBmjGyibjmbeeqcaw7xOJLIHrkH/u0wAYabNcN6FRTqMRg==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-blob-browser@4.2.9':
+ resolution: {integrity: sha512-m80d/iicI7DlBDxyQP6Th7BW/ejDGiF0bgI754+tiwK0lgMkcaIBgvwwVc7OFbY4eUzpGtnig52MhPAEJ7iNYg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-node@4.0.1':
resolution: {integrity: sha512-TJ6oZS+3r2Xu4emVse1YPB3Dq3d8RkZDKcPr71Nj/lJsdAP1c7oFzYqEn1IBc915TsgLl2xIJNuxCz+gLbLE0w==}
engines: {node: '>=18.0.0'}
- '@smithy/hash-node@4.0.2':
- resolution: {integrity: sha512-VnTpYPnRUE7yVhWozFdlxcYknv9UN7CeOqSrMH+V877v4oqtVYuoqhIhtSjmGPvYrYnAkaM61sLMKHvxL138yg==}
- engines: {node: '>=18.0.0'}
-
'@smithy/hash-node@4.2.0':
resolution: {integrity: sha512-ugv93gOhZGysTctZh9qdgng8B+xO0cj+zN0qAZ+Sgh7qTQGPOJbMdIuyP89KNfUyfAqFSNh5tMvC+h2uCpmTtA==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-node@4.2.8':
+ resolution: {integrity: sha512-7ZIlPbmaDGxVoxErDZnuFG18WekhbA/g2/i97wGj+wUBeS6pcUeAym8u4BXh/75RXWhgIJhyC11hBzig6MljwA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/hash-stream-node@4.0.1':
resolution: {integrity: sha512-U1rAE1fxmReCIr6D2o/4ROqAQX+GffZpyMt3d7njtGDr2pUNmAKRWa49gsNVhCh2vVAuf3wXzWwNr2YN8PAXIw==}
engines: {node: '>=18.0.0'}
@@ -1946,18 +1949,22 @@ packages:
resolution: {integrity: sha512-8dELAuGv+UEjtzrpMeNBZc1sJhO8GxFVV/Yh21wE35oX4lOE697+lsMHBoUIFAUuYkTMIeu0EuJSEsH7/8Y+UQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/hash-stream-node@4.2.8':
+ resolution: {integrity: sha512-v0FLTXgHrTeheYZFGhR+ehX5qUm4IQsjAiL9qehad2cyjMWcN2QG6/4mSwbSgEQzI7jwfoXj7z4fxZUx/Mhj2w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/invalid-dependency@4.0.1':
resolution: {integrity: sha512-gdudFPf4QRQ5pzj7HEnu6FhKRi61BfH/Gk5Yf6O0KiSbr1LlVhgjThcvjdu658VE6Nve8vaIWB8/fodmS1rBPQ==}
engines: {node: '>=18.0.0'}
- '@smithy/invalid-dependency@4.0.2':
- resolution: {integrity: sha512-GatB4+2DTpgWPday+mnUkoumP54u/MDM/5u44KF9hIu8jF0uafZtQLcdfIKkIcUNuF/fBojpLEHZS/56JqPeXQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/invalid-dependency@4.2.0':
resolution: {integrity: sha512-ZmK5X5fUPAbtvRcUPtk28aqIClVhbfcmfoS4M7UQBTnDdrNxhsrxYVv0ZEl5NaPSyExsPWqL4GsPlRvtlwg+2A==}
engines: {node: '>=18.0.0'}
+ '@smithy/invalid-dependency@4.2.8':
+ resolution: {integrity: sha512-N9iozRybwAQ2dn9Fot9kI6/w9vos2oTXLhtK7ovGqwZjlOcxu6XhPlpLpC+INsxktqHinn5gS2DXDjDF2kG5sQ==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/is-array-buffer@2.2.0':
resolution: {integrity: sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==}
engines: {node: '>=14.0.0'}
@@ -1978,180 +1985,184 @@ packages:
resolution: {integrity: sha512-LFEPniXGKRQArFmDQ3MgArXlClFJMsXDteuQQY8WG1/zzv6gVSo96+qpkuu1oJp4MZsKrwchY0cuAoPKzEbaNA==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-content-length@4.0.1':
- resolution: {integrity: sha512-OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ==}
+ '@smithy/md5-js@4.2.8':
+ resolution: {integrity: sha512-oGMaLj4tVZzLi3itBa9TCswgMBr7k9b+qKYowQ6x1rTyTuO1IU2YHdHUa+891OsOH+wCsH7aTPRsTJO3RMQmjQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-content-length@4.0.2':
- resolution: {integrity: sha512-hAfEXm1zU+ELvucxqQ7I8SszwQ4znWMbNv6PLMndN83JJN41EPuS93AIyh2N+gJ6x8QFhzSO6b7q2e6oClDI8A==}
+ '@smithy/middleware-content-length@4.0.1':
+ resolution: {integrity: sha512-OGXo7w5EkB5pPiac7KNzVtfCW2vKBTZNuCctn++TTSOMpe6RZO/n6WEC1AxJINn3+vWLKW49uad3lo/u0WJ9oQ==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-content-length@4.2.0':
resolution: {integrity: sha512-6ZAnwrXFecrA4kIDOcz6aLBhU5ih2is2NdcZtobBDSdSHtE9a+MThB5uqyK4XXesdOCvOcbCm2IGB95birTSOQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-endpoint@4.0.6':
- resolution: {integrity: sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==}
+ '@smithy/middleware-content-length@4.2.8':
+ resolution: {integrity: sha512-RO0jeoaYAB1qBRhfVyq0pMgBoUK34YEJxVxyjOWYZiOKOq2yMZ4MnVXMZCUDenpozHue207+9P5ilTV1zeda0A==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-endpoint@4.1.5':
- resolution: {integrity: sha512-WlpC9KVkajQf7RaGwi3n6lhHZzYTgm2PyX/2JjcwSHG417gFloNmYqN8rzDRXjT527/ZxZuvCsqq1gWZPW8lag==}
+ '@smithy/middleware-endpoint@4.0.6':
+ resolution: {integrity: sha512-ftpmkTHIFqgaFugcjzLZv3kzPEFsBFSnq1JsIkr2mwFzCraZVhQk2gqN51OOeRxqhbPTkRFj39Qd2V91E/mQxg==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-endpoint@4.3.1':
resolution: {integrity: sha512-JtM4SjEgImLEJVXdsbvWHYiJ9dtuKE8bqLlvkvGi96LbejDL6qnVpVxEFUximFodoQbg0Gnkyff9EKUhFhVJFw==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-retry@4.0.7':
- resolution: {integrity: sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==}
+ '@smithy/middleware-endpoint@4.4.8':
+ resolution: {integrity: sha512-TV44qwB/T0OMMzjIuI+JeS0ort3bvlPJ8XIH0MSlGADraXpZqmyND27ueuAL3E14optleADWqtd7dUgc2w+qhQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-retry@4.1.6':
- resolution: {integrity: sha512-bl8q95nvCf7d22spxsBfs2giUDFf7prWLAxF5tmfgGBYHbUNW+OfnwMnabC15GMLA2AoE4HOtQR18a59lx6Blw==}
+ '@smithy/middleware-retry@4.0.7':
+ resolution: {integrity: sha512-58j9XbUPLkqAcV1kHzVX/kAR16GT+j7DUZJqwzsxh1jtz7G82caZiGyyFgUvogVfNTg3TeAOIJepGc8TXF4AVQ==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-retry@4.4.1':
resolution: {integrity: sha512-wXxS4ex8cJJteL0PPQmWYkNi9QKDWZIpsndr0wZI2EL+pSSvA/qqxXU60gBOJoIc2YgtZSWY/PE86qhKCCKP1w==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-serde@4.0.2':
- resolution: {integrity: sha512-Sdr5lOagCn5tt+zKsaW+U2/iwr6bI9p08wOkCp6/eL6iMbgdtc2R5Ety66rf87PeohR0ExI84Txz9GYv5ou3iQ==}
+ '@smithy/middleware-retry@4.4.24':
+ resolution: {integrity: sha512-yiUY1UvnbUFfP5izoKLtfxDSTRv724YRRwyiC/5HYY6vdsVDcDOXKSXmkJl/Hovcxt5r+8tZEUAdrOaCJwrl9Q==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-serde@4.0.4':
- resolution: {integrity: sha512-CaLvBtz+Xgs7eOwoinTXhZ02/9u8b28RT8lQAaDh7Q59nygeYYp1UiJjwl6zsay+lp0qVT/S7qLVI5RgcxjyfQ==}
+ '@smithy/middleware-serde@4.0.2':
+ resolution: {integrity: sha512-Sdr5lOagCn5tt+zKsaW+U2/iwr6bI9p08wOkCp6/eL6iMbgdtc2R5Ety66rf87PeohR0ExI84Txz9GYv5ou3iQ==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-serde@4.2.0':
resolution: {integrity: sha512-rpTQ7D65/EAbC6VydXlxjvbifTf4IH+sADKg6JmAvhkflJO2NvDeyU9qsWUNBelJiQFcXKejUHWRSdmpJmEmiw==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-stack@4.0.1':
- resolution: {integrity: sha512-dHwDmrtR/ln8UTHpaIavRSzeIk5+YZTBtLnKwDW3G2t6nAupCiQUvNzNoHBpik63fwUaJPtlnMzXbQrNFWssIA==}
+ '@smithy/middleware-serde@4.2.9':
+ resolution: {integrity: sha512-eMNiej0u/snzDvlqRGSN3Vl0ESn3838+nKyVfF2FKNXFbi4SERYT6PR392D39iczngbqqGG0Jl1DlCnp7tBbXQ==}
engines: {node: '>=18.0.0'}
- '@smithy/middleware-stack@4.0.2':
- resolution: {integrity: sha512-eSPVcuJJGVYrFYu2hEq8g8WWdJav3sdrI4o2c6z/rjnYDd3xH9j9E7deZQCzFn4QvGPouLngH3dQ+QVTxv5bOQ==}
+ '@smithy/middleware-stack@4.0.1':
+ resolution: {integrity: sha512-dHwDmrtR/ln8UTHpaIavRSzeIk5+YZTBtLnKwDW3G2t6nAupCiQUvNzNoHBpik63fwUaJPtlnMzXbQrNFWssIA==}
engines: {node: '>=18.0.0'}
'@smithy/middleware-stack@4.2.0':
resolution: {integrity: sha512-G5CJ//eqRd9OARrQu9MK1H8fNm2sMtqFh6j8/rPozhEL+Dokpvi1Og+aCixTuwDAGZUkJPk6hJT5jchbk/WCyg==}
engines: {node: '>=18.0.0'}
- '@smithy/node-config-provider@4.0.1':
- resolution: {integrity: sha512-8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ==}
+ '@smithy/middleware-stack@4.2.8':
+ resolution: {integrity: sha512-w6LCfOviTYQjBctOKSwy6A8FIkQy7ICvglrZFl6Bw4FmcQ1Z420fUtIhxaUZZshRe0VCq4kvDiPiXrPZAe8oRA==}
engines: {node: '>=18.0.0'}
- '@smithy/node-config-provider@4.1.1':
- resolution: {integrity: sha512-1slS5jf5icHETwl5hxEVBj+mh6B+LbVW4yRINsGtUKH+nxM5Pw2H59+qf+JqYFCHp9jssG4vX81f5WKnjMN3Vw==}
+ '@smithy/node-config-provider@4.0.1':
+ resolution: {integrity: sha512-8mRTjvCtVET8+rxvmzRNRR0hH2JjV0DFOmwXPrISmTIJEfnCBugpYYGAsCj8t41qd+RB5gbheSQ/6aKZCQvFLQ==}
engines: {node: '>=18.0.0'}
'@smithy/node-config-provider@4.3.0':
resolution: {integrity: sha512-5QgHNuWdT9j9GwMPPJCKxy2KDxZ3E5l4M3/5TatSZrqYVoEiqQrDfAq8I6KWZw7RZOHtVtCzEPdYz7rHZixwcA==}
engines: {node: '>=18.0.0'}
- '@smithy/node-http-handler@4.0.3':
- resolution: {integrity: sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==}
+ '@smithy/node-config-provider@4.3.8':
+ resolution: {integrity: sha512-aFP1ai4lrbVlWjfpAfRSL8KFcnJQYfTl5QxLJXY32vghJrDuFyPZ6LtUL+JEGYiFRG1PfPLHLoxj107ulncLIg==}
engines: {node: '>=18.0.0'}
- '@smithy/node-http-handler@4.0.4':
- resolution: {integrity: sha512-/mdqabuAT3o/ihBGjL94PUbTSPSRJ0eeVTdgADzow0wRJ0rN4A27EOrtlK56MYiO1fDvlO3jVTCxQtQmK9dZ1g==}
+ '@smithy/node-http-handler@4.0.3':
+ resolution: {integrity: sha512-dYCLeINNbYdvmMLtW0VdhW1biXt+PPCGazzT5ZjKw46mOtdgToQEwjqZSS9/EN8+tNs/RO0cEWG044+YZs97aA==}
engines: {node: '>=18.0.0'}
'@smithy/node-http-handler@4.3.0':
resolution: {integrity: sha512-RHZ/uWCmSNZ8cneoWEVsVwMZBKy/8123hEpm57vgGXA3Irf/Ja4v9TVshHK2ML5/IqzAZn0WhINHOP9xl+Qy6Q==}
engines: {node: '>=18.0.0'}
- '@smithy/property-provider@4.0.1':
- resolution: {integrity: sha512-o+VRiwC2cgmk/WFV0jaETGOtX16VNPp2bSQEzu0whbReqE1BMqsP2ami2Vi3cbGVdKu1kq9gQkDAGKbt0WOHAQ==}
+ '@smithy/node-http-handler@4.4.8':
+ resolution: {integrity: sha512-q9u+MSbJVIJ1QmJ4+1u+cERXkrhuILCBDsJUBAW1MPE6sFonbCNaegFuwW9ll8kh5UdyY3jOkoOGlc7BesoLpg==}
engines: {node: '>=18.0.0'}
- '@smithy/property-provider@4.0.2':
- resolution: {integrity: sha512-wNRoQC1uISOuNc2s4hkOYwYllmiyrvVXWMtq+TysNRVQaHm4yoafYQyjN/goYZS+QbYlPIbb/QRjaUZMuzwQ7A==}
+ '@smithy/property-provider@4.0.1':
+ resolution: {integrity: sha512-o+VRiwC2cgmk/WFV0jaETGOtX16VNPp2bSQEzu0whbReqE1BMqsP2ami2Vi3cbGVdKu1kq9gQkDAGKbt0WOHAQ==}
engines: {node: '>=18.0.0'}
'@smithy/property-provider@4.2.0':
resolution: {integrity: sha512-rV6wFre0BU6n/tx2Ztn5LdvEdNZ2FasQbPQmDOPfV9QQyDmsCkOAB0osQjotRCQg+nSKFmINhyda0D3AnjSBJw==}
engines: {node: '>=18.0.0'}
- '@smithy/protocol-http@5.0.1':
- resolution: {integrity: sha512-TE4cpj49jJNB/oHyh/cRVEgNZaoPaxd4vteJNB0yGidOCVR0jCw/hjPVsT8Q8FRmj8Bd3bFZt8Dh7xGCT+xMBQ==}
+ '@smithy/property-provider@4.2.8':
+ resolution: {integrity: sha512-EtCTbyIveCKeOXDSWSdze3k612yCPq1YbXsbqX3UHhkOSW8zKsM9NOJG5gTIya0vbY2DIaieG8pKo1rITHYL0w==}
engines: {node: '>=18.0.0'}
- '@smithy/protocol-http@5.1.0':
- resolution: {integrity: sha512-KxAOL1nUNw2JTYrtviRRjEnykIDhxc84qMBzxvu1MUfQfHTuBlCG7PA6EdVwqpJjH7glw7FqQoFxUJSyBQgu7g==}
+ '@smithy/protocol-http@5.0.1':
+ resolution: {integrity: sha512-TE4cpj49jJNB/oHyh/cRVEgNZaoPaxd4vteJNB0yGidOCVR0jCw/hjPVsT8Q8FRmj8Bd3bFZt8Dh7xGCT+xMBQ==}
engines: {node: '>=18.0.0'}
'@smithy/protocol-http@5.3.0':
resolution: {integrity: sha512-6POSYlmDnsLKb7r1D3SVm7RaYW6H1vcNcTWGWrF7s9+2noNYvUsm7E4tz5ZQ9HXPmKn6Hb67pBDRIjrT4w/d7Q==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-builder@4.0.1':
- resolution: {integrity: sha512-wU87iWZoCbcqrwszsOewEIuq+SU2mSoBE2CcsLwE0I19m0B2gOJr1MVjxWcDQYOzHbR1xCk7AcOBbGFUYOKvdg==}
+ '@smithy/protocol-http@5.3.8':
+ resolution: {integrity: sha512-QNINVDhxpZ5QnP3aviNHQFlRogQZDfYlCkQT+7tJnErPQbDhysondEjhikuANxgMsZrkGeiAxXy4jguEGsDrWQ==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-builder@4.0.2':
- resolution: {integrity: sha512-NTOs0FwHw1vimmQM4ebh+wFQvOwkEf/kQL6bSM1Lock+Bv4I89B3hGYoUEPkmvYPkDKyp5UdXJYu+PoTQ3T31Q==}
+ '@smithy/querystring-builder@4.0.1':
+ resolution: {integrity: sha512-wU87iWZoCbcqrwszsOewEIuq+SU2mSoBE2CcsLwE0I19m0B2gOJr1MVjxWcDQYOzHbR1xCk7AcOBbGFUYOKvdg==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-builder@4.2.0':
resolution: {integrity: sha512-Q4oFD0ZmI8yJkiPPeGUITZj++4HHYCW3pYBYfIobUCkYpI6mbkzmG1MAQQ3lJYYWj3iNqfzOenUZu+jqdPQ16A==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-parser@4.0.1':
- resolution: {integrity: sha512-Ma2XC7VS9aV77+clSFylVUnPZRindhB7BbmYiNOdr+CHt/kZNJoPP0cd3QxCnCFyPXC4eybmyE98phEHkqZ5Jw==}
+ '@smithy/querystring-builder@4.2.8':
+ resolution: {integrity: sha512-Xr83r31+DrE8CP3MqPgMJl+pQlLLmOfiEUnoyAlGzzJIrEsbKsPy1hqH0qySaQm4oWrCBlUqRt+idEgunKB+iw==}
engines: {node: '>=18.0.0'}
- '@smithy/querystring-parser@4.0.2':
- resolution: {integrity: sha512-v6w8wnmZcVXjfVLjxw8qF7OwESD9wnpjp0Dqry/Pod0/5vcEA3qxCr+BhbOHlxS8O+29eLpT3aagxXGwIoEk7Q==}
+ '@smithy/querystring-parser@4.0.1':
+ resolution: {integrity: sha512-Ma2XC7VS9aV77+clSFylVUnPZRindhB7BbmYiNOdr+CHt/kZNJoPP0cd3QxCnCFyPXC4eybmyE98phEHkqZ5Jw==}
engines: {node: '>=18.0.0'}
'@smithy/querystring-parser@4.2.0':
resolution: {integrity: sha512-BjATSNNyvVbQxOOlKse0b0pSezTWGMvA87SvoFoFlkRsKXVsN3bEtjCxvsNXJXfnAzlWFPaT9DmhWy1vn0sNEA==}
engines: {node: '>=18.0.0'}
- '@smithy/service-error-classification@4.0.1':
- resolution: {integrity: sha512-3JNjBfOWpj/mYfjXJHB4Txc/7E4LVq32bwzE7m28GN79+M1f76XHflUaSUkhOriprPDzev9cX/M+dEB80DNDKA==}
+ '@smithy/querystring-parser@4.2.8':
+ resolution: {integrity: sha512-vUurovluVy50CUlazOiXkPq40KGvGWSdmusa3130MwrR1UNnNgKAlj58wlOe61XSHRpUfIIh6cE0zZ8mzKaDPA==}
engines: {node: '>=18.0.0'}
- '@smithy/service-error-classification@4.0.3':
- resolution: {integrity: sha512-FTbcajmltovWMjj3tksDQdD23b2w6gH+A0DYA1Yz3iSpjDj8fmkwy62UnXcWMy4d5YoMoSyLFHMfkEVEzbiN8Q==}
+ '@smithy/service-error-classification@4.0.1':
+ resolution: {integrity: sha512-3JNjBfOWpj/mYfjXJHB4Txc/7E4LVq32bwzE7m28GN79+M1f76XHflUaSUkhOriprPDzev9cX/M+dEB80DNDKA==}
engines: {node: '>=18.0.0'}
'@smithy/service-error-classification@4.2.0':
resolution: {integrity: sha512-Ylv1ttUeKatpR0wEOMnHf1hXMktPUMObDClSWl2TpCVT4DwtJhCeighLzSLbgH3jr5pBNM0LDXT5yYxUvZ9WpA==}
engines: {node: '>=18.0.0'}
- '@smithy/shared-ini-file-loader@4.0.1':
- resolution: {integrity: sha512-hC8F6qTBbuHRI/uqDgqqi6J0R4GtEZcgrZPhFQnMhfJs3MnUTGSnR1NSJCJs5VWlMydu0kJz15M640fJlRsIOw==}
+ '@smithy/service-error-classification@4.2.8':
+ resolution: {integrity: sha512-mZ5xddodpJhEt3RkCjbmUQuXUOaPNTkbMGR0bcS8FE0bJDLMZlhmpgrvPNCYglVw5rsYTpSnv19womw9WWXKQQ==}
engines: {node: '>=18.0.0'}
- '@smithy/shared-ini-file-loader@4.0.2':
- resolution: {integrity: sha512-J9/gTWBGVuFZ01oVA6vdb4DAjf1XbDhK6sLsu3OS9qmLrS6KB5ygpeHiM3miIbj1qgSJ96GYszXFWv6ErJ8QEw==}
+ '@smithy/shared-ini-file-loader@4.0.1':
+ resolution: {integrity: sha512-hC8F6qTBbuHRI/uqDgqqi6J0R4GtEZcgrZPhFQnMhfJs3MnUTGSnR1NSJCJs5VWlMydu0kJz15M640fJlRsIOw==}
engines: {node: '>=18.0.0'}
'@smithy/shared-ini-file-loader@4.3.0':
resolution: {integrity: sha512-VCUPPtNs+rKWlqqntX0CbVvWyjhmX30JCtzO+s5dlzzxrvSfRh5SY0yxnkirvc1c80vdKQttahL71a9EsdolSQ==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.0.1':
- resolution: {integrity: sha512-nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA==}
+ '@smithy/shared-ini-file-loader@4.4.3':
+ resolution: {integrity: sha512-DfQjxXQnzC5UbCUPeC3Ie8u+rIWZTvuDPAGU/BxzrOGhRvgUanaP68kDZA+jaT3ZI+djOf+4dERGlm9mWfFDrg==}
engines: {node: '>=18.0.0'}
- '@smithy/signature-v4@5.1.0':
- resolution: {integrity: sha512-4t5WX60sL3zGJF/CtZsUQTs3UrZEDO2P7pEaElrekbLqkWPYkgqNW1oeiNYC6xXifBnT9dVBOnNQRvOE9riU9w==}
+ '@smithy/signature-v4@5.0.1':
+ resolution: {integrity: sha512-nCe6fQ+ppm1bQuw5iKoeJ0MJfz2os7Ic3GBjOkLOPtavbD1ONoyE3ygjBfz2ythFWm4YnRm6OxW+8p/m9uCoIA==}
engines: {node: '>=18.0.0'}
'@smithy/signature-v4@5.3.0':
resolution: {integrity: sha512-MKNyhXEs99xAZaFhm88h+3/V+tCRDQ+PrDzRqL0xdDpq4gjxcMmf5rBA3YXgqZqMZ/XwemZEurCBQMfxZOWq/g==}
engines: {node: '>=18.0.0'}
+ '@smithy/signature-v4@5.3.8':
+ resolution: {integrity: sha512-6A4vdGj7qKNRF16UIcO8HhHjKW27thsxYci+5r/uVRkdcBEkOEiY8OMPuydLX4QHSrJqGHPJzPRwwVTqbLZJhg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/smithy-client@4.1.6':
resolution: {integrity: sha512-UYDolNg6h2O0L+cJjtgSyKKvEKCOa/8FHYJnBobyeoeWDmNpXjwOAtw16ezyeu1ETuuLEOZbrynK0ZY1Lx9Jbw==}
engines: {node: '>=18.0.0'}
- '@smithy/smithy-client@4.2.5':
- resolution: {integrity: sha512-T3gA/TShe52Ln0ywWGVoDiqRvaxqvrU0CKRRmzT71/I1rRBD8mY85rvMMME6vw5RpBLJC9ADmXSLmpohF7RRhA==}
+ '@smithy/smithy-client@4.10.9':
+ resolution: {integrity: sha512-Je0EvGXVJ0Vrrr2lsubq43JGRIluJ/hX17aN/W/A0WfE+JpoMdI8kwk2t9F0zTX9232sJDGcoH4zZre6m6f/sg==}
engines: {node: '>=18.0.0'}
'@smithy/smithy-client@4.7.1':
@@ -2162,8 +2173,8 @@ packages:
resolution: {integrity: sha512-enhjdwp4D7CXmwLtD6zbcDMbo6/T6WtuuKCY49Xxc6OMOmUWlBEBDREsxxgV2LIdeQPW756+f97GzcgAwp3iLw==}
engines: {node: '>=18.0.0'}
- '@smithy/types@4.2.0':
- resolution: {integrity: sha512-7eMk09zQKCO+E/ivsjQv+fDlOupcFUCSC/L2YUPgwhvowVGWbPQHjEFcmjt7QQ4ra5lyowS92SV53Zc6XD4+fg==}
+ '@smithy/types@4.12.0':
+ resolution: {integrity: sha512-9YcuJVTOBDjg9LWo23Qp0lTQ3D7fQsQtwle0jVfpbUHy9qBwCEgKuVH4FqFB3VYu0nwdHKiEMA+oXz7oV8X1kw==}
engines: {node: '>=18.0.0'}
'@smithy/types@4.6.0':
@@ -2174,14 +2185,14 @@ packages:
resolution: {integrity: sha512-gPXcIEUtw7VlK8f/QcruNXm7q+T5hhvGu9tl63LsJPZ27exB6dtNwvh2HIi0v7JcXJ5emBxB+CJxwaLEdJfA+g==}
engines: {node: '>=18.0.0'}
- '@smithy/url-parser@4.0.2':
- resolution: {integrity: sha512-Bm8n3j2ScqnT+kJaClSVCMeiSenK6jVAzZCNewsYWuZtnBehEz4r2qP0riZySZVfzB+03XZHJeqfmJDkeeSLiQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/url-parser@4.2.0':
resolution: {integrity: sha512-AlBmD6Idav2ugmoAL6UtR6ItS7jU5h5RNqLMZC7QrLCoITA9NzIN3nx9GWi8g4z1pfWh2r9r96SX/jHiNwPJ9A==}
engines: {node: '>=18.0.0'}
+ '@smithy/url-parser@4.2.8':
+ resolution: {integrity: sha512-NQho9U68TGMEU639YkXnVMV3GEFFULmmaWdlu1E9qzyIePOHsoSnagTGSDv1Zi8DCNN6btxOSdgmy5E/hsZwhA==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-base64@4.0.0':
resolution: {integrity: sha512-CvHfCmO2mchox9kjrtzoHkWHxjHZzaFojLc8quxXY7WAAMAg43nuxwv95tATVgQFNDwd4M9S1qFzj40Ul41Kmg==}
engines: {node: '>=18.0.0'}
@@ -2226,10 +2237,6 @@ packages:
resolution: {integrity: sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-browser@4.0.13':
- resolution: {integrity: sha512-HCLfXAyTEpVWLuyxDABg8UQukeRwChL1UErpSQ4KJK2ZoadmXuQY68pTL9KcuEtasTkIjnzyLUL9vhLdJ3VFHQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-defaults-mode-browser@4.0.7':
resolution: {integrity: sha512-CZgDDrYHLv0RUElOsmZtAnp1pIjwDVCSuZWOPhIOBvG36RDfX1Q9+6lS61xBf+qqvHoqRjHxgINeQz47cYFC2Q==}
engines: {node: '>=18.0.0'}
@@ -2238,8 +2245,8 @@ packages:
resolution: {integrity: sha512-H4MAj8j8Yp19Mr7vVtGgi7noJjvjJbsKQJkvNnLlrIFduRFT5jq5Eri1k838YW7rN2g5FTnXpz5ktKVr1KVgPQ==}
engines: {node: '>=18.0.0'}
- '@smithy/util-defaults-mode-node@4.0.13':
- resolution: {integrity: sha512-lu8E2RyzKzzFbNu4ICmY/2HltMZlJxMNg3saJ+r8I9vWbWbwdX7GOWUJdP4fbjEOm6aa52mnnd+uIRrT3dNEyA==}
+ '@smithy/util-defaults-mode-browser@4.3.23':
+ resolution: {integrity: sha512-mMg+r/qDfjfF/0psMbV4zd7F/i+rpyp7Hjh0Wry7eY15UnzTEId+xmQTGDU8IdZtDfbGQxuWNfgBZKBj+WuYbA==}
engines: {node: '>=18.0.0'}
'@smithy/util-defaults-mode-node@4.0.7':
@@ -2250,18 +2257,22 @@ packages:
resolution: {integrity: sha512-PuDcgx7/qKEMzV1QFHJ7E4/MMeEjaA7+zS5UNcHCLPvvn59AeZQ0DSDGMpqC2xecfa/1cNGm4l8Ec/VxCuY7Ug==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-defaults-mode-node@4.2.26':
+ resolution: {integrity: sha512-EQqe/WkbCinah0h1lMWh9ICl0Ob4lyl20/10WTB35SC9vDQfD8zWsOT+x2FIOXKAoZQ8z/y0EFMoodbcqWJY/w==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-endpoints@3.0.1':
resolution: {integrity: sha512-zVdUENQpdtn9jbpD9SCFK4+aSiavRb9BxEtw9ZGUR1TYo6bBHbIoi7VkrFQ0/RwZlzx0wRBaRmPclj8iAoJCLA==}
engines: {node: '>=18.0.0'}
- '@smithy/util-endpoints@3.0.4':
- resolution: {integrity: sha512-VfFATC1bmZLV2858B/O1NpMcL32wYo8DPPhHxYxDCodDl3f3mSZ5oJheW1IF91A0EeAADz2WsakM/hGGPGNKLg==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-endpoints@3.2.0':
resolution: {integrity: sha512-TXeCn22D56vvWr/5xPqALc9oO+LN+QpFjrSM7peG/ckqEPoI3zaKZFp+bFwfmiHhn5MGWPaLCqDOJPPIixk9Wg==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-endpoints@3.2.8':
+ resolution: {integrity: sha512-8JaVTn3pBDkhZgHQ8R0epwWt+BqPSLCjdjXXusK1onwJlRuN69fbvSK66aIKKO7SwVFM6x2J2ox5X8pOaWcUEw==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-hex-encoding@4.0.0':
resolution: {integrity: sha512-Yk5mLhHtfIgW2W2WQZWSg5kuMZCVbvhFmC7rV4IO2QqnZdbEFPmQnCcGMAX2z/8Qj3B9hYYNjZOhWym+RwhePw==}
engines: {node: '>=18.0.0'}
@@ -2274,38 +2285,38 @@ packages:
resolution: {integrity: sha512-HiLAvlcqhbzhuiOa0Lyct5IIlyIz0PQO5dnMlmQ/ubYM46dPInB+3yQGkfxsk6Q24Y0n3/JmcA1v5iEhmOF5mA==}
engines: {node: '>=18.0.0'}
- '@smithy/util-middleware@4.0.2':
- resolution: {integrity: sha512-6GDamTGLuBQVAEuQ4yDQ+ti/YINf/MEmIegrEeg7DdB/sld8BX1lqt9RRuIcABOhAGTA50bRbPzErez7SlDtDQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-middleware@4.2.0':
resolution: {integrity: sha512-u9OOfDa43MjagtJZ8AapJcmimP+K2Z7szXn8xbty4aza+7P1wjFmy2ewjSbhEiYQoW1unTlOAIV165weYAaowA==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-middleware@4.2.8':
+ resolution: {integrity: sha512-PMqfeJxLcNPMDgvPbbLl/2Vpin+luxqTGPpW3NAQVLbRrFRzTa4rNAASYeIGjRV9Ytuhzny39SpyU04EQreF+A==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-retry@4.0.1':
resolution: {integrity: sha512-WmRHqNVwn3kI3rKk1LsKcVgPBG6iLTBGC1iYOV3GQegwJ3E8yjzHytPt26VNzOWr1qu0xE03nK0Ug8S7T7oufw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-retry@4.0.3':
- resolution: {integrity: sha512-DPuYjZQDXmKr/sNvy9Spu8R/ESa2e22wXZzSAY6NkjOLj6spbIje/Aq8rT97iUMdDj0qHMRIe+bTxvlU74d9Ng==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-retry@4.2.0':
resolution: {integrity: sha512-BWSiuGbwRnEE2SFfaAZEX0TqaxtvtSYPM/J73PFVm+A29Fg1HTPiYFb8TmX1DXp4hgcdyJcNQmprfd5foeORsg==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-retry@4.2.8':
+ resolution: {integrity: sha512-CfJqwvoRY0kTGe5AkQokpURNCT1u/MkRzMTASWMPPo2hNSnKtF1D45dQl3DE2LKLr4m+PW9mCeBMJr5mCAVThg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-stream@4.1.2':
resolution: {integrity: sha512-44PKEqQ303d3rlQuiDpcCcu//hV8sn+u2JBo84dWCE0rvgeiVl0IlLMagbU++o0jCWhYCsHaAt9wZuZqNe05Hw==}
engines: {node: '>=18.0.0'}
- '@smithy/util-stream@4.2.0':
- resolution: {integrity: sha512-Vj1TtwWnuWqdgQI6YTUF5hQ/0jmFiOYsc51CSMgj7QfyO+RF4EnT2HNjoviNlOOmgzgvf3f5yno+EiC4vrnaWQ==}
- engines: {node: '>=18.0.0'}
-
'@smithy/util-stream@4.5.0':
resolution: {integrity: sha512-0TD5M5HCGu5diEvZ/O/WquSjhJPasqv7trjoqHyWjNh/FBeBl7a0ztl9uFMOsauYtRfd8jvpzIAQhDHbx+nvZw==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-stream@4.5.10':
+ resolution: {integrity: sha512-jbqemy51UFSZSp2y0ZmRfckmrzuKww95zT9BYMmuJ8v3altGcqjwoV1tzpOwuHaKrwQrCjIzOib499ymr2f98g==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/util-uri-escape@4.0.0':
resolution: {integrity: sha512-77yfbCbQMtgtTylO9itEAdpPXSog3ZxMe09AEhm0dU0NLTalV70ghDZFR+Nfi1C60jnJoh/Re4090/DuZh2Omg==}
engines: {node: '>=18.0.0'}
@@ -2334,6 +2345,10 @@ packages:
resolution: {integrity: sha512-0Z+nxUU4/4T+SL8BCNN4ztKdQjToNvUYmkF1kXO5T7Yz3Gafzh0HeIG6mrkN8Fz3gn9hSyxuAT+6h4vM+iQSBQ==}
engines: {node: '>=18.0.0'}
+ '@smithy/util-waiter@4.2.8':
+ resolution: {integrity: sha512-n+lahlMWk+aejGuax7DPWtqav8HYnWxQwR+LCG2BgCUmaGcTe9qZCFsmw8TMg9iG75HOwhrJCX9TCJRLH+Yzqg==}
+ engines: {node: '>=18.0.0'}
+
'@smithy/uuid@1.1.0':
resolution: {integrity: sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==}
engines: {node: '>=18.0.0'}
@@ -2358,9 +2373,6 @@ packages:
'@tootallnate/quickjs-emscripten@0.23.0':
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
- '@tsclass/tsclass@3.0.48':
- resolution: {integrity: sha512-hC65UvDlp9qvsl6OcIZXz0JNiWZ0gyzsTzbXpg215sGxopgbkOLCr6E0s4qCTnweYm95gt2AdY95uP7M7kExaQ==}
-
'@tsclass/tsclass@4.4.0':
resolution: {integrity: sha512-/T3qmxj28yRMM+0x9UtyBmrsJ66flviQEDg3M4kwmWuZQgbrDACa6JXdA0ieqfmuPOXDJRRDKcyKaKvKi2EdwA==}
@@ -2376,66 +2388,30 @@ packages:
'@tsclass/tsclass@9.3.0':
resolution: {integrity: sha512-KD3oTUN3RGu67tgjNHgWWZGsdYipr1RUDxQ9MMKSgIJ6oNZ4q5m2rg0ibrgyHWkAjTPlHVa6kHP3uVOY+8bnHw==}
- '@tybys/wasm-util@0.10.0':
- resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
-
- '@types/accepts@1.3.7':
- resolution: {integrity: sha512-Pay9fq2lM2wXPWbteBsRAGiWH2hig4ZE2asK+mm7kUzlxRTfL961rj89I6zV/E3PcIkDqyuBEcMxFT7rccugeQ==}
-
- '@types/babel__code-frame@7.0.6':
- resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
+ '@tybys/wasm-util@0.10.1':
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
'@types/bn.js@5.2.0':
resolution: {integrity: sha512-DLbJ1BPqxvQhIGbeu8VbUC1DiAiahHtAYvA0ZEAa4P31F7IaArc8z3C3BRQdWX4mtLQuABG4yzp76ZrS02Ui1Q==}
- '@types/body-parser@1.19.5':
- resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
-
'@types/body-parser@1.19.6':
resolution: {integrity: sha512-HLFeCYgz89uk22N5Qg3dvGvsv46B8GLvKKo1zKG4NybA8U2DiEO3w9lqGg29t/tfLRJpJ6iQxnVw4OnB7MoM9g==}
'@types/buffer-json@2.0.3':
resolution: {integrity: sha512-ItD4UfF3Q5jA+PEV6ZUWEHvlWaXJbd0rpuBKOIrEebM053FHaJddKsgUf0vy7nLSTs44nqFj3Mh8J3TiT0xv4g==}
- '@types/chai-dom@1.11.3':
- resolution: {integrity: sha512-EUEZI7uID4ewzxnU7DJXtyvykhQuwe+etJ1wwOiJyQRTH/ifMWKX+ghiXkxCUvNJ6IQDodf0JXhuP6zZcy2qXQ==}
-
- '@types/chai@4.3.20':
- resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
-
- '@types/chai@5.0.1':
- resolution: {integrity: sha512-5T8ajsg3M/FOncpLYW7sdOcD6yf4+722sze/tc4KQV0P8Z2rAr3SAuHCIkYmYpt8VbcQlnz8SxlOlPQYefe4cA==}
-
'@types/clean-css@4.2.11':
resolution: {integrity: sha512-Y8n81lQVTAfP2TOdtJJEsCoYl1AnOkqDqMvXb9/7pfgZZ7r8YrEyurrAvAoAjHOGXKRybay+5CsExqIH6liccw==}
- '@types/co-body@6.1.3':
- resolution: {integrity: sha512-UhuhrQ5hclX6UJctv5m4Rfp52AfG9o9+d9/HwjxhVB5NjXxr5t9oKgJxN8xRHgr35oo8meUEHUPFWiKg6y71aA==}
-
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
- '@types/content-disposition@0.5.8':
- resolution: {integrity: sha512-QVSSvno3dE0MgO76pJhmv4Qyi/j0Yk9pBp0Y7TJ2Tlj+KCgJWY6qX7nnxCOLkZ3VYRSIk1WTxCvwUSdx6CCLdg==}
-
- '@types/convert-source-map@2.0.3':
- resolution: {integrity: sha512-ag0BfJLZf6CQz8VIuRIEYQ5Ggwk/82uvTQf27RcpyDNbY0Vw49LIPqAxk5tqYfrCs9xDaIMvl4aj7ZopnYL8bA==}
-
- '@types/cookies@0.9.0':
- resolution: {integrity: sha512-40Zk8qR147RABiQ7NQnBzWzDcjKzNrntB5BAmeGCb2p/MIyOE+4BVvc17wumsUqUw00bJYqoXFHYygQnEFh4/Q==}
-
'@types/cors@2.8.19':
resolution: {integrity: sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==}
- '@types/debounce@1.2.4':
- resolution: {integrity: sha512-jBqiORIzKDOToaF63Fm//haOCHuwQuLa2202RK4MozpA6lh93eCBc+/8+wZn5OzjJt3ySdc+74SXWXB55Ewtyw==}
-
'@types/debug@4.1.12':
resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
- '@types/deep-eql@4.0.2':
- resolution: {integrity: sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==}
-
'@types/default-gateway@7.2.2':
resolution: {integrity: sha512-35C93fYQlnLKLASkMPoxRvok4fENwB3By9clRLd2I/08n/XRl0pCdf7EB17K5oMMwZu8NBYA8i66jH5r/LYBKA==}
@@ -2445,18 +2421,15 @@ packages:
'@types/elliptic@6.4.18':
resolution: {integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==}
- '@types/express-serve-static-core@5.0.6':
- resolution: {integrity: sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==}
-
'@types/express-serve-static-core@5.0.7':
resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==}
- '@types/express@5.0.0':
- resolution: {integrity: sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==}
-
'@types/express@5.0.3':
resolution: {integrity: sha512-wGA0NX93b19/dZC1J18tKWVIYWyyF2ZjT9vin/NRu0qzzvfVzWjs04iq2rQ3H65vCTQYlRqs3YHfY7zjdV+9Kw==}
+ '@types/express@5.0.6':
+ resolution: {integrity: sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==}
+
'@types/fast-json-stable-stringify@2.1.2':
resolution: {integrity: sha512-vsxcbfLDdjytnCnHXtinE40Xl46Wr7l/VGRGt7ewJwCPMKEHOdEsTxXX8xwgoR7cbc+6dE8SB4jlMrOV2zAg7g==}
deprecated: This is a stub types definition. fast-json-stable-stringify provides its own type definitions, so you do not need this installed.
@@ -2473,30 +2446,15 @@ packages:
'@types/hast@3.0.4':
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
- '@types/html-minifier@4.0.5':
- resolution: {integrity: sha512-LfE7f7MFd+YUfZnlBz8W43P4NgSObWiqyKapANsWCj63Aqeqli8/9gVsGP4CwC8jPpTTYlTopKCk9rJSuht/ew==}
-
- '@types/http-assert@1.5.6':
- resolution: {integrity: sha512-TTEwmtjgVbYAzZYWyeHPrrtWnfVkm8tQkP8P21uQifPgMRgjrow3XDEYqucuC8SKZJT7pUnhU/JymvjggxO9vw==}
+ '@types/html-minifier@4.0.6':
+ resolution: {integrity: sha512-1Dcf38DkVMYo8SIOkUka7GxI+0BztCVsnfiG2Sxb6G8ShHDQTWQb1WKps/eb3O074HNDCn8wU7LMl5N99nNG+Q==}
'@types/http-cache-semantics@4.0.4':
resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
- '@types/http-errors@2.0.4':
- resolution: {integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==}
-
'@types/http-errors@2.0.5':
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
- '@types/istanbul-lib-coverage@2.0.6':
- resolution: {integrity: sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==}
-
- '@types/istanbul-lib-report@3.0.3':
- resolution: {integrity: sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==}
-
- '@types/istanbul-reports@3.0.4':
- resolution: {integrity: sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==}
-
'@types/js-yaml@3.12.10':
resolution: {integrity: sha512-/Mtaq/wf+HxXpvhzFYzrzCqNRcA958sW++7JOFC8nPrZcvfi/TrzOaaGbvt27ltJB2NQbHVAg5a1wUCsyMH7NA==}
@@ -2506,15 +2464,6 @@ packages:
'@types/jsonfile@6.1.4':
resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
- '@types/keygrip@1.0.6':
- resolution: {integrity: sha512-lZuNAY9xeJt7Bx4t4dx0rYCDqGPW8RXhQZK1td7d4H6E9zYbLoOtjBvfwdTKpsyxQI/2jv+armjX/RW+ZNpXOQ==}
-
- '@types/koa-compose@3.2.8':
- resolution: {integrity: sha512-4Olc63RY+MKvxMwVknCUDhRQX1pFQoBZ/lXcRLP69PQkEpze/0cr8LNqJQe5NFb/b19DWi2a5bTi2VAlQzhJuA==}
-
- '@types/koa@2.15.0':
- resolution: {integrity: sha512-7QFsywoE5URbuVnG3loe03QXuGajrnotr3gQkXcEBShORai23MePfFYdhz90FEtBBpkyIYQbVD+evKtloCgX3g==}
-
'@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
@@ -2533,6 +2482,9 @@ packages:
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
+ '@types/mute-stream@0.0.4':
+ resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==}
+
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
@@ -2542,18 +2494,12 @@ packages:
'@types/node@22.15.17':
resolution: {integrity: sha512-wIX2aSZL5FE+MR0JlvF87BNVrtFWf6AE6rxSE9X7OwnVvoyCQjpzSRJ+M87se/4QCkCiebQAqrJ0y6fwIyi7nw==}
- '@types/parse5@6.0.3':
- resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==}
-
'@types/ping@0.4.4':
resolution: {integrity: sha512-ifvo6w2f5eJYlXm+HiVx67iJe8WZp87sfa683nlqED5Vnt9Z93onkokNoWqOG21EaE8fMxyKPobE+mkPEyxsdw==}
'@types/qs@6.14.0':
resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
- '@types/qs@6.9.18':
- resolution: {integrity: sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==}
-
'@types/randomatic@3.1.5':
resolution: {integrity: sha512-VCwCTw6qh1pRRw+5rNTAwqPmf6A+hdrkdM7dBpZVmhl7g+em3ONXlYK/bWPVKqVGMWgP0d1bog8Vc/X6zRwRRQ==}
@@ -2563,35 +2509,17 @@ packages:
'@types/relateurl@0.2.33':
resolution: {integrity: sha512-bTQCKsVbIdzLqZhLkF5fcJQreE4y1ro4DIyVrlDNSCJRRwHhB8Z+4zXXa8jN6eDvc2HbRsEYgbvrnGvi54EpSw==}
- '@types/s3rver@3.7.4':
- resolution: {integrity: sha512-CMCmdNszxS2FsIznWvBMVCl6fpvr5ueaFCaY0iSoH7Ud5maGcLghukpDvsXBnIcp92cv2HeVnVqI1p8yPcab9Q==}
-
'@types/semver@7.7.1':
resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
- '@types/send@0.17.4':
- resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
-
'@types/send@0.17.5':
resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}
- '@types/serve-static@1.15.7':
- resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
-
'@types/serve-static@1.15.8':
resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==}
- '@types/sinon-chai@3.2.12':
- resolution: {integrity: sha512-9y0Gflk3b0+NhQZ/oxGtaAJDvRywCa5sIyaVnounqLvmf93yBF4EgIRspePtkMs3Tr844nCclYMlcCNmLCvjuQ==}
-
- '@types/sinon@17.0.4':
- resolution: {integrity: sha512-RHnIrhfPO3+tJT0s7cFaXGZvsL4bbR3/k7z3P312qMS4JaS2Tk+KiwiLx1S0rQ56ERj00u1/BtdyVd0FY+Pdew==}
-
- '@types/sinonjs__fake-timers@8.1.5':
- resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==}
-
- '@types/stack-utils@2.0.3':
- resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+ '@types/serve-static@2.2.0':
+ resolution: {integrity: sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==}
'@types/symbol-tree@3.2.5':
resolution: {integrity: sha512-zXnnyENt1TYQcS21MkPaJCVjfcPq7p7yc5mo5JACuumXp6sly5jnlS0IokHd+xmmuCbx6V7JqkMBpswR+nZAcw==}
@@ -2602,9 +2530,6 @@ packages:
'@types/through2@2.0.41':
resolution: {integrity: sha512-ryQ0tidWkb1O1JuYvWKyMLYEtOWDqF5mHerJzKz/gQpoAaJq2l/dsMPBF0B5BNVT34rbARYJ5/tsZwLfUi2kwQ==}
- '@types/triple-beam@1.3.5':
- resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
-
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
@@ -2632,44 +2557,18 @@ packages:
'@types/which@3.0.4':
resolution: {integrity: sha512-liyfuo/106JdlgSchJzXEQCVArk0CvevqPote8F8HgWgJ3dRCcTHgJIsLDuee0kxk/mhbInzIZk3QWSZJ8R+2w==}
- '@types/ws@7.4.7':
- resolution: {integrity: sha512-JQbbmxZTZehdc2iszGKs5oC3NFnjeay7mtAWrdt7qNtAVK0g19muApzAy4bm9byz79xa2ZnO/BOBC2R8RC5Lww==}
+ '@types/wrap-ansi@3.0.0':
+ resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==}
'@types/ws@8.18.1':
resolution: {integrity: sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==}
- '@types/yargs-parser@21.0.3':
- resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
-
- '@types/yargs@17.0.33':
- resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
-
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
'@ungap/structured-clone@1.3.0':
resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
- '@web/browser-logs@0.4.1':
- resolution: {integrity: sha512-ypmMG+72ERm+LvP+loj9A64MTXvWMXHUOu773cPO4L1SV/VWg6xA9Pv7vkvkXQX+ItJtCJt+KQ+U6ui2HhSFUw==}
- engines: {node: '>=18.0.0'}
-
- '@web/dev-server-core@0.7.5':
- resolution: {integrity: sha512-Da65zsiN6iZPMRuj4Oa6YPwvsmZmo5gtPWhW2lx3GTUf5CAEapjVpZVlUXnKPL7M7zRuk72jSsIl8lo+XpTCtw==}
- engines: {node: '>=18.0.0'}
-
- '@web/parse5-utils@2.1.0':
- resolution: {integrity: sha512-GzfK5disEJ6wEjoPwx8AVNwUe9gYIiwc+x//QYxYDAFKUp4Xb1OJAGLc2l2gVrSQmtPGLKrTRcW90Hv4pEq1qA==}
- engines: {node: '>=18.0.0'}
-
- '@web/test-runner-commands@0.9.0':
- resolution: {integrity: sha512-zeLI6QdH0jzzJMDV5O42Pd8WLJtYqovgdt0JdytgHc0d1EpzXDsc7NTCJSImboc2NcayIsWAvvGGeRF69SMMYg==}
- engines: {node: '>=18.0.0'}
-
- '@web/test-runner-core@0.13.4':
- resolution: {integrity: sha512-84E1025aUSjvZU1j17eCTwV7m5Zg3cZHErV3+CaJM9JPCesZwLraIa0ONIQ9w4KLgcDgJFw9UnJ0LbFf42h6tg==}
- engines: {node: '>=18.0.0'}
-
abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
@@ -2706,34 +2605,18 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.1.0:
- resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
- engines: {node: '>=12'}
-
ansi-regex@6.2.2:
resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
- ansi-styles@3.2.1:
- resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
- engines: {node: '>=4'}
-
ansi-styles@4.3.0:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- ansi-styles@5.2.0:
- resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
- engines: {node: '>=10'}
-
ansi-styles@6.2.3:
resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
- ansis@4.1.0:
- resolution: {integrity: sha512-BGcItUBWSMRgOCe+SVZJ+S7yTRG0eGt9cXAHev72yuGcY23hnLA7Bky5L/xLyPINoSN95geovfBkqoTlNZYa7w==}
- engines: {node: '>=14'}
-
any-base@1.1.0:
resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==}
@@ -2743,10 +2626,6 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- array-union@2.1.0:
- resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
- engines: {node: '>=8'}
-
asn1js@3.0.6:
resolution: {integrity: sha512-UOCGPYbl0tv8+006qks/dTgV9ajs97X2p0FAbyS2iyCRrmLSRolDaHdp+v/CLgnzHc3fVB+CwYiUmei7ndFcgA==}
engines: {node: '>=12.0.0'}
@@ -2755,16 +2634,9 @@ packages:
resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
engines: {node: '>=4'}
- astral-regex@2.0.0:
- resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
- engines: {node: '>=8'}
-
async-mutex@0.5.0:
resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==}
- async@3.2.6:
- resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==}
-
asynckit@0.4.0:
resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=}
@@ -2772,10 +2644,6 @@ packages:
resolution: {integrity: sha512-zJAaP9zxTcvTHRlejau3ZOY4V7SRpiByf3/dxx2uyKxxor19tpmpV2QRsTKikckwhaPmr2dVpxxMr7jOCYVp5g==}
engines: {node: '>=6.0.0'}
- axe-core@4.10.2:
- resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==}
- engines: {node: '>=4'}
-
axios@1.12.2:
resolution: {integrity: sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==}
@@ -2846,10 +2714,6 @@ packages:
brace-expansion@2.0.1:
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
- braces@3.0.3:
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
- engines: {node: '>=8'}
-
broadcast-channel@7.1.0:
resolution: {integrity: sha512-InJljddsYWbEL8LBnopnCg+qMQp9KcowvYWOt4YWrjD5HmxzDYKdVbDS1w/ji5rFZdRD58V5UxJPtBdpEbEJYw==}
@@ -2876,18 +2740,10 @@ packages:
buffer@6.0.3:
resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
- busboy@0.3.1:
- resolution: {integrity: sha512-y7tTxhGKXcyBxRKAni+awqx8uqaJKrSFSNFSeRG5CsWNdmy2BIK+6VGWEW7TZnIO/533mtMEA4rOevQV815YJw==}
- engines: {node: '>=4.5.0'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- cache-content-type@1.0.1:
- resolution: {integrity: sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==}
- engines: {node: '>= 6.0.0'}
-
cacheable-lookup@7.0.0:
resolution: {integrity: sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==}
engines: {node: '>=14.16'}
@@ -2922,21 +2778,6 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
- chai-a11y-axe@1.5.0:
- resolution: {integrity: sha512-V/Vg/zJDr9aIkaHJ2KQu7lGTQQm5ZOH4u1k5iTMvIXuSVlSuUo0jcSpSqf9wUn9zl6oQXa4e4E0cqH18KOgKlQ==}
-
- chalk@2.4.2:
- resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
- engines: {node: '>=4'}
-
- chalk@4.1.2:
- resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
- engines: {node: '>=10'}
-
- chalk@5.4.1:
- resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
- engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
-
character-entities-html4@2.1.0:
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
@@ -2946,6 +2787,9 @@ 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==}
+
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
@@ -2955,10 +2799,6 @@ packages:
peerDependencies:
devtools-protocol: '*'
- ci-info@3.9.0:
- resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
- engines: {node: '>=8'}
-
clean-css@4.2.4:
resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
engines: {node: '>= 4.0'}
@@ -2967,17 +2807,9 @@ packages:
resolution: {integrity: sha1-noIVAa6XmYbEax1m0tQy2y/UrjE=}
engines: {node: '>=4'}
- cli-cursor@3.1.0:
- resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
- engines: {node: '>=8'}
-
- cli-cursor@5.0.0:
- resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==}
- engines: {node: '>=18'}
-
- cli-spinners@2.9.2:
- resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
- engines: {node: '>=6'}
+ 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==}
@@ -2987,44 +2819,20 @@ packages:
resolution: {integrity: sha512-ujdnoq2Kxb8s3ItNBtnYeXdm07FcU0u8ARAT1lQ2YdMwQC+cdiXX8KoqMVuglztILivceTtp4ivqGSmEmhBUJw==}
engines: {node: '>=12'}
- clone@2.1.2:
- resolution: {integrity: sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=}
- engines: {node: '>=0.8'}
-
- co-body@6.2.0:
- resolution: {integrity: sha512-Kbpv2Yd1NdL1V/V4cwLVxraHDV6K8ayohr2rmH0J87Er8+zJjcTa6dAn9QMPC9CRgU8+aNajKbSf1TzDB1yKPA==}
- engines: {node: '>=8.0.0'}
-
- co@4.6.0:
- resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=}
- engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
-
- color-convert@1.9.3:
- resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
-
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
- color-name@1.1.3:
- resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=}
-
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
color-string@1.9.1:
resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
- color@3.2.1:
- resolution: {integrity: sha512-aBl7dZI9ENN6fUGC7mWpMTPNHmWUSNan9tuWN6ahh5ZLNk9baLJOnSMlrQkHcrfFgz2/RigjUVAjdx36VcemKA==}
-
color@4.2.3:
resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
engines: {node: '>=12.5.0'}
- colorspace@1.1.4:
- resolution: {integrity: sha512-BgvKJiuVu1igBUF2kEjRCZXol6wiiGbY5ipL/oVPwm0BL9sIpMIzM8IK7vwuxIIzOXMV3Ey5w+vxhm0rR/TN8w==}
-
combined-stream@1.0.8:
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
engines: {node: '>= 0.8'}
@@ -3035,10 +2843,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@5.1.0:
- resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==}
- engines: {node: '>= 6'}
-
commondir@1.0.1:
resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=}
@@ -3048,10 +2852,6 @@ packages:
config-chain@1.1.13:
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
- content-disposition@0.5.4:
- resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
- engines: {node: '>= 0.6'}
-
content-disposition@1.0.0:
resolution: {integrity: sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==}
engines: {node: '>= 0.6'}
@@ -3064,9 +2864,6 @@ packages:
resolution: {integrity: sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==}
engines: {node: '>=12'}
- convert-source-map@2.0.0:
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
-
cookie-signature@1.2.2:
resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
engines: {node: '>=6.6.0'}
@@ -3075,10 +2872,6 @@ packages:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
- cookies@0.9.1:
- resolution: {integrity: sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==}
- engines: {node: '>= 0.8'}
-
cors@2.8.5:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
@@ -3121,17 +2914,6 @@ packages:
dayjs@1.11.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
- debounce@1.2.1:
- resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
-
- debug@3.2.7:
- resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
debug@4.3.7:
resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
@@ -3175,17 +2957,10 @@ packages:
resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==}
engines: {node: '>=10'}
- deep-equal@1.0.1:
- resolution: {integrity: sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=}
-
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
- default-gateway@6.0.3:
- resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==}
- engines: {node: '>= 10'}
-
defer-to-connect@2.0.1:
resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
engines: {node: '>=10'}
@@ -3210,29 +2985,14 @@ packages:
resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=}
engines: {node: '>=0.4.0'}
- delegates@1.0.0:
- resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=}
-
- depd@1.1.2:
- resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=}
- engines: {node: '>= 0.6'}
-
depd@2.0.0:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- dependency-graph@0.11.0:
- resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==}
- engines: {node: '>= 0.6.0'}
-
dequal@2.0.3:
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
engines: {node: '>=6'}
- destroy@1.2.0:
- resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
- engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
-
detect-libc@2.0.4:
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
engines: {node: '>=8'}
@@ -3243,18 +3003,6 @@ packages:
devtools-protocol@0.0.1402036:
resolution: {integrity: sha512-JwAYQgEvm3yD45CHB+RmF5kMbWtXBaOGwuxa87sZogHcLCv8c/IqnThaoQ1y60d7pXWjSKWQphPEc+1rAScVdg==}
- dicer@0.3.0:
- resolution: {integrity: sha512-MdceRRWqltEG2dZqO769g27N/3PXfcKl04VhYnBlo2YhH7zPi88VebsjTKclaOyiuMaGU72hTfw3VkUitGcVCA==}
- engines: {node: '>=4.5.0'}
-
- diff-sequences@29.6.3:
- resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- dir-glob@3.0.1:
- resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
- engines: {node: '>=8'}
-
dns-packet@5.6.1:
resolution: {integrity: sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==}
engines: {node: '>=6'}
@@ -3276,22 +3024,12 @@ packages:
elliptic@6.6.1:
resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==}
- emoji-regex@10.4.0:
- resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==}
-
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- enabled@2.0.0:
- resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
-
- encodeurl@1.0.2:
- resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=}
- engines: {node: '>= 0.8'}
-
encodeurl@2.0.0:
resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
engines: {node: '>= 0.8'}
@@ -3310,9 +3048,6 @@ packages:
resolution: {integrity: sha512-ZCkIjSYNDyGn0R6ewHDtXgns/Zre/NT6Agvq1/WobF7JXgFff4SeDroKiCO3fNJreU9YG429Sc81o4w5ok/W5g==}
engines: {node: '>=10.2.0'}
- entities@2.2.0:
- resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==}
-
entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'}
@@ -3324,9 +3059,6 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- errorstacks@2.4.1:
- resolution: {integrity: sha512-jE4i0SMYevwu/xxAuzhly/KTwtj0xDhbzB6m1xPImxTkw8wcCbgarOQPfCVMi5JKVyW7in29pNJCCJrry3Ynnw==}
-
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -3335,9 +3067,6 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.6.0:
- resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
-
es-object-atoms@1.1.1:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
@@ -3346,13 +3075,8 @@ packages:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- esbuild@0.25.0:
- resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
- engines: {node: '>=18'}
- hasBin: true
-
- esbuild@0.25.8:
- resolution: {integrity: sha512-vVC0USHGtMi8+R4Kz8rt6JhEWLxsv9Rnu/lGYbPR8u47B+DCBksq9JarW0zOO7bs37hyOK1l2/oqtbciutL5+Q==}
+ esbuild@0.27.2:
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
engines: {node: '>=18'}
hasBin: true
@@ -3363,14 +3087,6 @@ packages:
escape-html@1.0.3:
resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=}
- escape-string-regexp@1.0.5:
- resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=}
- engines: {node: '>=0.8.0'}
-
- escape-string-regexp@2.0.0:
- resolution: {integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==}
- engines: {node: '>=8'}
-
escape-string-regexp@4.0.0:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
@@ -3416,17 +3132,9 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- execa@5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
-
exif-parser@0.1.12:
resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==}
- expect@29.7.0:
- resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
express-force-ssl@0.3.2:
resolution: {integrity: sha1-AbK0mK5v0uQRUrIrV6Phc3c69n4=}
engines: {node: '>=0.2.2'}
@@ -3438,6 +3146,10 @@ packages:
extend@3.0.2:
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
+ external-editor@3.1.0:
+ resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
+ engines: {node: '>=4'}
+
extract-zip@2.0.1:
resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==}
engines: {node: '>= 10.17.0'}
@@ -3457,17 +3169,9 @@ packages:
fast-fifo@1.3.2:
resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==}
- fast-glob@3.3.3:
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
- engines: {node: '>=8.6.0'}
-
fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
- fast-xml-parser@3.21.1:
- resolution: {integrity: sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==}
- hasBin: true
-
fast-xml-parser@4.4.1:
resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
hasBin: true
@@ -3480,8 +3184,9 @@ packages:
resolution: {integrity: sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==}
hasBin: true
- fastq@1.19.0:
- resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
+ fast-xml-parser@5.3.3:
+ resolution: {integrity: sha512-2O3dkPAAC6JavuMm8+4+pgTk+5hoAs+CjZ+sWcQLkX9+/tHRuTkQh/Oaifr8qDmZ8iEHb771Ea6G8CdwkrgvYA==}
+ hasBin: true
fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
@@ -3489,13 +3194,6 @@ packages:
fd-slicer@1.1.0:
resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=}
- fecha@4.2.3:
- resolution: {integrity: sha512-OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw==}
-
- feed@4.2.2:
- resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
- engines: {node: '>=0.4.0'}
-
fflate@0.8.2:
resolution: {integrity: sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==}
@@ -3515,10 +3213,6 @@ packages:
resolution: {integrity: sha512-ek5xNX2YBYlXhiUXui3D/BXa3LdqPmoLJ7rqEx2bKJ7EAUEfmXgW0Das7Dc6Nr9MvqaOnIqiPV0mZk/r/UpNAg==}
engines: {node: '>=20'}
- fill-range@7.1.1:
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
- engines: {node: '>=8'}
-
finalhandler@2.1.0:
resolution: {integrity: sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==}
engines: {node: '>= 0.8'}
@@ -3531,9 +3225,6 @@ packages:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
- fn.name@1.1.0:
- resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
-
follow-redirects@1.15.11:
resolution: {integrity: sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==}
engines: {node: '>=4.0'}
@@ -3543,15 +3234,6 @@ packages:
debug:
optional: true
- follow-redirects@1.15.9:
- resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
- engines: {node: '>=4.0'}
- peerDependencies:
- debug: '*'
- peerDependenciesMeta:
- debug:
- optional: true
-
foreground-child@2.0.0:
resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==}
engines: {node: '>=8.0.0'}
@@ -3572,6 +3254,10 @@ packages:
resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
engines: {node: '>= 6'}
+ form-data@4.0.5:
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
+ engines: {node: '>= 6'}
+
format@0.2.2:
resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=}
engines: {node: '>=0.4.x'}
@@ -3580,10 +3266,6 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
- fresh@0.5.2:
- resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=}
- engines: {node: '>= 0.6'}
-
fresh@2.0.0:
resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
engines: {node: '>= 0.8'}
@@ -3596,10 +3278,6 @@ packages:
resolution: {integrity: sha512-Xr9F6z6up6Ws+NjzMCZc6WXg2YFRlrLP9NQDO3VQrWrfiojdhS56TzueT88ze0uBdCTwEIhQ3ptnmKeWGFAe0A==}
engines: {node: '>=14.14'}
- fs-extra@8.1.0:
- resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
- engines: {node: '>=6 <7 || >=8'}
-
fs.realpath@1.0.0:
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
@@ -3619,10 +3297,6 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.0:
- resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==}
- engines: {node: '>=18'}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
@@ -3653,10 +3327,6 @@ packages:
gifwrap@0.10.1:
resolution: {integrity: sha512-2760b1vpJHNmLzZ/ubTtNnEx5WApN/PYWJvXvgS+tL1egTTthayFYIQQNi136FLEDcN/IyEY2EcGpIITD6eYUw==}
- glob-parent@5.1.2:
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
- engines: {node: '>= 6'}
-
glob@11.0.3:
resolution: {integrity: sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==}
engines: {node: 20 || >=22}
@@ -3665,10 +3335,6 @@ packages:
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- globby@11.1.0:
- resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
- engines: {node: '>=10'}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -3691,14 +3357,6 @@ packages:
resolution: {integrity: sha512-KyrFvnl+J9US63TEzwoiJOQzZBJY7KgBushJA8X61DMbNsH+2ONkDuLDnCnwUiPTF42tLoEmrPyoqbenVA5zrg==}
engines: {node: '>=18.0.0'}
- has-flag@3.0.0:
- resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=}
- engines: {node: '>=4'}
-
- has-flag@4.0.0:
- resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
- engines: {node: '>=8'}
-
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -3733,9 +3391,6 @@ packages:
hmac-drbg@1.0.1:
resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=}
- html-escaper@2.0.2:
- resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==}
-
html-minifier@4.0.0:
resolution: {integrity: sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==}
engines: {node: '>=6'}
@@ -3744,21 +3399,9 @@ packages:
html-void-elements@3.0.0:
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
- http-assert@1.5.0:
- resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==}
- engines: {node: '>= 0.8'}
-
http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
- http-errors@1.6.3:
- resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=}
- engines: {node: '>= 0.6'}
-
- http-errors@1.8.1:
- resolution: {integrity: sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==}
- engines: {node: '>= 0.6'}
-
http-errors@2.0.0:
resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==}
engines: {node: '>= 0.8'}
@@ -3775,16 +3418,9 @@ packages:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
- human-signals@2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
-
humanize-ms@1.2.1:
resolution: {integrity: sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=}
- humanize-number@0.0.2:
- resolution: {integrity: sha1-EcCvakcWQ2M1iFiASPF5lUFInBg=}
-
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -3796,10 +3432,6 @@ packages:
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'}
-
image-q@4.0.0:
resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==}
@@ -3807,34 +3439,23 @@ packages:
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
- inflation@2.1.0:
- resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==}
- engines: {node: '>= 0.8.0'}
-
inflight@1.0.6:
resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
- inherits@2.0.3:
- resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- internal-ip@6.2.0:
- resolution: {integrity: sha512-D8WGsR6yDt8uq7vDMu7mjcR+yRMm3dW8yufyChmszWRjcSHuxLBkR3GdS2HZAjodsaGuCvXeEJpueisXJULghg==}
- engines: {node: '>=10'}
+ inquirer@11.1.0:
+ resolution: {integrity: sha512-CmLAZT65GG/v30c+D2Fk8+ceP6pxD6RL+hIUOWAltCmeyEqWYwqu9v76q03OvjyZ3AB0C1Ala2stn1z/rMqGEw==}
+ engines: {node: '>=18'}
ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
- ip-regex@4.3.0:
- resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==}
- engines: {node: '>=8'}
-
ip-regex@5.0.0:
resolution: {integrity: sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -3854,30 +3475,10 @@ packages:
engines: {node: '>=8'}
hasBin: true
- is-extglob@2.1.1:
- resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=}
- engines: {node: '>=0.10.0'}
-
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
- engines: {node: '>= 0.4'}
-
- is-glob@4.0.3:
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
- engines: {node: '>=0.10.0'}
-
- is-interactive@2.0.0:
- resolution: {integrity: sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==}
- engines: {node: '>=12'}
-
- is-ip@3.1.0:
- resolution: {integrity: sha512-35vd5necO7IitFPjd/YBeqwWnyDWbuLH9ZXQdMfDA8TEo7pv5X8yfrvVO3xbJbLUlERCMvf6X0hTUamQxCYJ9Q==}
- engines: {node: '>=8'}
-
is-ip@5.0.1:
resolution: {integrity: sha512-FCsGHdlrOnZQcp0+XT5a+pYowf33itBalCl+7ovNXC/7o5BhIpG14M3OrpPPdBSIQJCm+0M5+9mO7S9VVTTCFw==}
engines: {node: '>=14.16'}
@@ -3890,10 +3491,6 @@ packages:
resolution: {integrity: sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==}
engines: {node: '>=0.10.0'}
- is-number@7.0.0:
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
- engines: {node: '>=0.12.0'}
-
is-observable@2.1.0:
resolution: {integrity: sha512-DailKdLb0WU+xX8K5w7VsJhapwHLZ9jjmazqCJq4X12CTgqq73TKnbRcnSLuXYPOoLQgV5IrD7ePiX/h1vnkBw==}
engines: {node: '>=8'}
@@ -3905,26 +3502,14 @@ packages:
is-promise@4.0.0:
resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
- is-regex@1.2.1:
- resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
- engines: {node: '>= 0.4'}
-
is-regexp@3.1.0:
resolution: {integrity: sha512-rbku49cWloU5bSMI+zaRaXdQHXnthP6DZ/vLnfdSKyL4zUzuWnomtOEiZZOd+ioQ+avFo/qau3KPTc7Fjy1uPA==}
engines: {node: '>=12'}
- is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
-
is-stream@4.0.1:
resolution: {integrity: sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==}
engines: {node: '>=18'}
- is-unicode-supported@1.3.0:
- resolution: {integrity: sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==}
- engines: {node: '>=12'}
-
is-unicode-supported@2.1.0:
resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==}
engines: {node: '>=18'}
@@ -3937,10 +3522,6 @@ packages:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- isbinaryfile@5.0.4:
- resolution: {integrity: sha512-YKBKVkKhty7s8rxddb40oOkuP0NbaeXrQvLin6QMHL7Ypiy2RW9LwOVrVgZRyOrhQlayMd9t+D8yDy8MKFTSDQ==}
- engines: {node: '>= 18.0.0'}
-
isexe@2.0.0:
resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=}
@@ -3951,42 +3532,10 @@ packages:
isopen@1.3.0:
resolution: {integrity: sha512-AN6Q9J0UlqHFl1fN/2xJCHCBLCBCFDjZhpGBO1gh3wzgRPsFSFBUL36I2Lbfd9qkuoj58axmE7j83iejTQsk8Q==}
- istanbul-lib-coverage@3.2.2:
- resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
- engines: {node: '>=8'}
-
- istanbul-lib-report@3.0.1:
- resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
- engines: {node: '>=10'}
-
- istanbul-reports@3.1.7:
- resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
- engines: {node: '>=8'}
-
jackspeak@4.1.1:
resolution: {integrity: sha512-zptv57P3GpL+O0I7VdMJNBZCu+BPHVQUk55Ft8/QCJjTVxrnJHuVuX/0Bl2A6/+2oyR/ZMEuFKwmzqqZ/U5nPQ==}
engines: {node: 20 || >=22}
- jest-diff@29.7.0:
- resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- jest-get-type@29.6.3:
- resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- jest-matcher-utils@29.7.0:
- resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- jest-message-util@29.7.0:
- resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- jest-util@29.7.0:
- resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
jimp@1.6.0:
resolution: {integrity: sha512-YcwCHw1kiqEeI5xRpDlPPBGL2EOpBKLwO4yIBJcXWHPj5PnA5urGq0jbyhM5KoNpypQ6VboSoxc9D8HyfvngSg==}
engines: {node: '>=18'}
@@ -4021,19 +3570,9 @@ packages:
resolution: {integrity: sha512-+DWg8jCJG2TEnpy7kOm/7/AxaYoaRbjVB4LFZLySZlWn8exGs3A4OLJR966cVvU26N7X9TWxl+Jsw7dzAqKT6g==}
engines: {node: '>=16'}
- jsonfile@4.0.0:
- resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=}
-
- jsonfile@6.1.0:
- resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
-
jsonfile@6.2.0:
resolution: {integrity: sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==}
- keygrip@1.1.0:
- resolution: {integrity: sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==}
- engines: {node: '>= 0.6'}
-
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
@@ -4041,35 +3580,6 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- koa-compose@4.1.0:
- resolution: {integrity: sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==}
-
- koa-convert@2.0.0:
- resolution: {integrity: sha512-asOvN6bFlSnxewce2e/DK3p4tltyfC4VM7ZwuTuepI7dEQVcvpyFuBcEARu1+Hxg8DIwytce2n7jrZtRlPrARA==}
- engines: {node: '>= 10'}
-
- koa-etag@4.0.0:
- resolution: {integrity: sha512-1cSdezCkBWlyuB9l6c/IFoe1ANCDdPBxkDkRiaIup40xpUub6U/wwRXoKBZw/O5BifX9OlqAjYnDyzM6+l+TAg==}
-
- koa-logger@3.2.1:
- resolution: {integrity: sha512-MjlznhLLKy9+kG8nAXKJLM0/ClsQp/Or2vI3a5rbSQmgl8IJBQO0KI5FA70BvW+hqjtxjp49SpH2E7okS6NmHg==}
- engines: {node: '>= 7.6.0'}
-
- koa-send@5.0.1:
- resolution: {integrity: sha512-tmcyQ/wXXuxpDxyNXv5yNNkdAMdFRqwtegBXUaowiQzUKqJehttS0x2j0eOZDQAyloAth5w6wwBImnFzkUz3pQ==}
- engines: {node: '>= 8'}
-
- koa-static@5.0.0:
- resolution: {integrity: sha512-UqyYyH5YEXaJrf9S8E23GoJFQZXkBVJ9zYYMPGz919MSX1KuvAcycIuS0ci150HCoPf4XQVhQ84Qf8xRPWxFaQ==}
- engines: {node: '>= 7.6.0'}
-
- koa@2.15.4:
- resolution: {integrity: sha512-7fNBIdrU2PEgLljXoPWoyY4r1e+ToWCmzS/wwMPbUNs7X+5MMET1ObhJBlUkF5uZG9B6QhM2zS1TsH6adegkiQ==}
- engines: {node: ^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4}
-
- kuler@2.0.0:
- resolution: {integrity: sha512-Xq9nH7KlWZmXAtodXDDRE7vs6DU1gTU8zYDHDiWLSip45Egwq3plLHzPn27NgvzL2r1LMPC1vdqh98sQxtqj4A==}
-
lenis@1.3.11:
resolution: {integrity: sha512-lkyBnNTVwJzlupp+VL6LTn62WeT8WponuLpmTU0Z20cMwMsLLjqbSqwuA7I1yKSVWCBj/awo4jnFzOMOVCB8OQ==}
peerDependencies:
@@ -4087,21 +3597,12 @@ packages:
lines-and-columns@1.2.4:
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
- lit-element@4.1.1:
- resolution: {integrity: sha512-HO9Tkkh34QkTeUmEdNYhMT8hzLid7YlMlATSi1q4q17HE5d9mrrEHJ/o8O2D0cMi182zK1F3v7x0PWFjrhXFew==}
-
lit-element@4.2.1:
resolution: {integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==}
- lit-html@3.2.1:
- resolution: {integrity: sha512-qI/3lziaPMSKsrwlxH/xMgikhQ0EGOX2ICU73Bi/YHFvz2j/yMCIrw4+puF2IpQ4+upd3EWbvnHM9+PnJn48YA==}
-
lit-html@3.3.1:
resolution: {integrity: sha512-S9hbyDu/vs1qNrithiNyeyv64c9yqiW9l+DBgI18fL+MTvOtWoFR0FWiyq1TxaYef5wNlpEmzlXoBlZEO+WjoA==}
- lit@3.2.1:
- resolution: {integrity: sha512-1BBa1E/z0O9ye5fZprPtdqnc0BFzxIxTTOO/tQFmyC/hj1O3jL4TfmLBw0WEwjAokdLwpclkvGgDJwTIh0/22w==}
-
lit@3.3.1:
resolution: {integrity: sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==}
@@ -4145,21 +3646,6 @@ packages:
lodash.restparam@3.6.1:
resolution: {integrity: sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=}
- lodash@4.17.21:
- resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
-
- log-symbols@6.0.0:
- resolution: {integrity: sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==}
- engines: {node: '>=18'}
-
- log-update@4.0.0:
- resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==}
- engines: {node: '>=10'}
-
- logform@2.7.0:
- resolution: {integrity: sha512-TFYA4jnP7PVbmlBIfhlSe+WKxs9dklXMTEGcBCIvLhE/Tn3H6Gk1norupVW7m5Cnd4bLcr08AytbyV/xj7f/kQ==}
- engines: {node: '>= 12.0.0'}
-
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
@@ -4178,18 +3664,10 @@ packages:
resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
engines: {node: '>=12'}
- lru-cache@8.0.5:
- resolution: {integrity: sha512-MhWWlVnuab1RG5/zMRRcVGXZLCXrZTgfwMikgzCegsPnG62yDQo5JnqKkrK4jO5iKqDAZGItAqN5CtKBCBWRUA==}
- engines: {node: '>=16.14'}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
- make-dir@4.0.0:
- resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
- engines: {node: '>=10'}
-
make-error-cause@2.3.0:
resolution: {integrity: sha512-etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg==}
@@ -4253,10 +3731,6 @@ packages:
mdast-util-to-string@4.0.0:
resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
- media-typer@0.3.0:
- resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=}
- engines: {node: '>= 0.6'}
-
media-typer@1.1.0:
resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
engines: {node: '>= 0.8'}
@@ -4268,17 +3742,6 @@ packages:
resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
engines: {node: '>=18'}
- merge-stream@2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
-
- merge2@1.4.1:
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
- engines: {node: '>= 8'}
-
- methods@1.1.2:
- resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=}
- engines: {node: '>= 0.6'}
-
micromark-core-commonmark@2.0.3:
resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
@@ -4366,10 +3829,6 @@ packages:
micromark@4.0.2:
resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
- micromatch@4.0.8:
- resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
- engines: {node: '>=8.6'}
-
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
@@ -4396,14 +3855,6 @@ packages:
engines: {node: '>=16'}
hasBin: true
- mimic-fn@2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
-
- mimic-function@5.0.1:
- resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==}
- engines: {node: '>=18'}
-
mimic-response@3.1.0:
resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==}
engines: {node: '>=10'}
@@ -4426,6 +3877,10 @@ packages:
resolution: {integrity: sha512-IPZ167aShDZZUMdRk66cyQAW3qr0WzbHkPdMYa8bzZhlHhO3jALbKdxcaak7W9FfT2rZNpQuUu4Od7ILEpXSaw==}
engines: {node: 20 || >=22}
+ minimatch@10.1.1:
+ resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==}
+ engines: {node: 20 || >=22}
+
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -4443,11 +3898,6 @@ packages:
mitt@3.0.1:
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
- mkdirp@1.0.4:
- resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==}
- engines: {node: '>=10'}
- hasBin: true
-
mongodb-connection-string-url@2.6.0:
resolution: {integrity: sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==}
@@ -4496,13 +3946,9 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- nanocolors@0.2.13:
- resolution: {integrity: sha512-0n3mSAQLPpGLV9ORXT5+C/D4mwew7Ebws69Hx4E2sgz2ZA5+32Q80B9tL8PbL7XHnRDiAxH/pnrUJ9a4fkTNTA==}
-
- nanoid@3.3.8:
- resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
+ mute-stream@1.0.0:
+ resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
nanoid@4.0.2:
resolution: {integrity: sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==}
@@ -4540,10 +3986,6 @@ packages:
resolution: {integrity: sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==}
engines: {node: '>=14.16'}
- npm-run-path@4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
-
object-assign@4.1.1:
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
engines: {node: '>=0.10.0'}
@@ -4573,20 +4015,6 @@ packages:
once@1.4.0:
resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
- one-time@1.0.0:
- resolution: {integrity: sha512-5DXOiRKwuSEcQ/l0kGCF6Q3jcADFv5tSmRaJck/OqkVFcOzutB134KRSfF0xDrL39MNnqxbHBbUUcjZIhTgb2g==}
-
- onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
-
- onetime@7.0.0:
- resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==}
- engines: {node: '>=18'}
-
- only@0.0.2:
- resolution: {integrity: sha1-Kv3oTQPlC5qO3EROMGEKcCle37Q=}
-
open@8.4.2:
resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==}
engines: {node: '>=12'}
@@ -4603,18 +4031,14 @@ packages:
zod:
optional: true
- ora@8.2.0:
- resolution: {integrity: sha512-weP+BZ8MVNnlCm8c0Qdc1WSWq4Qn7I+9CJGm7Qali6g44e/PUzbjNqJX5NJ9ljlNMosfJvg1fKEGILklK9cwnw==}
- engines: {node: '>=18'}
+ os-tmpdir@1.0.2:
+ resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=}
+ engines: {node: '>=0.10.0'}
p-cancelable@3.0.0:
resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
engines: {node: '>=12.20'}
- p-event@4.2.0:
- resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==}
- engines: {node: '>=8'}
-
p-finally@1.0.0:
resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=}
engines: {node: '>=4'}
@@ -4689,16 +4113,10 @@ packages:
resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==}
engines: {node: '>=18'}
- parse5@6.0.1:
- resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
-
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
- passthrough-counter@1.0.0:
- resolution: {integrity: sha1-GWfZ5m2lcrXAI8eH2xEqOHqxZvo=}
-
path-exists@4.0.0:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
@@ -4715,9 +4133,6 @@ packages:
resolution: {integrity: sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==}
engines: {node: 20 || >=22}
- path-to-regexp@6.3.0:
- resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
-
path-to-regexp@8.2.0:
resolution: {integrity: sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==}
engines: {node: '>=16'}
@@ -4725,10 +4140,6 @@ packages:
path-to-regexp@8.3.0:
resolution: {integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==}
- path-type@4.0.0:
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
- engines: {node: '>=8'}
-
pdf-lib@1.17.1:
resolution: {integrity: sha512-V/mpyJAoTsN4cnP31vc0wfNA1+p20evqqnap0KLoRUN0Yk/p3wN52DOEsL4oBFcLdb76hlpKPtzJIgo67j/XLw==}
@@ -4752,10 +4163,6 @@ packages:
picocolors@1.1.1:
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- picomatch@2.3.1:
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
- engines: {node: '>=8.6'}
-
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
@@ -4780,10 +4187,6 @@ packages:
resolution: {integrity: sha512-LKWqWJRhstyYo9pGvgor/ivk2w94eSjE3RGVuzLGlr3NmD8bf7RcYGze1mNdEHRP6TRP6rMuDHk5t44hnTRyow==}
engines: {node: '>=14.19.0'}
- pretty-format@29.7.0:
- resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
pretty-ms@7.0.1:
resolution: {integrity: sha512-973driJZvxiGOQ5ONsFhOF/DtzPMOMtgC11kCpUrPGMTgqp2q/1gwzCquocrN33is0VZ5GFHXZYMM9l6h67v2Q==}
engines: {node: '>=10'}
@@ -4855,9 +4258,6 @@ packages:
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
engines: {node: '>=0.6'}
- queue-microtask@1.2.3:
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
-
quick-lru@5.1.1:
resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
engines: {node: '>=10'}
@@ -4870,10 +4270,6 @@ packages:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
- raw-body@2.5.2:
- resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==}
- engines: {node: '>= 0.8'}
-
raw-body@3.0.0:
resolution: {integrity: sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==}
engines: {node: '>= 0.8'}
@@ -4882,9 +4278,6 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- react-is@18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
-
readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
@@ -4949,10 +4342,6 @@ packages:
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
engines: {node: '>=4'}
- resolve-path@1.4.0:
- resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==}
- engines: {node: '>= 0.8'}
-
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
@@ -4960,55 +4349,29 @@ packages:
resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==}
engines: {node: '>=14.16'}
- 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.1.0:
- resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
-
rimraf@3.0.2:
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
hasBin: true
- rolldown@1.0.0-beta.29:
- resolution: {integrity: sha512-EsoOi8moHN6CAYyTZipxDDVTJn0j2nBCWor4wRU45RQ8ER2qREDykXLr3Ulz6hBh6oBKCFTQIjo21i0FXNo/IA==}
+ rolldown@1.0.0-beta.52:
+ resolution: {integrity: sha512-Hbnpljue+JhMJrlOjQ1ixp9me7sUec7OjFvS+A1Qm8k8Xyxmw3ZhxFu7LlSXW1s9AX3POE9W9o2oqCEeR5uDmg==}
+ engines: {node: ^20.19.0 || >=22.12.0}
hasBin: true
router@2.2.0:
resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
engines: {node: '>= 18'}
- rss-parser@3.13.0:
- resolution: {integrity: sha512-7jWUBV5yGN3rqMMj7CZufl/291QAhvrrGpDNE4k/02ZchL0npisiYYqULF71jCEKoIiHvK/Q2e6IkDwPziT7+w==}
-
- run-parallel@1.2.0:
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
+ run-async@3.0.0:
+ resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
+ engines: {node: '>=0.12.0'}
rxjs@7.8.2:
resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
- s3rver@3.7.1:
- resolution: {integrity: sha512-H9KIX6n8NqcfoE4ziFNbQASBQfjcNJgb+3wbT9L5iotEqfOncFO1c38cfJSFSo7xXTu1zM9HA6t2u9xKNlYRaA==}
- engines: {node: '>=8.3.0'}
- hasBin: true
-
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-regex-test@1.1.0:
- resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
- engines: {node: '>= 0.4'}
-
- safe-stable-stringify@2.5.0:
- resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
- engines: {node: '>=10'}
-
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -5046,9 +4409,6 @@ packages:
resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
- setprototypeof@1.1.0:
- resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
-
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
@@ -5094,14 +4454,6 @@ packages:
resolution: {integrity: sha512-kWJDCr9EWtZ+/EYYM5MareWj2cRnZGF93YDNpH4jQiHB+hBIZnfPFSQiVMzZOdk+zXWqTZ/9fTeQNu2DqeiudA==}
engines: {node: '>=20.12.2'}
- slash@3.0.0:
- resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
- engines: {node: '>=8'}
-
- slice-ansi@4.0.0:
- resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
- engines: {node: '>=10'}
-
smart-buffer@4.2.0:
resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
@@ -5133,10 +4485,6 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
- engines: {node: '>= 8'}
-
space-separated-tokens@2.0.2:
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
@@ -5153,17 +4501,6 @@ packages:
sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- stack-trace@0.0.10:
- resolution: {integrity: sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=}
-
- stack-utils@2.0.6:
- resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
- engines: {node: '>=10'}
-
- statuses@1.5.0:
- resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=}
- engines: {node: '>= 0.6'}
-
statuses@2.0.1:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
@@ -5172,14 +4509,6 @@ packages:
resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
engines: {node: '>= 0.8'}
- stdin-discarder@0.2.2:
- resolution: {integrity: sha512-UhDfHmA92YAlNnCfhmq0VeNL5bDbiZGg7sZ2IvPsXubGkiNa9EC+tUTsjBRsYUAz87btI6/1wf4XoVvQ3uRnmQ==}
- engines: {node: '>=18'}
-
- streamsearch@0.1.2:
- resolution: {integrity: sha1-gIudDlb8Jz2Am6VzOOkpkZoanxo=}
- engines: {node: '>=0.8.0'}
-
streamx@2.22.0:
resolution: {integrity: sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==}
@@ -5191,10 +4520,6 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string-width@7.2.0:
- resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==}
- engines: {node: '>=18'}
-
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
@@ -5205,18 +4530,10 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.0:
- 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-final-newline@2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
-
strip-indent@4.0.0:
resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
engines: {node: '>=12'}
@@ -5250,14 +4567,6 @@ packages:
resolution: {integrity: sha512-WZzIx3rC1CvbMDloLsVw0lkZVKJWbrkJ0k1ghKFmcnPrW1+jWbgTkTEWVtD9lMdmI4jZEz40+naBxl1dCUhXXw==}
engines: {node: '>=14.16'}
- supports-color@5.5.0:
- resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
- engines: {node: '>=4'}
-
- supports-color@7.2.0:
- resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
- engines: {node: '>=8'}
-
sweet-scroll@4.0.0:
resolution: {integrity: sha512-mR6fRsAQANtm3zpzhUE73KAOt2aT4ZsWzNSggiEsSqdO6Zh4gM7ioJG81EngrZEl0XAc3ZvzEfhxggOoEBc8jA==}
@@ -5285,9 +4594,6 @@ packages:
text-decoder@1.2.3:
resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
- text-hex@1.0.0:
- resolution: {integrity: sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==}
-
threads@1.7.0:
resolution: {integrity: sha512-Mx5NBSHX3sQYR6iI9VYbgHKBLisyB+xROCBGjjWm1O9wb9vfLxdaGtmT/KCjUqMsSNW6nERzCW3T6H43LqjDZQ==}
@@ -5307,9 +4613,9 @@ packages:
tinycolor2@1.6.0:
resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
- to-regex-range@5.0.1:
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
- engines: {node: '>=8.0'}
+ tmp@0.0.33:
+ resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
+ engines: {node: '>=0.6.0'}
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
@@ -5338,10 +4644,6 @@ packages:
trim-lines@3.0.1:
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
- triple-beam@1.4.1:
- resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==}
- engines: {node: '>= 14.0.0'}
-
trough@2.2.0:
resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
@@ -5354,12 +4656,8 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsscmp@1.0.6:
- resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==}
- engines: {node: '>=0.6.x'}
-
- tsx@4.19.3:
- resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
+ tsx@4.21.0:
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -5389,10 +4687,6 @@ packages:
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
engines: {node: '>=16'}
- type-is@1.6.18:
- resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
- engines: {node: '>= 0.6'}
-
type-is@2.0.1:
resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
engines: {node: '>= 0.6'}
@@ -5400,16 +4694,6 @@ packages:
typed-query-selector@2.12.0:
resolution: {integrity: sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==}
- typescript@5.8.3:
- resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- typescript@5.9.2:
- resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
- engines: {node: '>=14.17'}
- hasBin: true
-
typescript@5.9.3:
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
@@ -5449,10 +4733,6 @@ packages:
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
- universalify@0.1.2:
- resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
- engines: {node: '>= 4.0.0'}
-
universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -5517,14 +4797,6 @@ packages:
engines: {node: ^18.17.0 || >=20.5.0}
hasBin: true
- winston-transport@4.9.0:
- resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==}
- engines: {node: '>= 12.0.0'}
-
- winston@3.17.0:
- resolution: {integrity: sha512-DLiFIXYC5fMPxaRg832S6F5mJYvePtmO5G9v9IgUFPhXm9/GkXarH/TUrBAVzhTCzAj9anE/+GjrgXp/54nOgw==}
- engines: {node: '>= 12.0.0'}
-
wrap-ansi@6.2.0:
resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==}
engines: {node: '>=8'}
@@ -5540,18 +4812,6 @@ packages:
wrappy@1.0.2:
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
- ws@7.5.10:
- resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@8.17.1:
resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
engines: {node: '>=10.0.0'}
@@ -5588,10 +4848,6 @@ packages:
utf-8-validate:
optional: true
- xml-js@1.6.11:
- resolution: {integrity: sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g==}
- hasBin: true
-
xml-parse-from-string@1.0.1:
resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==}
@@ -5599,10 +4855,6 @@ packages:
resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
engines: {node: '>=4.0.0'}
- xmlbuilder2@3.1.1:
- resolution: {integrity: sha512-WCSfbfZnQDdLQLiMdGUQpMxxckeQ4oZNMNhLVkcekTu7xhD4tuUDyAPoY8CwXvBYE6LwBHd6QW2WZXlOWr1vCw==}
- engines: {node: '>=12.0'}
-
xmlbuilder@11.0.1:
resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
engines: {node: '>=4.0'}
@@ -5615,10 +4867,19 @@ packages:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
+ 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'}
+ yargs-parser@22.0.0:
+ resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==}
+ engines: {node: ^20.19.0 || ^22.12.0 || >=23}
+
yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
@@ -5630,9 +4891,9 @@ packages:
resolution: {integrity: sha512-Ow9nuGZE+qp1u4JIPvg+uCiUr7xGQWdff7JQSk5VGYTAZMDe2q8lxJ10ygv10qmSj031Ty/6FNJpLO4o1Sgc+w==}
engines: {node: '>=12'}
- ylru@1.4.0:
- resolution: {integrity: sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==}
- engines: {node: '>= 4.0.0'}
+ yoctocolors-cjs@2.1.3:
+ resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==}
+ engines: {node: '>=18'}
zod@3.24.2:
resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
@@ -5645,7 +4906,7 @@ packages:
snapshots:
- '@anthropic-ai/sdk@0.65.0(zod@3.25.76)':
+ '@anthropic-ai/sdk@0.71.2(zod@3.25.76)':
dependencies:
json-schema-to-ts: 3.1.1
optionalDependencies:
@@ -5667,7 +4928,7 @@ snapshots:
'@push.rocks/webrequest': 3.0.37
'@push.rocks/webstream': 1.0.10
- '@api.global/typedserver@3.0.79':
+ '@api.global/typedserver@3.0.80':
dependencies:
'@api.global/typedrequest': 3.1.10
'@api.global/typedrequest-interfaces': 3.0.19
@@ -5678,7 +4939,7 @@ snapshots:
'@push.rocks/smartchok': 1.1.1
'@push.rocks/smartdelay': 3.0.5
'@push.rocks/smartenv': 5.0.13
- '@push.rocks/smartfeed': 1.0.11
+ '@push.rocks/smartfeed': 1.4.0
'@push.rocks/smartfile': 11.2.7
'@push.rocks/smartjson': 5.2.0
'@push.rocks/smartlog': 3.1.10
@@ -5693,14 +4954,14 @@ snapshots:
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/smartrequest': 4.3.1
'@push.rocks/smartrx': 3.0.10
- '@push.rocks/smartsitemap': 2.0.3
+ '@push.rocks/smartsitemap': 2.0.4
'@push.rocks/smartstream': 3.2.5
'@push.rocks/smarttime': 4.1.1
'@push.rocks/taskbuffer': 3.4.0
'@push.rocks/webrequest': 3.0.37
'@push.rocks/webstore': 2.0.20
'@tsclass/tsclass': 9.3.0
- '@types/express': 5.0.3
+ '@types/express': 5.0.6
body-parser: 2.2.0
cors: 2.8.5
express: 5.1.0
@@ -5794,31 +5055,31 @@ snapshots:
'@aws-sdk/util-endpoints': 3.808.0
'@aws-sdk/util-user-agent-browser': 3.804.0
'@aws-sdk/util-user-agent-node': 3.808.0
- '@smithy/config-resolver': 4.1.2
- '@smithy/core': 3.3.2
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/hash-node': 4.0.2
- '@smithy/invalid-dependency': 4.0.2
- '@smithy/middleware-content-length': 4.0.2
- '@smithy/middleware-endpoint': 4.1.5
- '@smithy/middleware-retry': 4.1.6
- '@smithy/middleware-serde': 4.0.4
- '@smithy/middleware-stack': 4.0.2
- '@smithy/node-config-provider': 4.1.1
- '@smithy/node-http-handler': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.13
- '@smithy/util-defaults-mode-node': 4.0.13
- '@smithy/util-endpoints': 3.0.4
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.3
- '@smithy/util-utf8': 4.0.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -5947,6 +5208,66 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/client-s3@3.971.0':
+ dependencies:
+ '@aws-crypto/sha1-browser': 5.2.0
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/credential-provider-node': 3.971.0
+ '@aws-sdk/middleware-bucket-endpoint': 3.969.0
+ '@aws-sdk/middleware-expect-continue': 3.969.0
+ '@aws-sdk/middleware-flexible-checksums': 3.971.0
+ '@aws-sdk/middleware-host-header': 3.969.0
+ '@aws-sdk/middleware-location-constraint': 3.969.0
+ '@aws-sdk/middleware-logger': 3.969.0
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
+ '@aws-sdk/middleware-sdk-s3': 3.970.0
+ '@aws-sdk/middleware-ssec': 3.971.0
+ '@aws-sdk/middleware-user-agent': 3.970.0
+ '@aws-sdk/region-config-resolver': 3.969.0
+ '@aws-sdk/signature-v4-multi-region': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-endpoints': 3.970.0
+ '@aws-sdk/util-user-agent-browser': 3.969.0
+ '@aws-sdk/util-user-agent-node': 3.971.0
+ '@smithy/config-resolver': 4.4.6
+ '@smithy/core': 3.20.7
+ '@smithy/eventstream-serde-browser': 4.2.8
+ '@smithy/eventstream-serde-config-resolver': 4.3.8
+ '@smithy/eventstream-serde-node': 4.2.8
+ '@smithy/fetch-http-handler': 5.3.9
+ '@smithy/hash-blob-browser': 4.2.9
+ '@smithy/hash-node': 4.2.8
+ '@smithy/hash-stream-node': 4.2.8
+ '@smithy/invalid-dependency': 4.2.8
+ '@smithy/md5-js': 4.2.8
+ '@smithy/middleware-content-length': 4.2.8
+ '@smithy/middleware-endpoint': 4.4.8
+ '@smithy/middleware-retry': 4.4.24
+ '@smithy/middleware-serde': 4.2.9
+ '@smithy/middleware-stack': 4.2.8
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/node-http-handler': 4.4.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.23
+ '@smithy/util-defaults-mode-node': 4.2.26
+ '@smithy/util-endpoints': 3.2.8
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-retry': 4.2.8
+ '@smithy/util-stream': 4.5.10
+ '@smithy/util-utf8': 4.2.0
+ '@smithy/util-waiter': 4.2.8
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/client-sso@3.750.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -6004,31 +5325,31 @@ snapshots:
'@aws-sdk/util-endpoints': 3.808.0
'@aws-sdk/util-user-agent-browser': 3.804.0
'@aws-sdk/util-user-agent-node': 3.808.0
- '@smithy/config-resolver': 4.1.2
- '@smithy/core': 3.3.2
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/hash-node': 4.0.2
- '@smithy/invalid-dependency': 4.0.2
- '@smithy/middleware-content-length': 4.0.2
- '@smithy/middleware-endpoint': 4.1.5
- '@smithy/middleware-retry': 4.1.6
- '@smithy/middleware-serde': 4.0.4
- '@smithy/middleware-stack': 4.0.2
- '@smithy/node-config-provider': 4.1.1
- '@smithy/node-http-handler': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.13
- '@smithy/util-defaults-mode-node': 4.0.13
- '@smithy/util-endpoints': 3.0.4
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.3
- '@smithy/util-utf8': 4.0.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6077,6 +5398,49 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/client-sso@3.971.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/middleware-host-header': 3.969.0
+ '@aws-sdk/middleware-logger': 3.969.0
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
+ '@aws-sdk/middleware-user-agent': 3.970.0
+ '@aws-sdk/region-config-resolver': 3.969.0
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-endpoints': 3.970.0
+ '@aws-sdk/util-user-agent-browser': 3.969.0
+ '@aws-sdk/util-user-agent-node': 3.971.0
+ '@smithy/config-resolver': 4.4.6
+ '@smithy/core': 3.20.7
+ '@smithy/fetch-http-handler': 5.3.9
+ '@smithy/hash-node': 4.2.8
+ '@smithy/invalid-dependency': 4.2.8
+ '@smithy/middleware-content-length': 4.2.8
+ '@smithy/middleware-endpoint': 4.4.8
+ '@smithy/middleware-retry': 4.4.24
+ '@smithy/middleware-serde': 4.2.9
+ '@smithy/middleware-stack': 4.2.8
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/node-http-handler': 4.4.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.23
+ '@smithy/util-defaults-mode-node': 4.2.26
+ '@smithy/util-endpoints': 3.2.8
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-retry': 4.2.8
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/core@3.750.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6094,14 +5458,14 @@ snapshots:
'@aws-sdk/core@3.808.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/core': 3.3.2
- '@smithy/node-config-provider': 4.1.1
- '@smithy/property-provider': 4.0.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/signature-v4': 5.1.0
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/util-middleware': 4.0.2
+ '@smithy/core': 3.15.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/signature-v4': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/util-middleware': 4.2.0
fast-xml-parser: 4.4.1
tslib: 2.8.1
optional: true
@@ -6122,12 +5486,33 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/core@3.970.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/xml-builder': 3.969.0
+ '@smithy/core': 3.20.7
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/signature-v4': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
+ '@aws-sdk/crc64-nvme@3.969.0':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/credential-provider-cognito-identity@3.808.0':
dependencies:
'@aws-sdk/client-cognito-identity': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6145,8 +5530,8 @@ snapshots:
dependencies:
'@aws-sdk/core': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6158,6 +5543,14 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/credential-provider-env@3.970.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/credential-provider-http@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6175,13 +5568,13 @@ snapshots:
dependencies:
'@aws-sdk/core': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/node-http-handler': 4.0.4
- '@smithy/property-provider': 4.0.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/util-stream': 4.2.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/util-stream': 4.5.0
tslib: 2.8.1
optional: true
@@ -6198,6 +5591,19 @@ snapshots:
'@smithy/util-stream': 4.5.0
tslib: 2.8.1
+ '@aws-sdk/credential-provider-http@3.970.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/fetch-http-handler': 5.3.9
+ '@smithy/node-http-handler': 4.4.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/util-stream': 4.5.10
+ tslib: 2.8.1
+
'@aws-sdk/credential-provider-ini@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6226,10 +5632,10 @@ snapshots:
'@aws-sdk/credential-provider-web-identity': 3.808.0
'@aws-sdk/nested-clients': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/credential-provider-imds': 4.0.4
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6253,6 +5659,38 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/credential-provider-ini@3.971.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/credential-provider-env': 3.970.0
+ '@aws-sdk/credential-provider-http': 3.970.0
+ '@aws-sdk/credential-provider-login': 3.971.0
+ '@aws-sdk/credential-provider-process': 3.970.0
+ '@aws-sdk/credential-provider-sso': 3.971.0
+ '@aws-sdk/credential-provider-web-identity': 3.971.0
+ '@aws-sdk/nested-clients': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/credential-provider-imds': 4.2.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
+ '@aws-sdk/credential-provider-login@3.971.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/nested-clients': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/credential-provider-node@3.750.0':
dependencies:
'@aws-sdk/credential-provider-env': 3.750.0
@@ -6279,10 +5717,10 @@ snapshots:
'@aws-sdk/credential-provider-sso': 3.808.0
'@aws-sdk/credential-provider-web-identity': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/credential-provider-imds': 4.0.4
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6305,6 +5743,23 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/credential-provider-node@3.971.0':
+ dependencies:
+ '@aws-sdk/credential-provider-env': 3.970.0
+ '@aws-sdk/credential-provider-http': 3.970.0
+ '@aws-sdk/credential-provider-ini': 3.971.0
+ '@aws-sdk/credential-provider-process': 3.970.0
+ '@aws-sdk/credential-provider-sso': 3.971.0
+ '@aws-sdk/credential-provider-web-identity': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/credential-provider-imds': 4.2.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/credential-provider-process@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6318,9 +5773,9 @@ snapshots:
dependencies:
'@aws-sdk/core': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6333,6 +5788,15 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/credential-provider-process@3.970.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/credential-provider-sso@3.750.0':
dependencies:
'@aws-sdk/client-sso': 3.750.0
@@ -6352,9 +5816,9 @@ snapshots:
'@aws-sdk/core': 3.808.0
'@aws-sdk/token-providers': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6373,6 +5837,19 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/credential-provider-sso@3.971.0':
+ dependencies:
+ '@aws-sdk/client-sso': 3.971.0
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/token-providers': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/credential-provider-web-identity@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6389,8 +5866,8 @@ snapshots:
'@aws-sdk/core': 3.808.0
'@aws-sdk/nested-clients': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6408,6 +5885,18 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/credential-provider-web-identity@3.971.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/nested-clients': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/credential-providers@3.808.0':
dependencies:
'@aws-sdk/client-cognito-identity': 3.808.0
@@ -6422,12 +5911,12 @@ snapshots:
'@aws-sdk/credential-provider-web-identity': 3.808.0
'@aws-sdk/nested-clients': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/config-resolver': 4.1.2
- '@smithy/core': 3.3.2
- '@smithy/credential-provider-imds': 4.0.4
- '@smithy/node-config-provider': 4.1.1
- '@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/credential-provider-imds': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6453,6 +5942,16 @@ snapshots:
'@smithy/util-config-provider': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-bucket-endpoint@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-arn-parser': 3.968.0
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-config-provider': 4.2.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-expect-continue@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6467,6 +5966,13 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-expect-continue@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-flexible-checksums@3.750.0':
dependencies:
'@aws-crypto/crc32': 5.2.0
@@ -6499,6 +6005,23 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-flexible-checksums@3.971.0':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@aws-crypto/crc32c': 5.2.0
+ '@aws-crypto/util': 5.2.0
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/crc64-nvme': 3.969.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/is-array-buffer': 4.2.0
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-stream': 4.5.10
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-host-header@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6509,8 +6032,8 @@ snapshots:
'@aws-sdk/middleware-host-header@3.804.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6521,6 +6044,13 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-host-header@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-location-constraint@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6533,6 +6063,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-location-constraint@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-logger@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6542,7 +6078,7 @@ snapshots:
'@aws-sdk/middleware-logger@3.804.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6552,6 +6088,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-logger@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-recursion-detection@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6562,8 +6104,8 @@ snapshots:
'@aws-sdk/middleware-recursion-detection@3.804.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6575,6 +6117,14 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-recursion-detection@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@aws/lambda-invoke-store': 0.2.3
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-sdk-s3@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6609,6 +6159,23 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/middleware-sdk-s3@3.970.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-arn-parser': 3.968.0
+ '@smithy/core': 3.20.7
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/signature-v4': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/util-config-provider': 4.2.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-stream': 4.5.10
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-ssec@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6621,6 +6188,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-ssec@3.971.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/middleware-user-agent@3.750.0':
dependencies:
'@aws-sdk/core': 3.750.0
@@ -6636,9 +6209,9 @@ snapshots:
'@aws-sdk/core': 3.808.0
'@aws-sdk/types': 3.804.0
'@aws-sdk/util-endpoints': 3.808.0
- '@smithy/core': 3.3.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
+ '@smithy/core': 3.15.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6652,6 +6225,16 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/middleware-user-agent@3.970.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-endpoints': 3.970.0
+ '@smithy/core': 3.20.7
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/nested-clients@3.750.0':
dependencies:
'@aws-crypto/sha256-browser': 5.2.0
@@ -6709,31 +6292,31 @@ snapshots:
'@aws-sdk/util-endpoints': 3.808.0
'@aws-sdk/util-user-agent-browser': 3.804.0
'@aws-sdk/util-user-agent-node': 3.808.0
- '@smithy/config-resolver': 4.1.2
- '@smithy/core': 3.3.2
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/hash-node': 4.0.2
- '@smithy/invalid-dependency': 4.0.2
- '@smithy/middleware-content-length': 4.0.2
- '@smithy/middleware-endpoint': 4.1.5
- '@smithy/middleware-retry': 4.1.6
- '@smithy/middleware-serde': 4.0.4
- '@smithy/middleware-stack': 4.0.2
- '@smithy/node-config-provider': 4.1.1
- '@smithy/node-http-handler': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
- '@smithy/util-base64': 4.0.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-body-length-node': 4.0.0
- '@smithy/util-defaults-mode-browser': 4.0.13
- '@smithy/util-defaults-mode-node': 4.0.13
- '@smithy/util-endpoints': 3.0.4
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.3
- '@smithy/util-utf8': 4.0.0
+ '@smithy/config-resolver': 4.3.0
+ '@smithy/core': 3.15.0
+ '@smithy/fetch-http-handler': 5.3.1
+ '@smithy/hash-node': 4.2.0
+ '@smithy/invalid-dependency': 4.2.0
+ '@smithy/middleware-content-length': 4.2.0
+ '@smithy/middleware-endpoint': 4.3.1
+ '@smithy/middleware-retry': 4.4.1
+ '@smithy/middleware-serde': 4.2.0
+ '@smithy/middleware-stack': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/node-http-handler': 4.3.0
+ '@smithy/protocol-http': 5.3.0
+ '@smithy/smithy-client': 4.7.1
+ '@smithy/types': 4.6.0
+ '@smithy/url-parser': 4.2.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.0
+ '@smithy/util-defaults-mode-node': 4.2.1
+ '@smithy/util-endpoints': 3.2.0
+ '@smithy/util-middleware': 4.2.0
+ '@smithy/util-retry': 4.2.0
+ '@smithy/util-utf8': 4.2.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6782,6 +6365,49 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/nested-clients@3.971.0':
+ dependencies:
+ '@aws-crypto/sha256-browser': 5.2.0
+ '@aws-crypto/sha256-js': 5.2.0
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/middleware-host-header': 3.969.0
+ '@aws-sdk/middleware-logger': 3.969.0
+ '@aws-sdk/middleware-recursion-detection': 3.969.0
+ '@aws-sdk/middleware-user-agent': 3.970.0
+ '@aws-sdk/region-config-resolver': 3.969.0
+ '@aws-sdk/types': 3.969.0
+ '@aws-sdk/util-endpoints': 3.970.0
+ '@aws-sdk/util-user-agent-browser': 3.969.0
+ '@aws-sdk/util-user-agent-node': 3.971.0
+ '@smithy/config-resolver': 4.4.6
+ '@smithy/core': 3.20.7
+ '@smithy/fetch-http-handler': 5.3.9
+ '@smithy/hash-node': 4.2.8
+ '@smithy/invalid-dependency': 4.2.8
+ '@smithy/middleware-content-length': 4.2.8
+ '@smithy/middleware-endpoint': 4.4.8
+ '@smithy/middleware-retry': 4.4.24
+ '@smithy/middleware-serde': 4.2.9
+ '@smithy/middleware-stack': 4.2.8
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/node-http-handler': 4.4.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-body-length-node': 4.2.1
+ '@smithy/util-defaults-mode-browser': 4.3.23
+ '@smithy/util-defaults-mode-node': 4.2.26
+ '@smithy/util-endpoints': 3.2.8
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-retry': 4.2.8
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/region-config-resolver@3.734.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6794,10 +6420,10 @@ snapshots:
'@aws-sdk/region-config-resolver@3.808.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/node-config-provider': 4.1.1
- '@smithy/types': 4.2.0
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.2
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
+ '@smithy/util-config-provider': 4.2.0
+ '@smithy/util-middleware': 4.2.0
tslib: 2.8.1
optional: true
@@ -6810,6 +6436,14 @@ snapshots:
'@smithy/util-middleware': 4.2.0
tslib: 2.8.1
+ '@aws-sdk/region-config-resolver@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/config-resolver': 4.4.6
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/signature-v4-multi-region@3.750.0':
dependencies:
'@aws-sdk/middleware-sdk-s3': 3.750.0
@@ -6828,6 +6462,15 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/signature-v4-multi-region@3.970.0':
+ dependencies:
+ '@aws-sdk/middleware-sdk-s3': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/signature-v4': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/token-providers@3.750.0':
dependencies:
'@aws-sdk/nested-clients': 3.750.0
@@ -6843,9 +6486,9 @@ snapshots:
dependencies:
'@aws-sdk/nested-clients': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.0
+ '@smithy/shared-ini-file-loader': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
transitivePeerDependencies:
- aws-crt
@@ -6863,6 +6506,18 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@aws-sdk/token-providers@3.971.0':
+ dependencies:
+ '@aws-sdk/core': 3.970.0
+ '@aws-sdk/nested-clients': 3.971.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@aws-sdk/types@3.734.0':
dependencies:
'@smithy/types': 4.1.0
@@ -6870,7 +6525,7 @@ snapshots:
'@aws-sdk/types@3.804.0':
dependencies:
- '@smithy/types': 4.2.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6879,6 +6534,11 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/types@3.969.0':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/util-arn-parser@3.723.0':
dependencies:
tslib: 2.8.1
@@ -6887,6 +6547,10 @@ snapshots:
dependencies:
tslib: 2.8.1
+ '@aws-sdk/util-arn-parser@3.968.0':
+ dependencies:
+ tslib: 2.8.1
+
'@aws-sdk/util-endpoints@3.743.0':
dependencies:
'@aws-sdk/types': 3.734.0
@@ -6897,8 +6561,8 @@ snapshots:
'@aws-sdk/util-endpoints@3.808.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/types': 4.2.0
- '@smithy/util-endpoints': 3.0.4
+ '@smithy/types': 4.6.0
+ '@smithy/util-endpoints': 3.2.0
tslib: 2.8.1
optional: true
@@ -6910,6 +6574,14 @@ snapshots:
'@smithy/util-endpoints': 3.2.0
tslib: 2.8.1
+ '@aws-sdk/util-endpoints@3.970.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ '@smithy/util-endpoints': 3.2.8
+ tslib: 2.8.1
+
'@aws-sdk/util-locate-window@3.723.0':
dependencies:
tslib: 2.8.1
@@ -6924,8 +6596,8 @@ snapshots:
'@aws-sdk/util-user-agent-browser@3.804.0':
dependencies:
'@aws-sdk/types': 3.804.0
- '@smithy/types': 4.2.0
- bowser: 2.11.0
+ '@smithy/types': 4.6.0
+ bowser: 2.12.1
tslib: 2.8.1
optional: true
@@ -6936,6 +6608,13 @@ snapshots:
bowser: 2.12.1
tslib: 2.8.1
+ '@aws-sdk/util-user-agent-browser@3.969.0':
+ dependencies:
+ '@aws-sdk/types': 3.969.0
+ '@smithy/types': 4.12.0
+ bowser: 2.12.1
+ tslib: 2.8.1
+
'@aws-sdk/util-user-agent-node@3.750.0':
dependencies:
'@aws-sdk/middleware-user-agent': 3.750.0
@@ -6948,8 +6627,8 @@ snapshots:
dependencies:
'@aws-sdk/middleware-user-agent': 3.808.0
'@aws-sdk/types': 3.804.0
- '@smithy/node-config-provider': 4.1.1
- '@smithy/types': 4.2.0
+ '@smithy/node-config-provider': 4.3.0
+ '@smithy/types': 4.6.0
tslib: 2.8.1
optional: true
@@ -6961,6 +6640,14 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@aws-sdk/util-user-agent-node@3.971.0':
+ dependencies:
+ '@aws-sdk/middleware-user-agent': 3.970.0
+ '@aws-sdk/types': 3.969.0
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@aws-sdk/xml-builder@3.734.0':
dependencies:
'@smithy/types': 4.1.0
@@ -6972,8 +6659,16 @@ snapshots:
fast-xml-parser: 5.2.5
tslib: 2.8.1
+ '@aws-sdk/xml-builder@3.969.0':
+ dependencies:
+ '@smithy/types': 4.12.0
+ fast-xml-parser: 5.2.5
+ tslib: 2.8.1
+
'@aws/lambda-invoke-store@0.0.1': {}
+ '@aws/lambda-invoke-store@0.2.3': {}
+
'@babel/code-frame@7.26.2':
dependencies:
'@babel/helper-validator-identifier': 7.25.9
@@ -6992,18 +6687,10 @@ snapshots:
'@cloudflare/workers-types@4.20251008.0': {}
- '@colors/colors@1.6.0': {}
-
'@configvault.io/interfaces@1.0.17':
dependencies:
'@api.global/typedrequest-interfaces': 3.0.19
- '@dabh/diagnostics@2.0.3':
- dependencies:
- colorspace: 1.1.4
- enabled: 2.0.0
- kuler: 2.0.0
-
'@design.estate/dees-comms@1.0.27':
dependencies:
'@api.global/typedrequest': 3.1.10
@@ -7049,9 +6736,9 @@ snapshots:
- supports-color
- vue
- '@emnapi/core@1.4.5':
+ '@emnapi/core@1.8.1':
dependencies:
- '@emnapi/wasi-threads': 1.0.4
+ '@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
optional: true
@@ -7060,179 +6747,106 @@ snapshots:
tslib: 2.8.1
optional: true
- '@emnapi/wasi-threads@1.0.4':
+ '@emnapi/runtime@1.8.1':
dependencies:
tslib: 2.8.1
optional: true
- '@esbuild/aix-ppc64@0.25.0':
- optional: true
-
- '@esbuild/aix-ppc64@0.25.8':
- optional: true
-
- '@esbuild/android-arm64@0.25.0':
- optional: true
-
- '@esbuild/android-arm64@0.25.8':
- optional: true
-
- '@esbuild/android-arm@0.25.0':
- optional: true
-
- '@esbuild/android-arm@0.25.8':
- optional: true
-
- '@esbuild/android-x64@0.25.0':
- optional: true
-
- '@esbuild/android-x64@0.25.8':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.0':
- optional: true
-
- '@esbuild/darwin-arm64@0.25.8':
- optional: true
-
- '@esbuild/darwin-x64@0.25.0':
- optional: true
-
- '@esbuild/darwin-x64@0.25.8':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/freebsd-arm64@0.25.8':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.0':
- optional: true
-
- '@esbuild/freebsd-x64@0.25.8':
- optional: true
-
- '@esbuild/linux-arm64@0.25.0':
- optional: true
-
- '@esbuild/linux-arm64@0.25.8':
- optional: true
-
- '@esbuild/linux-arm@0.25.0':
- optional: true
-
- '@esbuild/linux-arm@0.25.8':
- optional: true
-
- '@esbuild/linux-ia32@0.25.0':
- optional: true
-
- '@esbuild/linux-ia32@0.25.8':
- optional: true
-
- '@esbuild/linux-loong64@0.25.0':
- optional: true
-
- '@esbuild/linux-loong64@0.25.8':
- optional: true
-
- '@esbuild/linux-mips64el@0.25.0':
- optional: true
-
- '@esbuild/linux-mips64el@0.25.8':
- optional: true
-
- '@esbuild/linux-ppc64@0.25.0':
- optional: true
-
- '@esbuild/linux-ppc64@0.25.8':
- optional: true
-
- '@esbuild/linux-riscv64@0.25.0':
- optional: true
-
- '@esbuild/linux-riscv64@0.25.8':
- optional: true
-
- '@esbuild/linux-s390x@0.25.0':
- optional: true
-
- '@esbuild/linux-s390x@0.25.8':
- optional: true
-
- '@esbuild/linux-x64@0.25.0':
- optional: true
-
- '@esbuild/linux-x64@0.25.8':
- optional: true
-
- '@esbuild/netbsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/netbsd-arm64@0.25.8':
- optional: true
-
- '@esbuild/netbsd-x64@0.25.0':
- optional: true
-
- '@esbuild/netbsd-x64@0.25.8':
- optional: true
-
- '@esbuild/openbsd-arm64@0.25.0':
- optional: true
-
- '@esbuild/openbsd-arm64@0.25.8':
- optional: true
-
- '@esbuild/openbsd-x64@0.25.0':
- optional: true
-
- '@esbuild/openbsd-x64@0.25.8':
- optional: true
-
- '@esbuild/openharmony-arm64@0.25.8':
- optional: true
-
- '@esbuild/sunos-x64@0.25.0':
- optional: true
-
- '@esbuild/sunos-x64@0.25.8':
- optional: true
-
- '@esbuild/win32-arm64@0.25.0':
- optional: true
-
- '@esbuild/win32-arm64@0.25.8':
- optional: true
-
- '@esbuild/win32-ia32@0.25.0':
- optional: true
-
- '@esbuild/win32-ia32@0.25.8':
- optional: true
-
- '@esbuild/win32-x64@0.25.0':
- optional: true
-
- '@esbuild/win32-x64@0.25.8':
- optional: true
-
- '@esm-bundle/chai@4.3.4-fix.0':
+ '@emnapi/wasi-threads@1.1.0':
dependencies:
- '@types/chai': 4.3.20
+ tslib: 2.8.1
+ optional: true
- '@git.zone/tsbuild@2.6.8':
+ '@esbuild/aix-ppc64@0.27.2':
+ optional: true
+
+ '@esbuild/android-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/android-arm@0.27.2':
+ optional: true
+
+ '@esbuild/android-x64@0.27.2':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/darwin-x64@0.27.2':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.27.2':
+ optional: true
+
+ '@esbuild/linux-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/linux-arm@0.27.2':
+ optional: true
+
+ '@esbuild/linux-ia32@0.27.2':
+ optional: true
+
+ '@esbuild/linux-loong64@0.27.2':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.27.2':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.27.2':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.27.2':
+ optional: true
+
+ '@esbuild/linux-s390x@0.27.2':
+ optional: true
+
+ '@esbuild/linux-x64@0.27.2':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.27.2':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/openbsd-x64@0.27.2':
+ optional: true
+
+ '@esbuild/openharmony-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/sunos-x64@0.27.2':
+ optional: true
+
+ '@esbuild/win32-arm64@0.27.2':
+ optional: true
+
+ '@esbuild/win32-ia32@0.27.2':
+ optional: true
+
+ '@esbuild/win32-x64@0.27.2':
+ optional: true
+
+ '@git.zone/tsbuild@4.1.2':
dependencies:
- '@git.zone/tspublish': 1.10.3
+ '@git.zone/tspublish': 1.11.0
'@push.rocks/early': 4.0.4
- '@push.rocks/smartcli': 4.0.11
+ '@push.rocks/smartcli': 4.0.20
'@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartfile': 11.2.7
+ '@push.rocks/smartfile': 13.1.2
+ '@push.rocks/smartfs': 1.3.1
'@push.rocks/smartlog': 3.1.10
'@push.rocks/smartpath': 6.0.0
'@push.rocks/smartpromise': 4.2.3
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- '@nuxt/kit'
- aws-crt
@@ -7240,37 +6854,44 @@ snapshots:
- supports-color
- vue
- '@git.zone/tsbundle@2.5.1':
+ '@git.zone/tsbundle@2.8.1':
dependencies:
'@push.rocks/early': 4.0.4
- '@push.rocks/smartcli': 4.0.11
+ '@push.rocks/npmextra': 5.3.3
+ '@push.rocks/smartcli': 4.0.20
'@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smartlog': 3.1.8
+ '@push.rocks/smartfs': 1.3.1
+ '@push.rocks/smartinteract': 2.0.16
+ '@push.rocks/smartlog': 3.1.10
'@push.rocks/smartlog-destination-local': 9.0.2
- '@push.rocks/smartpath': 5.1.0
+ '@push.rocks/smartpath': 6.0.0
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/smartspawn': 3.0.3
- '@rspack/core': 1.4.10
- '@types/html-minifier': 4.0.5
- esbuild: 0.25.8
+ '@rspack/core': 1.7.2
+ '@types/html-minifier': 4.0.6
+ esbuild: 0.27.2
html-minifier: 4.0.0
- rolldown: 1.0.0-beta.29
- typescript: 5.8.3
+ rolldown: 1.0.0-beta.52
+ typescript: 5.9.3
transitivePeerDependencies:
+ - '@nuxt/kit'
- '@swc/helpers'
+ - react
- supports-color
+ - vue
- '@git.zone/tspublish@1.10.3':
+ '@git.zone/tspublish@1.11.0':
dependencies:
'@push.rocks/consolecolor': 2.0.3
- '@push.rocks/smartcli': 4.0.11
+ '@push.rocks/npmextra': 5.3.3
+ '@push.rocks/smartcli': 4.0.20
'@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartfile': 11.2.7
+ '@push.rocks/smartfile': 13.1.2
+ '@push.rocks/smartfs': 1.3.1
'@push.rocks/smartlog': 3.1.10
'@push.rocks/smartnpm': 2.0.6
'@push.rocks/smartpath': 6.0.0
- '@push.rocks/smartrequest': 4.3.1
+ '@push.rocks/smartrequest': 5.0.1
'@push.rocks/smartshell': 3.3.0
transitivePeerDependencies:
- '@nuxt/kit'
@@ -7279,34 +6900,34 @@ snapshots:
- supports-color
- vue
- '@git.zone/tsrun@1.3.3':
+ '@git.zone/tsrun@2.0.1':
dependencies:
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smartshell': 3.2.3
- tsx: 4.19.3
+ '@push.rocks/smartfile': 13.1.2
+ '@push.rocks/smartshell': 3.3.0
+ tsx: 4.21.0
- '@git.zone/tstest@2.3.8(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)(typescript@5.9.3)':
+ '@git.zone/tstest@3.1.4(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)(typescript@5.9.3)':
dependencies:
- '@api.global/typedserver': 3.0.79
- '@git.zone/tsbundle': 2.5.1
- '@git.zone/tsrun': 1.3.3
+ '@api.global/typedserver': 3.0.80
+ '@git.zone/tsbundle': 2.8.1
+ '@git.zone/tsrun': 2.0.1
'@push.rocks/consolecolor': 2.0.3
'@push.rocks/qenv': 6.1.3
'@push.rocks/smartbrowser': 2.0.8(typescript@5.9.3)
'@push.rocks/smartchok': 1.1.1
'@push.rocks/smartcrypto': 2.0.4
'@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartenv': 5.0.13
+ '@push.rocks/smartenv': 6.0.0
'@push.rocks/smartexpect': 2.5.0
'@push.rocks/smartfile': 11.2.7
'@push.rocks/smartjson': 5.2.0
'@push.rocks/smartlog': 3.1.10
- '@push.rocks/smartmongo': 2.0.12(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
+ '@push.rocks/smartmongo': 2.0.14(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
'@push.rocks/smartnetwork': 4.4.0
'@push.rocks/smartpath': 6.0.0
'@push.rocks/smartpromise': 4.2.3
- '@push.rocks/smartrequest': 4.3.1
- '@push.rocks/smarts3': 2.2.6
+ '@push.rocks/smartrequest': 5.0.1
+ '@push.rocks/smarts3': 3.0.3
'@push.rocks/smartshell': 3.3.0
'@push.rocks/smarttime': 4.1.1
'@types/ws': 8.18.1
@@ -7331,8 +6952,6 @@ snapshots:
- utf-8-validate
- vue
- '@hapi/bourne@3.0.0': {}
-
'@happy-dom/global-registrator@15.11.7':
dependencies:
happy-dom: 15.11.7
@@ -7423,6 +7042,102 @@ snapshots:
'@img/sharp-win32-x64@0.34.3':
optional: true
+ '@inquirer/checkbox@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 2.0.0
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/confirm@4.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+
+ '@inquirer/core@9.2.1':
+ dependencies:
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 2.0.0
+ '@types/mute-stream': 0.0.4
+ '@types/node': 22.15.17
+ '@types/wrap-ansi': 3.0.0
+ ansi-escapes: 4.3.2
+ cli-width: 4.1.0
+ mute-stream: 1.0.0
+ signal-exit: 4.1.0
+ strip-ansi: 6.0.1
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/editor@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+ external-editor: 3.1.0
+
+ '@inquirer/expand@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/figures@1.0.15': {}
+
+ '@inquirer/input@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+
+ '@inquirer/number@2.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+
+ '@inquirer/password@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+ ansi-escapes: 4.3.2
+
+ '@inquirer/prompts@6.0.1':
+ dependencies:
+ '@inquirer/checkbox': 3.0.1
+ '@inquirer/confirm': 4.0.1
+ '@inquirer/editor': 3.0.1
+ '@inquirer/expand': 3.0.1
+ '@inquirer/input': 3.0.1
+ '@inquirer/number': 2.0.1
+ '@inquirer/password': 3.0.1
+ '@inquirer/rawlist': 3.0.1
+ '@inquirer/search': 2.0.1
+ '@inquirer/select': 3.0.1
+
+ '@inquirer/rawlist@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/type': 2.0.0
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/search@2.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 2.0.0
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/select@3.0.1':
+ dependencies:
+ '@inquirer/core': 9.2.1
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 2.0.0
+ ansi-escapes: 4.3.2
+ yoctocolors-cjs: 2.1.3
+
+ '@inquirer/type@2.0.0':
+ dependencies:
+ mute-stream: 1.0.0
+
'@isaacs/balanced-match@4.0.1': {}
'@isaacs/brace-expansion@5.0.0':
@@ -7438,23 +7153,6 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- '@jest/expect-utils@29.7.0':
- dependencies:
- jest-get-type: 29.6.3
-
- '@jest/schemas@29.6.3':
- dependencies:
- '@sinclair/typebox': 0.27.8
-
- '@jest/types@29.6.3':
- dependencies:
- '@jest/schemas': 29.6.3
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@types/node': 22.15.17
- '@types/yargs': 17.0.33
- chalk: 4.1.2
-
'@jimp/core@1.6.0':
dependencies:
'@jimp/file-ops': 1.6.0
@@ -7644,135 +7342,60 @@ snapshots:
'@jimp/types': 1.6.0
tinycolor2: 1.6.0
- '@koa/router@9.4.0':
- dependencies:
- debug: 4.4.0
- http-errors: 1.8.1
- koa-compose: 4.1.0
- methods: 1.1.2
- path-to-regexp: 6.3.0
- transitivePeerDependencies:
- - supports-color
-
'@leichtgewicht/ip-codec@2.0.5': {}
- '@lit-labs/ssr-dom-shim@1.3.0': {}
-
'@lit-labs/ssr-dom-shim@1.4.0': {}
- '@lit/reactive-element@2.0.4':
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.3.0
-
'@lit/reactive-element@2.1.1':
dependencies:
'@lit-labs/ssr-dom-shim': 1.4.0
'@mixmark-io/domino@2.2.0': {}
- '@module-federation/error-codes@0.17.0': {}
+ '@module-federation/error-codes@0.22.0': {}
- '@module-federation/runtime-core@0.17.0':
+ '@module-federation/runtime-core@0.22.0':
dependencies:
- '@module-federation/error-codes': 0.17.0
- '@module-federation/sdk': 0.17.0
+ '@module-federation/error-codes': 0.22.0
+ '@module-federation/sdk': 0.22.0
- '@module-federation/runtime-tools@0.17.0':
+ '@module-federation/runtime-tools@0.22.0':
dependencies:
- '@module-federation/runtime': 0.17.0
- '@module-federation/webpack-bundler-runtime': 0.17.0
+ '@module-federation/runtime': 0.22.0
+ '@module-federation/webpack-bundler-runtime': 0.22.0
- '@module-federation/runtime@0.17.0':
+ '@module-federation/runtime@0.22.0':
dependencies:
- '@module-federation/error-codes': 0.17.0
- '@module-federation/runtime-core': 0.17.0
- '@module-federation/sdk': 0.17.0
+ '@module-federation/error-codes': 0.22.0
+ '@module-federation/runtime-core': 0.22.0
+ '@module-federation/sdk': 0.22.0
- '@module-federation/sdk@0.17.0': {}
+ '@module-federation/sdk@0.22.0': {}
- '@module-federation/webpack-bundler-runtime@0.17.0':
+ '@module-federation/webpack-bundler-runtime@0.22.0':
dependencies:
- '@module-federation/runtime': 0.17.0
- '@module-federation/sdk': 0.17.0
+ '@module-federation/runtime': 0.22.0
+ '@module-federation/sdk': 0.22.0
'@mongodb-js/saslprep@1.2.2':
dependencies:
sparse-bitfield: 3.0.3
- '@napi-rs/wasm-runtime@1.0.1':
+ '@napi-rs/wasm-runtime@1.0.7':
dependencies:
- '@emnapi/core': 1.4.5
- '@emnapi/runtime': 1.4.5
- '@tybys/wasm-util': 0.10.0
+ '@emnapi/core': 1.8.1
+ '@emnapi/runtime': 1.8.1
+ '@tybys/wasm-util': 0.10.1
optional: true
- '@nodelib/fs.scandir@2.1.5':
+ '@napi-rs/wasm-runtime@1.1.1':
dependencies:
- '@nodelib/fs.stat': 2.0.5
- run-parallel: 1.2.0
+ '@emnapi/core': 1.8.1
+ '@emnapi/runtime': 1.8.1
+ '@tybys/wasm-util': 0.10.1
+ optional: true
- '@nodelib/fs.stat@2.0.5': {}
-
- '@nodelib/fs.walk@1.2.8':
- dependencies:
- '@nodelib/fs.scandir': 2.1.5
- fastq: 1.19.0
-
- '@oozcitak/dom@1.15.10':
- dependencies:
- '@oozcitak/infra': 1.0.8
- '@oozcitak/url': 1.0.4
- '@oozcitak/util': 8.3.8
-
- '@oozcitak/infra@1.0.8':
- dependencies:
- '@oozcitak/util': 8.3.8
-
- '@oozcitak/url@1.0.4':
- dependencies:
- '@oozcitak/infra': 1.0.8
- '@oozcitak/util': 8.3.8
-
- '@oozcitak/util@8.3.8': {}
-
- '@open-wc/dedupe-mixin@1.4.0': {}
-
- '@open-wc/scoped-elements@3.0.5':
- dependencies:
- '@open-wc/dedupe-mixin': 1.4.0
- lit: 3.2.1
-
- '@open-wc/semantic-dom-diff@0.20.1':
- dependencies:
- '@types/chai': 4.3.20
- '@web/test-runner-commands': 0.9.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@open-wc/testing-helpers@3.0.1':
- dependencies:
- '@open-wc/scoped-elements': 3.0.5
- lit: 3.2.1
- lit-html: 3.2.1
-
- '@open-wc/testing@4.0.0':
- dependencies:
- '@esm-bundle/chai': 4.3.4-fix.0
- '@open-wc/semantic-dom-diff': 0.20.1
- '@open-wc/testing-helpers': 3.0.1
- '@types/chai-dom': 1.11.3
- '@types/sinon-chai': 3.2.12
- chai-a11y-axe: 1.5.0
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@oxc-project/runtime@0.77.3': {}
-
- '@oxc-project/types@0.77.3': {}
+ '@oxc-project/types@0.99.0': {}
'@pdf-lib/standard-fonts@1.0.0':
dependencies:
@@ -7897,17 +7520,13 @@ snapshots:
- bare-buffer
- supports-color
- '@push.rocks/consolecolor@2.0.2':
- dependencies:
- ansi-256-colors: 1.1.0
-
'@push.rocks/consolecolor@2.0.3':
dependencies:
ansi-256-colors: 1.1.0
'@push.rocks/early@4.0.4':
dependencies:
- '@push.rocks/consolecolor': 2.0.2
+ '@push.rocks/consolecolor': 2.0.3
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/isohash@2.0.1':
@@ -7991,6 +7610,23 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@push.rocks/npmextra@5.3.3':
+ dependencies:
+ '@push.rocks/qenv': 6.1.3
+ '@push.rocks/smartfile': 11.2.7
+ '@push.rocks/smartjson': 5.2.0
+ '@push.rocks/smartlog': 3.1.10
+ '@push.rocks/smartpath': 6.0.0
+ '@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/smartrx': 3.0.10
+ '@push.rocks/taskbuffer': 3.4.0
+ '@tsclass/tsclass': 9.3.0
+ transitivePeerDependencies:
+ - '@nuxt/kit'
+ - react
+ - supports-color
+ - vue
+
'@push.rocks/qenv@6.1.3':
dependencies:
'@api.global/typedrequest': 3.1.10
@@ -8061,6 +7697,21 @@ snapshots:
transitivePeerDependencies:
- aws-crt
+ '@push.rocks/smartbucket@4.3.0':
+ dependencies:
+ '@aws-sdk/client-s3': 3.971.0
+ '@push.rocks/smartmime': 2.0.4
+ '@push.rocks/smartpath': 6.0.0
+ '@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/smartrx': 3.0.10
+ '@push.rocks/smartstream': 3.2.5
+ '@push.rocks/smartstring': 4.1.0
+ '@push.rocks/smartunique': 3.0.9
+ '@tsclass/tsclass': 9.3.0
+ minimatch: 10.1.1
+ transitivePeerDependencies:
+ - aws-crt
+
'@push.rocks/smartbuffer@3.0.5':
dependencies:
uint8array-extras: 1.4.0
@@ -8089,14 +7740,14 @@ snapshots:
chokidar: 4.0.3
picomatch: 4.0.3
- '@push.rocks/smartcli@4.0.11':
+ '@push.rocks/smartcli@4.0.20':
dependencies:
'@push.rocks/lik': 6.2.2
- '@push.rocks/smartlog': 3.1.8
+ '@push.rocks/smartlog': 3.1.10
'@push.rocks/smartobject': 1.0.12
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/smartrx': 3.0.10
- yargs-parser: 21.1.1
+ yargs-parser: 22.0.0
'@push.rocks/smartclickhouse@2.0.17':
dependencies:
@@ -8117,26 +7768,29 @@ snapshots:
dependencies:
'@push.rocks/lik': 6.2.2
'@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartlog': 3.0.9
- '@push.rocks/smartmongo': 2.0.12(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
+ '@push.rocks/smartlog': 3.1.10
+ '@push.rocks/smartmongo': 2.0.14(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/smartrx': 3.0.10
- '@push.rocks/smartstring': 4.0.15
+ '@push.rocks/smartstring': 4.1.0
'@push.rocks/smarttime': 4.1.1
'@push.rocks/smartunique': 3.0.9
- '@push.rocks/taskbuffer': 3.1.7
+ '@push.rocks/taskbuffer': 3.4.0
'@tsclass/tsclass': 8.2.1
mongodb: 6.16.0(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
transitivePeerDependencies:
- '@aws-sdk/credential-providers'
- '@mongodb-js/zstd'
+ - '@nuxt/kit'
- aws-crt
- gcp-metadata
- kerberos
- mongodb-client-encryption
+ - react
- snappy
- socks
- supports-color
+ - vue
'@push.rocks/smartdelay@3.0.5':
dependencies:
@@ -8166,6 +7820,10 @@ snapshots:
dependencies:
'@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/smartenv@6.0.0':
+ dependencies:
+ '@push.rocks/smartpromise': 4.2.3
+
'@push.rocks/smarterror@2.0.1':
dependencies:
clean-stack: 1.3.0
@@ -8178,23 +7836,16 @@ snapshots:
'@push.rocks/smartpromise': 4.2.3
tree-kill: 1.2.2
- '@push.rocks/smartexpect@2.4.2':
- dependencies:
- '@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartpromise': 4.2.3
- fast-deep-equal: 3.1.3
-
'@push.rocks/smartexpect@2.5.0':
dependencies:
'@push.rocks/smartdelay': 3.0.5
'@push.rocks/smartpromise': 4.2.3
fast-deep-equal: 3.1.3
- '@push.rocks/smartfeed@1.0.11':
+ '@push.rocks/smartfeed@1.4.0':
dependencies:
- '@tsclass/tsclass': 3.0.48
- feed: 4.2.2
- rss-parser: 3.13.0
+ '@tsclass/tsclass': 9.3.0
+ fast-xml-parser: 4.5.3
'@push.rocks/smartfile-interfaces@1.0.7': {}
@@ -8216,18 +7867,32 @@ snapshots:
glob: 11.0.3
js-yaml: 4.1.0
+ '@push.rocks/smartfile@13.1.2':
+ dependencies:
+ '@push.rocks/lik': 6.2.2
+ '@push.rocks/smartdelay': 3.0.5
+ '@push.rocks/smartfile-interfaces': 1.0.7
+ '@push.rocks/smartfs': 1.3.1
+ '@push.rocks/smarthash': 3.2.6
+ '@push.rocks/smartjson': 5.2.0
+ '@push.rocks/smartmime': 2.0.4
+ '@push.rocks/smartpath': 6.0.0
+ '@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/smartrequest': 4.3.1
+ '@push.rocks/smartstream': 3.2.5
+ '@types/js-yaml': 4.0.9
+ glob: 11.0.3
+ js-yaml: 4.1.0
+
+ '@push.rocks/smartfs@1.3.1':
+ dependencies:
+ '@push.rocks/smartpath': 6.0.0
+
'@push.rocks/smartguard@3.1.0':
dependencies:
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/smartrequest': 2.1.0
- '@push.rocks/smarthash@3.0.4':
- dependencies:
- '@push.rocks/smartjson': 5.0.20
- '@push.rocks/smartpromise': 4.2.3
- '@types/through2': 2.0.41
- through2: 4.0.2
-
'@push.rocks/smarthash@3.2.0':
dependencies:
'@push.rocks/smartenv': 5.0.12
@@ -8244,6 +7909,13 @@ snapshots:
'@types/through2': 2.0.41
through2: 4.0.2
+ '@push.rocks/smartinteract@2.0.16':
+ dependencies:
+ '@push.rocks/lik': 6.2.2
+ '@push.rocks/smartobject': 1.0.12
+ '@push.rocks/smartpromise': 4.2.3
+ inquirer: 11.1.0
+
'@push.rocks/smartjimp@1.2.0':
dependencies:
'@push.rocks/levelcache': 3.1.1
@@ -8276,7 +7948,7 @@ snapshots:
'@push.rocks/smartlog-destination-local@9.0.2':
dependencies:
- '@push.rocks/consolecolor': 2.0.2
+ '@push.rocks/consolecolor': 2.0.3
'@push.rocks/smartlog-interfaces': 3.0.2
'@push.rocks/smartpromise': 4.2.3
@@ -8290,20 +7962,6 @@ snapshots:
'@push.rocks/isounique': 1.0.5
'@push.rocks/smartlog-interfaces': 3.0.2
- '@push.rocks/smartlog@3.0.9':
- dependencies:
- '@api.global/typedrequest-interfaces': 3.0.19
- '@push.rocks/consolecolor': 2.0.2
- '@push.rocks/isounique': 1.0.5
- '@push.rocks/smartclickhouse': 2.0.17
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smarthash': 3.0.4
- '@push.rocks/smartpromise': 4.2.3
- '@push.rocks/smarttime': 4.1.1
- '@push.rocks/webrequest': 3.0.37
- '@tsclass/tsclass': 9.2.0
- ora: 8.2.0
-
'@push.rocks/smartlog@3.1.10':
dependencies:
'@api.global/typedrequest-interfaces': 3.0.19
@@ -8317,19 +7975,6 @@ snapshots:
'@push.rocks/webrequest': 3.0.37
'@tsclass/tsclass': 9.3.0
- '@push.rocks/smartlog@3.1.8':
- dependencies:
- '@api.global/typedrequest-interfaces': 3.0.19
- '@push.rocks/consolecolor': 2.0.2
- '@push.rocks/isounique': 1.0.5
- '@push.rocks/smartclickhouse': 2.0.17
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smarthash': 3.2.0
- '@push.rocks/smartpromise': 4.2.3
- '@push.rocks/smarttime': 4.1.1
- '@push.rocks/webrequest': 3.0.37
- '@tsclass/tsclass': 9.2.0
-
'@push.rocks/smartmanifest@2.0.2': {}
'@push.rocks/smartmarkdown@3.0.3':
@@ -8357,7 +8002,7 @@ snapshots:
file-type: 19.6.0
mime: 4.1.0
- '@push.rocks/smartmongo@2.0.12(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)':
+ '@push.rocks/smartmongo@2.0.14(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)':
dependencies:
'@push.rocks/mongodump': 1.0.8
'@push.rocks/smartdata': 5.15.1(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
@@ -8367,13 +8012,16 @@ snapshots:
transitivePeerDependencies:
- '@aws-sdk/credential-providers'
- '@mongodb-js/zstd'
+ - '@nuxt/kit'
- aws-crt
- gcp-metadata
- kerberos
- mongodb-client-encryption
+ - react
- snappy
- socks
- supports-color
+ - vue
'@push.rocks/smartnetwork@4.1.2':
dependencies:
@@ -8522,6 +8170,15 @@ snapshots:
agentkeepalive: 4.6.0
form-data: 4.0.4
+ '@push.rocks/smartrequest@5.0.1':
+ dependencies:
+ '@push.rocks/smartenv': 6.0.0
+ '@push.rocks/smartpath': 6.0.0
+ '@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/smarturl': 3.1.0
+ agentkeepalive: 4.6.0
+ form-data: 4.0.5
+
'@push.rocks/smartrouter@1.3.3':
dependencies:
'@push.rocks/lik': 6.2.2
@@ -8538,29 +8195,15 @@ snapshots:
'@push.rocks/smartpromise': 4.2.3
rxjs: 7.8.2
- '@push.rocks/smarts3@2.2.5':
+ '@push.rocks/smarts3@3.0.3':
dependencies:
- '@push.rocks/smartbucket': 3.3.7
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smartpath': 5.1.0
- '@tsclass/tsclass': 4.4.0
- '@types/s3rver': 3.7.4
- s3rver: 3.7.1
- transitivePeerDependencies:
- - aws-crt
- - supports-color
-
- '@push.rocks/smarts3@2.2.6':
- dependencies:
- '@push.rocks/smartbucket': 3.3.10
- '@push.rocks/smartfile': 11.2.7
+ '@push.rocks/smartbucket': 4.3.0
+ '@push.rocks/smartfs': 1.3.1
'@push.rocks/smartpath': 6.0.0
+ '@push.rocks/smartxml': 2.0.0
'@tsclass/tsclass': 9.3.0
- '@types/s3rver': 3.7.4
- s3rver: 3.7.1
transitivePeerDependencies:
- aws-crt
- - supports-color
'@push.rocks/smartshell@3.2.3':
dependencies:
@@ -8580,19 +8223,19 @@ snapshots:
tree-kill: 1.2.2
which: 5.0.0
- '@push.rocks/smartsitemap@2.0.3':
+ '@push.rocks/smartsitemap@2.0.4':
dependencies:
'@push.rocks/smartcache': 1.0.18
- '@push.rocks/smartfeed': 1.0.11
- '@push.rocks/smartxml': 1.1.1
- '@push.rocks/smartyaml': 2.0.5
- '@push.rocks/webrequest': 3.0.37
- '@tsclass/tsclass': 4.4.4
+ '@push.rocks/smartfeed': 1.4.0
+ '@push.rocks/smartxml': 2.0.0
+ '@push.rocks/smartyaml': 3.0.4
+ '@push.rocks/webrequest': 4.0.1
+ '@tsclass/tsclass': 9.3.0
'@push.rocks/smartsocket@2.1.0':
dependencies:
'@api.global/typedrequest-interfaces': 3.0.19
- '@api.global/typedserver': 3.0.79
+ '@api.global/typedserver': 3.0.80
'@push.rocks/isohash': 2.0.1
'@push.rocks/isounique': 1.0.5
'@push.rocks/lik': 6.2.2
@@ -8678,47 +8321,18 @@ snapshots:
'@types/semver': 7.7.1
semver: 7.7.3
- '@push.rocks/smartxml@1.1.1':
+ '@push.rocks/smartxml@2.0.0':
dependencies:
- fast-xml-parser: 4.5.3
- xmlbuilder2: 3.1.1
+ fast-xml-parser: 5.3.3
'@push.rocks/smartyaml@2.0.5':
dependencies:
'@types/js-yaml': 3.12.10
js-yaml: 3.14.1
- '@push.rocks/tapbundle@6.0.3(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)':
+ '@push.rocks/smartyaml@3.0.4':
dependencies:
- '@open-wc/testing': 4.0.0
- '@push.rocks/consolecolor': 2.0.2
- '@push.rocks/qenv': 6.1.3
- '@push.rocks/smartcrypto': 2.0.4
- '@push.rocks/smartdelay': 3.0.5
- '@push.rocks/smartenv': 5.0.12
- '@push.rocks/smartexpect': 2.4.2
- '@push.rocks/smartfile': 11.2.7
- '@push.rocks/smartjson': 5.0.20
- '@push.rocks/smartmongo': 2.0.12(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
- '@push.rocks/smartpath': 5.1.0
- '@push.rocks/smartpromise': 4.2.3
- '@push.rocks/smartrequest': 2.1.0
- '@push.rocks/smarts3': 2.2.5
- '@push.rocks/smartshell': 3.2.3
- '@push.rocks/smarttime': 4.1.1
- expect: 29.7.0
- transitivePeerDependencies:
- - '@aws-sdk/credential-providers'
- - '@mongodb-js/zstd'
- - aws-crt
- - bufferutil
- - gcp-metadata
- - kerberos
- - mongodb-client-encryption
- - snappy
- - socks
- - supports-color
- - utf-8-validate
+ yaml: 2.8.2
'@push.rocks/taskbuffer@3.1.7':
dependencies:
@@ -8754,6 +8368,14 @@ snapshots:
'@push.rocks/smartpromise': 4.2.3
'@push.rocks/webstore': 2.0.20
+ '@push.rocks/webrequest@4.0.1':
+ dependencies:
+ '@push.rocks/smartdelay': 3.0.5
+ '@push.rocks/smartenv': 5.0.13
+ '@push.rocks/smartjson': 5.2.0
+ '@push.rocks/smartpromise': 4.2.3
+ '@push.rocks/webstore': 2.0.20
+
'@push.rocks/websetup@3.0.19':
dependencies:
'@pushrocks/smartdelay': 3.0.1
@@ -8891,7 +8513,7 @@ snapshots:
'@pushrocks/smartpromise': 3.1.10
'@pushrocks/smarturl': 2.0.1
agentkeepalive: 4.6.0
- form-data: 4.0.2
+ form-data: 4.0.4
'@pushrocks/smartrx@2.0.27':
dependencies:
@@ -8938,109 +8560,107 @@ snapshots:
'@pushrocks/smarturl@2.0.1': {}
- '@rolldown/binding-android-arm64@1.0.0-beta.29':
+ '@rolldown/binding-android-arm64@1.0.0-beta.52':
optional: true
- '@rolldown/binding-darwin-arm64@1.0.0-beta.29':
+ '@rolldown/binding-darwin-arm64@1.0.0-beta.52':
optional: true
- '@rolldown/binding-darwin-x64@1.0.0-beta.29':
+ '@rolldown/binding-darwin-x64@1.0.0-beta.52':
optional: true
- '@rolldown/binding-freebsd-x64@1.0.0-beta.29':
+ '@rolldown/binding-freebsd-x64@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.29':
+ '@rolldown/binding-linux-arm-gnueabihf@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.29':
+ '@rolldown/binding-linux-arm64-gnu@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-arm64-musl@1.0.0-beta.29':
+ '@rolldown/binding-linux-arm64-musl@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-arm64-ohos@1.0.0-beta.29':
+ '@rolldown/binding-linux-x64-gnu@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-x64-gnu@1.0.0-beta.29':
+ '@rolldown/binding-linux-x64-musl@1.0.0-beta.52':
optional: true
- '@rolldown/binding-linux-x64-musl@1.0.0-beta.29':
+ '@rolldown/binding-openharmony-arm64@1.0.0-beta.52':
optional: true
- '@rolldown/binding-wasm32-wasi@1.0.0-beta.29':
+ '@rolldown/binding-wasm32-wasi@1.0.0-beta.52':
dependencies:
- '@napi-rs/wasm-runtime': 1.0.1
+ '@napi-rs/wasm-runtime': 1.1.1
optional: true
- '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.29':
+ '@rolldown/binding-win32-arm64-msvc@1.0.0-beta.52':
optional: true
- '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.29':
+ '@rolldown/binding-win32-ia32-msvc@1.0.0-beta.52':
optional: true
- '@rolldown/binding-win32-x64-msvc@1.0.0-beta.29':
+ '@rolldown/binding-win32-x64-msvc@1.0.0-beta.52':
optional: true
- '@rolldown/pluginutils@1.0.0-beta.29': {}
+ '@rolldown/pluginutils@1.0.0-beta.52': {}
- '@rspack/binding-darwin-arm64@1.4.10':
+ '@rspack/binding-darwin-arm64@1.7.2':
optional: true
- '@rspack/binding-darwin-x64@1.4.10':
+ '@rspack/binding-darwin-x64@1.7.2':
optional: true
- '@rspack/binding-linux-arm64-gnu@1.4.10':
+ '@rspack/binding-linux-arm64-gnu@1.7.2':
optional: true
- '@rspack/binding-linux-arm64-musl@1.4.10':
+ '@rspack/binding-linux-arm64-musl@1.7.2':
optional: true
- '@rspack/binding-linux-x64-gnu@1.4.10':
+ '@rspack/binding-linux-x64-gnu@1.7.2':
optional: true
- '@rspack/binding-linux-x64-musl@1.4.10':
+ '@rspack/binding-linux-x64-musl@1.7.2':
optional: true
- '@rspack/binding-wasm32-wasi@1.4.10':
+ '@rspack/binding-wasm32-wasi@1.7.2':
dependencies:
- '@napi-rs/wasm-runtime': 1.0.1
+ '@napi-rs/wasm-runtime': 1.0.7
optional: true
- '@rspack/binding-win32-arm64-msvc@1.4.10':
+ '@rspack/binding-win32-arm64-msvc@1.7.2':
optional: true
- '@rspack/binding-win32-ia32-msvc@1.4.10':
+ '@rspack/binding-win32-ia32-msvc@1.7.2':
optional: true
- '@rspack/binding-win32-x64-msvc@1.4.10':
+ '@rspack/binding-win32-x64-msvc@1.7.2':
optional: true
- '@rspack/binding@1.4.10':
+ '@rspack/binding@1.7.2':
optionalDependencies:
- '@rspack/binding-darwin-arm64': 1.4.10
- '@rspack/binding-darwin-x64': 1.4.10
- '@rspack/binding-linux-arm64-gnu': 1.4.10
- '@rspack/binding-linux-arm64-musl': 1.4.10
- '@rspack/binding-linux-x64-gnu': 1.4.10
- '@rspack/binding-linux-x64-musl': 1.4.10
- '@rspack/binding-wasm32-wasi': 1.4.10
- '@rspack/binding-win32-arm64-msvc': 1.4.10
- '@rspack/binding-win32-ia32-msvc': 1.4.10
- '@rspack/binding-win32-x64-msvc': 1.4.10
+ '@rspack/binding-darwin-arm64': 1.7.2
+ '@rspack/binding-darwin-x64': 1.7.2
+ '@rspack/binding-linux-arm64-gnu': 1.7.2
+ '@rspack/binding-linux-arm64-musl': 1.7.2
+ '@rspack/binding-linux-x64-gnu': 1.7.2
+ '@rspack/binding-linux-x64-musl': 1.7.2
+ '@rspack/binding-wasm32-wasi': 1.7.2
+ '@rspack/binding-win32-arm64-msvc': 1.7.2
+ '@rspack/binding-win32-ia32-msvc': 1.7.2
+ '@rspack/binding-win32-x64-msvc': 1.7.2
- '@rspack/core@1.4.10':
+ '@rspack/core@1.7.2':
dependencies:
- '@module-federation/runtime-tools': 0.17.0
- '@rspack/binding': 1.4.10
- '@rspack/lite-tapable': 1.0.1
+ '@module-federation/runtime-tools': 0.22.0
+ '@rspack/binding': 1.7.2
+ '@rspack/lite-tapable': 1.1.0
- '@rspack/lite-tapable@1.0.1': {}
+ '@rspack/lite-tapable@1.1.0': {}
'@sec-ant/readable-stream@0.4.1': {}
- '@sinclair/typebox@0.27.8': {}
-
'@sindresorhus/is@5.6.0': {}
'@smithy/abort-controller@4.0.1':
@@ -9048,17 +8668,16 @@ snapshots:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/abort-controller@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/abort-controller@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/abort-controller@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/chunked-blob-reader-native@4.0.0':
dependencies:
'@smithy/util-base64': 4.0.0
@@ -9085,15 +8704,6 @@ snapshots:
'@smithy/util-middleware': 4.0.1
tslib: 2.8.1
- '@smithy/config-resolver@4.1.2':
- dependencies:
- '@smithy/node-config-provider': 4.1.1
- '@smithy/types': 4.2.0
- '@smithy/util-config-provider': 4.0.0
- '@smithy/util-middleware': 4.0.2
- tslib: 2.8.1
- optional: true
-
'@smithy/config-resolver@4.3.0':
dependencies:
'@smithy/node-config-provider': 4.3.0
@@ -9102,6 +8712,15 @@ snapshots:
'@smithy/util-middleware': 4.2.0
tslib: 2.8.1
+ '@smithy/config-resolver@4.4.6':
+ dependencies:
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-config-provider': 4.2.0
+ '@smithy/util-endpoints': 3.2.8
+ '@smithy/util-middleware': 4.2.8
+ tslib: 2.8.1
+
'@smithy/core@3.1.5':
dependencies:
'@smithy/middleware-serde': 4.0.2
@@ -9126,17 +8745,18 @@ snapshots:
'@smithy/uuid': 1.1.0
tslib: 2.8.1
- '@smithy/core@3.3.2':
+ '@smithy/core@3.20.7':
dependencies:
- '@smithy/middleware-serde': 4.0.4
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
- '@smithy/util-body-length-browser': 4.0.0
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-stream': 4.2.0
- '@smithy/util-utf8': 4.0.0
+ '@smithy/middleware-serde': 4.2.9
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-body-length-browser': 4.2.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-stream': 4.5.10
+ '@smithy/util-utf8': 4.2.0
+ '@smithy/uuid': 1.1.0
tslib: 2.8.1
- optional: true
'@smithy/credential-provider-imds@4.0.1':
dependencies:
@@ -9146,15 +8766,6 @@ snapshots:
'@smithy/url-parser': 4.0.1
tslib: 2.8.1
- '@smithy/credential-provider-imds@4.0.4':
- dependencies:
- '@smithy/node-config-provider': 4.1.1
- '@smithy/property-provider': 4.0.2
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
- tslib: 2.8.1
- optional: true
-
'@smithy/credential-provider-imds@4.2.0':
dependencies:
'@smithy/node-config-provider': 4.3.0
@@ -9163,6 +8774,14 @@ snapshots:
'@smithy/url-parser': 4.2.0
tslib: 2.8.1
+ '@smithy/credential-provider-imds@4.2.8':
+ dependencies:
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ tslib: 2.8.1
+
'@smithy/eventstream-codec@4.0.1':
dependencies:
'@aws-crypto/crc32': 5.2.0
@@ -9177,6 +8796,13 @@ snapshots:
'@smithy/util-hex-encoding': 4.2.0
tslib: 2.8.1
+ '@smithy/eventstream-codec@4.2.8':
+ dependencies:
+ '@aws-crypto/crc32': 5.2.0
+ '@smithy/types': 4.12.0
+ '@smithy/util-hex-encoding': 4.2.0
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-browser@4.0.1':
dependencies:
'@smithy/eventstream-serde-universal': 4.0.1
@@ -9189,6 +8815,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-browser@4.2.8':
+ dependencies:
+ '@smithy/eventstream-serde-universal': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-config-resolver@4.0.1':
dependencies:
'@smithy/types': 4.1.0
@@ -9199,6 +8831,11 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-config-resolver@4.3.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-node@4.0.1':
dependencies:
'@smithy/eventstream-serde-universal': 4.0.1
@@ -9211,6 +8848,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-node@4.2.8':
+ dependencies:
+ '@smithy/eventstream-serde-universal': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/eventstream-serde-universal@4.0.1':
dependencies:
'@smithy/eventstream-codec': 4.0.1
@@ -9223,6 +8866,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/eventstream-serde-universal@4.2.8':
+ dependencies:
+ '@smithy/eventstream-codec': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/fetch-http-handler@5.0.1':
dependencies:
'@smithy/protocol-http': 5.0.1
@@ -9231,15 +8880,6 @@ snapshots:
'@smithy/util-base64': 4.0.0
tslib: 2.8.1
- '@smithy/fetch-http-handler@5.0.2':
- dependencies:
- '@smithy/protocol-http': 5.1.0
- '@smithy/querystring-builder': 4.0.2
- '@smithy/types': 4.2.0
- '@smithy/util-base64': 4.0.0
- tslib: 2.8.1
- optional: true
-
'@smithy/fetch-http-handler@5.3.1':
dependencies:
'@smithy/protocol-http': 5.3.0
@@ -9248,6 +8888,14 @@ snapshots:
'@smithy/util-base64': 4.3.0
tslib: 2.8.1
+ '@smithy/fetch-http-handler@5.3.9':
+ dependencies:
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/querystring-builder': 4.2.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-base64': 4.3.0
+ tslib: 2.8.1
+
'@smithy/hash-blob-browser@4.0.1':
dependencies:
'@smithy/chunked-blob-reader': 5.0.0
@@ -9262,6 +8910,13 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/hash-blob-browser@4.2.9':
+ dependencies:
+ '@smithy/chunked-blob-reader': 5.2.0
+ '@smithy/chunked-blob-reader-native': 4.2.1
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/hash-node@4.0.1':
dependencies:
'@smithy/types': 4.1.0
@@ -9269,14 +8924,6 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/hash-node@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-utf8': 4.0.0
- tslib: 2.8.1
- optional: true
-
'@smithy/hash-node@4.2.0':
dependencies:
'@smithy/types': 4.6.0
@@ -9284,6 +8931,13 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@smithy/hash-node@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ '@smithy/util-buffer-from': 4.2.0
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@smithy/hash-stream-node@4.0.1':
dependencies:
'@smithy/types': 4.1.0
@@ -9296,22 +8950,27 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@smithy/hash-stream-node@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@smithy/invalid-dependency@4.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/invalid-dependency@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/invalid-dependency@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/invalid-dependency@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/is-array-buffer@2.2.0':
dependencies:
tslib: 2.8.1
@@ -9336,25 +8995,30 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@smithy/md5-js@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@smithy/middleware-content-length@4.0.1':
dependencies:
'@smithy/protocol-http': 5.0.1
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/middleware-content-length@4.0.2':
- dependencies:
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/middleware-content-length@4.2.0':
dependencies:
'@smithy/protocol-http': 5.3.0
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/middleware-content-length@4.2.8':
+ dependencies:
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/middleware-endpoint@4.0.6':
dependencies:
'@smithy/core': 3.1.5
@@ -9366,18 +9030,6 @@ snapshots:
'@smithy/util-middleware': 4.0.1
tslib: 2.8.1
- '@smithy/middleware-endpoint@4.1.5':
- dependencies:
- '@smithy/core': 3.3.2
- '@smithy/middleware-serde': 4.0.4
- '@smithy/node-config-provider': 4.1.1
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
- '@smithy/url-parser': 4.0.2
- '@smithy/util-middleware': 4.0.2
- tslib: 2.8.1
- optional: true
-
'@smithy/middleware-endpoint@4.3.1':
dependencies:
'@smithy/core': 3.15.0
@@ -9389,6 +9041,17 @@ snapshots:
'@smithy/util-middleware': 4.2.0
tslib: 2.8.1
+ '@smithy/middleware-endpoint@4.4.8':
+ dependencies:
+ '@smithy/core': 3.20.7
+ '@smithy/middleware-serde': 4.2.9
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ '@smithy/url-parser': 4.2.8
+ '@smithy/util-middleware': 4.2.8
+ tslib: 2.8.1
+
'@smithy/middleware-retry@4.0.7':
dependencies:
'@smithy/node-config-provider': 4.0.1
@@ -9401,19 +9064,6 @@ snapshots:
tslib: 2.8.1
uuid: 9.0.1
- '@smithy/middleware-retry@4.1.6':
- dependencies:
- '@smithy/node-config-provider': 4.1.1
- '@smithy/protocol-http': 5.1.0
- '@smithy/service-error-classification': 4.0.3
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-retry': 4.0.3
- tslib: 2.8.1
- uuid: 9.0.1
- optional: true
-
'@smithy/middleware-retry@4.4.1':
dependencies:
'@smithy/node-config-provider': 4.3.0
@@ -9426,40 +9076,50 @@ snapshots:
'@smithy/uuid': 1.1.0
tslib: 2.8.1
+ '@smithy/middleware-retry@4.4.24':
+ dependencies:
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/service-error-classification': 4.2.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-retry': 4.2.8
+ '@smithy/uuid': 1.1.0
+ tslib: 2.8.1
+
'@smithy/middleware-serde@4.0.2':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/middleware-serde@4.0.4':
- dependencies:
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/middleware-serde@4.2.0':
dependencies:
'@smithy/protocol-http': 5.3.0
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/middleware-serde@4.2.9':
+ dependencies:
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/middleware-stack@4.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/middleware-stack@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/middleware-stack@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/middleware-stack@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/node-config-provider@4.0.1':
dependencies:
'@smithy/property-provider': 4.0.1
@@ -9467,14 +9127,6 @@ snapshots:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/node-config-provider@4.1.1':
- dependencies:
- '@smithy/property-provider': 4.0.2
- '@smithy/shared-ini-file-loader': 4.0.2
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/node-config-provider@4.3.0':
dependencies:
'@smithy/property-provider': 4.2.0
@@ -9482,6 +9134,13 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/node-config-provider@4.3.8':
+ dependencies:
+ '@smithy/property-provider': 4.2.8
+ '@smithy/shared-ini-file-loader': 4.4.3
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/node-http-handler@4.0.3':
dependencies:
'@smithy/abort-controller': 4.0.1
@@ -9490,15 +9149,6 @@ snapshots:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/node-http-handler@4.0.4':
- dependencies:
- '@smithy/abort-controller': 4.0.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/querystring-builder': 4.0.2
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/node-http-handler@4.3.0':
dependencies:
'@smithy/abort-controller': 4.2.0
@@ -9507,102 +9157,104 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/node-http-handler@4.4.8':
+ dependencies:
+ '@smithy/abort-controller': 4.2.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/querystring-builder': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/property-provider@4.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/property-provider@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/property-provider@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/property-provider@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/protocol-http@5.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/protocol-http@5.1.0':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/protocol-http@5.3.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/protocol-http@5.3.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/querystring-builder@4.0.1':
dependencies:
'@smithy/types': 4.1.0
'@smithy/util-uri-escape': 4.0.0
tslib: 2.8.1
- '@smithy/querystring-builder@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- '@smithy/util-uri-escape': 4.0.0
- tslib: 2.8.1
- optional: true
-
'@smithy/querystring-builder@4.2.0':
dependencies:
'@smithy/types': 4.6.0
'@smithy/util-uri-escape': 4.2.0
tslib: 2.8.1
+ '@smithy/querystring-builder@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ '@smithy/util-uri-escape': 4.2.0
+ tslib: 2.8.1
+
'@smithy/querystring-parser@4.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/querystring-parser@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/querystring-parser@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/querystring-parser@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/service-error-classification@4.0.1':
dependencies:
'@smithy/types': 4.1.0
- '@smithy/service-error-classification@4.0.3':
- dependencies:
- '@smithy/types': 4.2.0
- optional: true
-
'@smithy/service-error-classification@4.2.0':
dependencies:
'@smithy/types': 4.6.0
+ '@smithy/service-error-classification@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+
'@smithy/shared-ini-file-loader@4.0.1':
dependencies:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/shared-ini-file-loader@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/shared-ini-file-loader@4.3.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/shared-ini-file-loader@4.4.3':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/signature-v4@5.0.1':
dependencies:
'@smithy/is-array-buffer': 4.0.0
@@ -9614,18 +9266,6 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/signature-v4@5.1.0':
- dependencies:
- '@smithy/is-array-buffer': 4.0.0
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-middleware': 4.0.2
- '@smithy/util-uri-escape': 4.0.0
- '@smithy/util-utf8': 4.0.0
- tslib: 2.8.1
- optional: true
-
'@smithy/signature-v4@5.3.0':
dependencies:
'@smithy/is-array-buffer': 4.2.0
@@ -9637,6 +9277,17 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@smithy/signature-v4@5.3.8':
+ dependencies:
+ '@smithy/is-array-buffer': 4.2.0
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-hex-encoding': 4.2.0
+ '@smithy/util-middleware': 4.2.8
+ '@smithy/util-uri-escape': 4.2.0
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@smithy/smithy-client@4.1.6':
dependencies:
'@smithy/core': 3.1.5
@@ -9647,16 +9298,15 @@ snapshots:
'@smithy/util-stream': 4.1.2
tslib: 2.8.1
- '@smithy/smithy-client@4.2.5':
+ '@smithy/smithy-client@4.10.9':
dependencies:
- '@smithy/core': 3.3.2
- '@smithy/middleware-endpoint': 4.1.5
- '@smithy/middleware-stack': 4.0.2
- '@smithy/protocol-http': 5.1.0
- '@smithy/types': 4.2.0
- '@smithy/util-stream': 4.2.0
+ '@smithy/core': 3.20.7
+ '@smithy/middleware-endpoint': 4.4.8
+ '@smithy/middleware-stack': 4.2.8
+ '@smithy/protocol-http': 5.3.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-stream': 4.5.10
tslib: 2.8.1
- optional: true
'@smithy/smithy-client@4.7.1':
dependencies:
@@ -9672,10 +9322,9 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@smithy/types@4.2.0':
+ '@smithy/types@4.12.0':
dependencies:
tslib: 2.8.1
- optional: true
'@smithy/types@4.6.0':
dependencies:
@@ -9687,19 +9336,18 @@ snapshots:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/url-parser@4.0.2':
- dependencies:
- '@smithy/querystring-parser': 4.0.2
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/url-parser@4.2.0':
dependencies:
'@smithy/querystring-parser': 4.2.0
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/url-parser@4.2.8':
+ dependencies:
+ '@smithy/querystring-parser': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/util-base64@4.0.0':
dependencies:
'@smithy/util-buffer-from': 4.0.0
@@ -9751,15 +9399,6 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@smithy/util-defaults-mode-browser@4.0.13':
- dependencies:
- '@smithy/property-provider': 4.0.2
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
- bowser: 2.11.0
- tslib: 2.8.1
- optional: true
-
'@smithy/util-defaults-mode-browser@4.0.7':
dependencies:
'@smithy/property-provider': 4.0.1
@@ -9775,16 +9414,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
- '@smithy/util-defaults-mode-node@4.0.13':
+ '@smithy/util-defaults-mode-browser@4.3.23':
dependencies:
- '@smithy/config-resolver': 4.1.2
- '@smithy/credential-provider-imds': 4.0.4
- '@smithy/node-config-provider': 4.1.1
- '@smithy/property-provider': 4.0.2
- '@smithy/smithy-client': 4.2.5
- '@smithy/types': 4.2.0
+ '@smithy/property-provider': 4.2.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
tslib: 2.8.1
- optional: true
'@smithy/util-defaults-mode-node@4.0.7':
dependencies:
@@ -9806,25 +9441,34 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/util-defaults-mode-node@4.2.26':
+ dependencies:
+ '@smithy/config-resolver': 4.4.6
+ '@smithy/credential-provider-imds': 4.2.8
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/property-provider': 4.2.8
+ '@smithy/smithy-client': 4.10.9
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/util-endpoints@3.0.1':
dependencies:
'@smithy/node-config-provider': 4.0.1
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/util-endpoints@3.0.4':
- dependencies:
- '@smithy/node-config-provider': 4.1.1
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/util-endpoints@3.2.0':
dependencies:
'@smithy/node-config-provider': 4.3.0
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/util-endpoints@3.2.8':
+ dependencies:
+ '@smithy/node-config-provider': 4.3.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/util-hex-encoding@4.0.0':
dependencies:
tslib: 2.8.1
@@ -9838,36 +9482,34 @@ snapshots:
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/util-middleware@4.0.2':
- dependencies:
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/util-middleware@4.2.0':
dependencies:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/util-middleware@4.2.8':
+ dependencies:
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/util-retry@4.0.1':
dependencies:
'@smithy/service-error-classification': 4.0.1
'@smithy/types': 4.1.0
tslib: 2.8.1
- '@smithy/util-retry@4.0.3':
- dependencies:
- '@smithy/service-error-classification': 4.0.3
- '@smithy/types': 4.2.0
- tslib: 2.8.1
- optional: true
-
'@smithy/util-retry@4.2.0':
dependencies:
'@smithy/service-error-classification': 4.2.0
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/util-retry@4.2.8':
+ dependencies:
+ '@smithy/service-error-classification': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/util-stream@4.1.2':
dependencies:
'@smithy/fetch-http-handler': 5.0.1
@@ -9879,18 +9521,6 @@ snapshots:
'@smithy/util-utf8': 4.0.0
tslib: 2.8.1
- '@smithy/util-stream@4.2.0':
- dependencies:
- '@smithy/fetch-http-handler': 5.0.2
- '@smithy/node-http-handler': 4.0.4
- '@smithy/types': 4.2.0
- '@smithy/util-base64': 4.0.0
- '@smithy/util-buffer-from': 4.0.0
- '@smithy/util-hex-encoding': 4.0.0
- '@smithy/util-utf8': 4.0.0
- tslib: 2.8.1
- optional: true
-
'@smithy/util-stream@4.5.0':
dependencies:
'@smithy/fetch-http-handler': 5.3.1
@@ -9902,6 +9532,17 @@ snapshots:
'@smithy/util-utf8': 4.2.0
tslib: 2.8.1
+ '@smithy/util-stream@4.5.10':
+ dependencies:
+ '@smithy/fetch-http-handler': 5.3.9
+ '@smithy/node-http-handler': 4.4.8
+ '@smithy/types': 4.12.0
+ '@smithy/util-base64': 4.3.0
+ '@smithy/util-buffer-from': 4.2.0
+ '@smithy/util-hex-encoding': 4.2.0
+ '@smithy/util-utf8': 4.2.0
+ tslib: 2.8.1
+
'@smithy/util-uri-escape@4.0.0':
dependencies:
tslib: 2.8.1
@@ -9937,6 +9578,12 @@ snapshots:
'@smithy/types': 4.6.0
tslib: 2.8.1
+ '@smithy/util-waiter@4.2.8':
+ dependencies:
+ '@smithy/abort-controller': 4.2.8
+ '@smithy/types': 4.12.0
+ tslib: 2.8.1
+
'@smithy/uuid@1.1.0':
dependencies:
tslib: 2.8.1
@@ -9961,10 +9608,6 @@ snapshots:
'@tootallnate/quickjs-emscripten@0.23.0': {}
- '@tsclass/tsclass@3.0.48':
- dependencies:
- type-fest: 2.19.0
-
'@tsclass/tsclass@4.4.0':
dependencies:
type-fest: 4.35.0
@@ -9985,26 +9628,15 @@ snapshots:
dependencies:
type-fest: 4.41.0
- '@tybys/wasm-util@0.10.0':
+ '@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
optional: true
- '@types/accepts@1.3.7':
- dependencies:
- '@types/node': 22.15.17
-
- '@types/babel__code-frame@7.0.6': {}
-
'@types/bn.js@5.2.0':
dependencies:
'@types/node': 22.15.17
- '@types/body-parser@1.19.5':
- dependencies:
- '@types/connect': 3.4.38
- '@types/node': 22.15.17
-
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
@@ -10012,53 +9644,23 @@ snapshots:
'@types/buffer-json@2.0.3': {}
- '@types/chai-dom@1.11.3':
- dependencies:
- '@types/chai': 5.0.1
-
- '@types/chai@4.3.20': {}
-
- '@types/chai@5.0.1':
- dependencies:
- '@types/deep-eql': 4.0.2
-
'@types/clean-css@4.2.11':
dependencies:
'@types/node': 22.15.17
source-map: 0.6.1
- '@types/co-body@6.1.3':
- dependencies:
- '@types/node': 22.15.17
- '@types/qs': 6.9.18
-
'@types/connect@3.4.38':
dependencies:
'@types/node': 22.15.17
- '@types/content-disposition@0.5.8': {}
-
- '@types/convert-source-map@2.0.3': {}
-
- '@types/cookies@0.9.0':
- dependencies:
- '@types/connect': 3.4.38
- '@types/express': 5.0.0
- '@types/keygrip': 1.0.6
- '@types/node': 22.15.17
-
'@types/cors@2.8.19':
dependencies:
'@types/node': 22.15.17
- '@types/debounce@1.2.4': {}
-
'@types/debug@4.1.12':
dependencies:
'@types/ms': 2.1.0
- '@types/deep-eql@4.0.2': {}
-
'@types/default-gateway@7.2.2': {}
'@types/dns-packet@5.6.5':
@@ -10069,13 +9671,6 @@ snapshots:
dependencies:
'@types/bn.js': 5.2.0
- '@types/express-serve-static-core@5.0.6':
- dependencies:
- '@types/node': 22.15.17
- '@types/qs': 6.9.18
- '@types/range-parser': 1.2.7
- '@types/send': 0.17.4
-
'@types/express-serve-static-core@5.0.7':
dependencies:
'@types/node': 22.15.17
@@ -10083,19 +9678,18 @@ snapshots:
'@types/range-parser': 1.2.7
'@types/send': 0.17.5
- '@types/express@5.0.0':
- dependencies:
- '@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 5.0.6
- '@types/qs': 6.9.18
- '@types/serve-static': 1.15.7
-
'@types/express@5.0.3':
dependencies:
'@types/body-parser': 1.19.6
'@types/express-serve-static-core': 5.0.7
'@types/serve-static': 1.15.8
+ '@types/express@5.0.6':
+ dependencies:
+ '@types/body-parser': 1.19.6
+ '@types/express-serve-static-core': 5.0.7
+ '@types/serve-static': 2.2.0
+
'@types/fast-json-stable-stringify@2.1.2':
dependencies:
fast-json-stable-stringify: 2.1.0
@@ -10118,30 +9712,16 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
- '@types/html-minifier@4.0.5':
+ '@types/html-minifier@4.0.6':
dependencies:
'@types/clean-css': 4.2.11
'@types/relateurl': 0.2.33
'@types/uglify-js': 3.17.5
- '@types/http-assert@1.5.6': {}
-
'@types/http-cache-semantics@4.0.4': {}
- '@types/http-errors@2.0.4': {}
-
'@types/http-errors@2.0.5': {}
- '@types/istanbul-lib-coverage@2.0.6': {}
-
- '@types/istanbul-lib-report@3.0.3':
- dependencies:
- '@types/istanbul-lib-coverage': 2.0.6
-
- '@types/istanbul-reports@3.0.4':
- dependencies:
- '@types/istanbul-lib-report': 3.0.3
-
'@types/js-yaml@3.12.10': {}
'@types/js-yaml@4.0.9': {}
@@ -10150,23 +9730,6 @@ snapshots:
dependencies:
'@types/node': 22.15.17
- '@types/keygrip@1.0.6': {}
-
- '@types/koa-compose@3.2.8':
- dependencies:
- '@types/koa': 2.15.0
-
- '@types/koa@2.15.0':
- dependencies:
- '@types/accepts': 1.3.7
- '@types/content-disposition': 0.5.8
- '@types/cookies': 0.9.0
- '@types/http-assert': 1.5.6
- '@types/http-errors': 2.0.4
- '@types/keygrip': 1.0.6
- '@types/koa-compose': 3.2.8
- '@types/node': 22.15.17
-
'@types/mdast@4.0.4':
dependencies:
'@types/unist': 3.0.3
@@ -10181,6 +9744,10 @@ snapshots:
'@types/ms@2.1.0': {}
+ '@types/mute-stream@0.0.4':
+ dependencies:
+ '@types/node': 22.15.17
+
'@types/node-forge@1.3.11':
dependencies:
'@types/node': 22.15.17
@@ -10191,60 +9758,33 @@ snapshots:
dependencies:
undici-types: 6.21.0
- '@types/parse5@6.0.3': {}
-
'@types/ping@0.4.4': {}
'@types/qs@6.14.0': {}
- '@types/qs@6.9.18': {}
-
'@types/randomatic@3.1.5': {}
'@types/range-parser@1.2.7': {}
'@types/relateurl@0.2.33': {}
- '@types/s3rver@3.7.4':
- dependencies:
- '@types/node': 22.15.17
-
'@types/semver@7.7.1': {}
- '@types/send@0.17.4':
- dependencies:
- '@types/mime': 1.3.5
- '@types/node': 22.15.17
-
'@types/send@0.17.5':
dependencies:
'@types/mime': 1.3.5
'@types/node': 22.15.17
- '@types/serve-static@1.15.7':
- dependencies:
- '@types/http-errors': 2.0.4
- '@types/node': 22.15.17
- '@types/send': 0.17.4
-
'@types/serve-static@1.15.8':
dependencies:
'@types/http-errors': 2.0.5
'@types/node': 22.15.17
'@types/send': 0.17.5
- '@types/sinon-chai@3.2.12':
+ '@types/serve-static@2.2.0':
dependencies:
- '@types/chai': 5.0.1
- '@types/sinon': 17.0.4
-
- '@types/sinon@17.0.4':
- dependencies:
- '@types/sinonjs__fake-timers': 8.1.5
-
- '@types/sinonjs__fake-timers@8.1.5': {}
-
- '@types/stack-utils@2.0.3': {}
+ '@types/http-errors': 2.0.5
+ '@types/node': 22.15.17
'@types/symbol-tree@3.2.5': {}
@@ -10256,8 +9796,6 @@ snapshots:
dependencies:
'@types/node': 22.15.17
- '@types/triple-beam@1.3.5': {}
-
'@types/trusted-types@2.0.7': {}
'@types/turndown@5.0.5': {}
@@ -10283,20 +9821,12 @@ snapshots:
'@types/which@3.0.4': {}
- '@types/ws@7.4.7':
- dependencies:
- '@types/node': 22.15.17
+ '@types/wrap-ansi@3.0.0': {}
'@types/ws@8.18.1':
dependencies:
'@types/node': 22.15.17
- '@types/yargs-parser@21.0.3': {}
-
- '@types/yargs@17.0.33':
- dependencies:
- '@types/yargs-parser': 21.0.3
-
'@types/yauzl@2.10.3':
dependencies:
'@types/node': 22.15.17
@@ -10304,82 +9834,6 @@ snapshots:
'@ungap/structured-clone@1.3.0': {}
- '@web/browser-logs@0.4.1':
- dependencies:
- errorstacks: 2.4.1
-
- '@web/dev-server-core@0.7.5':
- dependencies:
- '@types/koa': 2.15.0
- '@types/ws': 7.4.7
- '@web/parse5-utils': 2.1.0
- chokidar: 4.0.3
- clone: 2.1.2
- es-module-lexer: 1.6.0
- get-stream: 6.0.1
- is-stream: 2.0.1
- isbinaryfile: 5.0.4
- koa: 2.15.4
- koa-etag: 4.0.0
- koa-send: 5.0.1
- koa-static: 5.0.0
- lru-cache: 8.0.5
- mime-types: 2.1.35
- parse5: 6.0.1
- picomatch: 2.3.1
- ws: 7.5.10
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@web/parse5-utils@2.1.0':
- dependencies:
- '@types/parse5': 6.0.3
- parse5: 6.0.1
-
- '@web/test-runner-commands@0.9.0':
- dependencies:
- '@web/test-runner-core': 0.13.4
- mkdirp: 1.0.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
- '@web/test-runner-core@0.13.4':
- dependencies:
- '@babel/code-frame': 7.26.2
- '@types/babel__code-frame': 7.0.6
- '@types/co-body': 6.1.3
- '@types/convert-source-map': 2.0.3
- '@types/debounce': 1.2.4
- '@types/istanbul-lib-coverage': 2.0.6
- '@types/istanbul-reports': 3.0.4
- '@web/browser-logs': 0.4.1
- '@web/dev-server-core': 0.7.5
- chokidar: 4.0.3
- cli-cursor: 3.1.0
- co-body: 6.2.0
- convert-source-map: 2.0.0
- debounce: 1.2.1
- dependency-graph: 0.11.0
- globby: 11.1.0
- internal-ip: 6.2.0
- istanbul-lib-coverage: 3.2.2
- istanbul-lib-report: 3.0.1
- istanbul-reports: 3.1.7
- log-update: 4.0.0
- nanocolors: 0.2.13
- nanoid: 3.3.8
- open: 8.4.2
- picomatch: 2.3.1
- source-map: 0.7.4
- transitivePeerDependencies:
- - bufferutil
- - supports-color
- - utf-8-validate
-
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -10418,24 +9872,14 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.1.0: {}
-
ansi-regex@6.2.2: {}
- ansi-styles@3.2.1:
- dependencies:
- color-convert: 1.9.3
-
ansi-styles@4.3.0:
dependencies:
color-convert: 2.0.1
- ansi-styles@5.2.0: {}
-
ansi-styles@6.2.3: {}
- ansis@4.1.0: {}
-
any-base@1.1.0: {}
argparse@1.0.10:
@@ -10444,8 +9888,6 @@ snapshots:
argparse@2.0.1: {}
- array-union@2.1.0: {}
-
asn1js@3.0.6:
dependencies:
pvtsutils: 1.3.6
@@ -10456,20 +9898,14 @@ snapshots:
dependencies:
tslib: 2.8.1
- astral-regex@2.0.0: {}
-
async-mutex@0.5.0:
dependencies:
tslib: 2.8.1
- async@3.2.6: {}
-
asynckit@0.4.0: {}
await-to-js@3.0.0: {}
- axe-core@4.10.2: {}
-
axios@1.12.2(debug@4.4.3):
dependencies:
follow-redirects: 1.15.11(debug@4.4.3)
@@ -10548,10 +9984,6 @@ snapshots:
dependencies:
balanced-match: 1.0.2
- braces@3.0.3:
- dependencies:
- fill-range: 7.1.1
-
broadcast-channel@7.1.0:
dependencies:
'@babel/runtime': 7.27.0
@@ -10581,17 +10013,8 @@ snapshots:
base64-js: 1.5.1
ieee754: 1.2.1
- busboy@0.3.1:
- dependencies:
- dicer: 0.3.0
-
bytes@3.1.2: {}
- cache-content-type@1.0.1:
- dependencies:
- mime-types: 2.1.35
- ylru: 1.4.0
-
cacheable-lookup@7.0.0: {}
cacheable-request@10.2.14:
@@ -10632,29 +10055,14 @@ snapshots:
ccount@2.0.1: {}
- chai-a11y-axe@1.5.0:
- dependencies:
- axe-core: 4.10.2
-
- chalk@2.4.2:
- dependencies:
- ansi-styles: 3.2.1
- escape-string-regexp: 1.0.5
- supports-color: 5.5.0
-
- chalk@4.1.2:
- dependencies:
- ansi-styles: 4.3.0
- supports-color: 7.2.0
-
- chalk@5.4.1: {}
-
character-entities-html4@2.1.0: {}
character-entities-legacy@3.0.0: {}
character-entities@2.0.2: {}
+ chardet@0.7.0: {}
+
chokidar@4.0.3:
dependencies:
readdirp: 4.1.2
@@ -10665,23 +10073,13 @@ snapshots:
mitt: 3.0.1
zod: 3.24.2
- ci-info@3.9.0: {}
-
clean-css@4.2.4:
dependencies:
source-map: 0.6.1
clean-stack@1.3.0: {}
- cli-cursor@3.1.0:
- dependencies:
- restore-cursor: 3.1.0
-
- cli-cursor@5.0.0:
- dependencies:
- restore-cursor: 5.1.0
-
- cli-spinners@2.9.2: {}
+ cli-width@4.1.0: {}
cliui@8.0.1:
dependencies:
@@ -10693,28 +10091,10 @@ snapshots:
dependencies:
is-regexp: 3.1.0
- clone@2.1.2: {}
-
- co-body@6.2.0:
- dependencies:
- '@hapi/bourne': 3.0.0
- inflation: 2.1.0
- qs: 6.14.0
- raw-body: 2.5.2
- type-is: 1.6.18
-
- co@4.6.0: {}
-
- color-convert@1.9.3:
- dependencies:
- color-name: 1.1.3
-
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
- color-name@1.1.3: {}
-
color-name@1.1.4: {}
color-string@1.9.1:
@@ -10722,21 +10102,11 @@ snapshots:
color-name: 1.1.4
simple-swizzle: 0.2.2
- color@3.2.1:
- dependencies:
- color-convert: 1.9.3
- color-string: 1.9.1
-
color@4.2.3:
dependencies:
color-convert: 2.0.1
color-string: 1.9.1
- colorspace@1.1.4:
- dependencies:
- color: 3.2.1
- text-hex: 1.0.0
-
combined-stream@1.0.8:
dependencies:
delayed-stream: 1.0.0
@@ -10745,8 +10115,6 @@ snapshots:
commander@2.20.3: {}
- commander@5.1.0: {}
-
commondir@1.0.1: {}
concat-map@0.0.1: {}
@@ -10756,10 +10124,6 @@ snapshots:
ini: 1.3.8
proto-list: 1.2.4
- content-disposition@0.5.4:
- dependencies:
- safe-buffer: 5.2.1
-
content-disposition@1.0.0:
dependencies:
safe-buffer: 5.2.1
@@ -10768,17 +10132,10 @@ snapshots:
convert-hrtime@5.0.0: {}
- convert-source-map@2.0.0: {}
-
cookie-signature@1.2.2: {}
cookie@0.7.2: {}
- cookies@0.9.1:
- dependencies:
- depd: 2.0.0
- keygrip: 1.1.0
-
cors@2.8.5:
dependencies:
object-assign: 4.1.1
@@ -10815,12 +10172,6 @@ snapshots:
dayjs@1.11.13: {}
- debounce@1.2.1: {}
-
- debug@3.2.7:
- dependencies:
- ms: 2.1.3
-
debug@4.3.7:
dependencies:
ms: 2.1.3
@@ -10845,14 +10196,8 @@ snapshots:
dependencies:
mimic-response: 3.1.0
- deep-equal@1.0.1: {}
-
deep-extend@0.6.0: {}
- default-gateway@6.0.3:
- dependencies:
- execa: 5.1.1
-
defer-to-connect@2.0.1: {}
define-data-property@1.1.4:
@@ -10877,18 +10222,10 @@ snapshots:
delayed-stream@1.0.0: {}
- delegates@1.0.0: {}
-
- depd@1.1.2: {}
-
depd@2.0.0: {}
- dependency-graph@0.11.0: {}
-
dequal@2.0.3: {}
- destroy@1.2.0: {}
-
detect-libc@2.0.4: {}
devlop@1.1.0:
@@ -10897,16 +10234,6 @@ snapshots:
devtools-protocol@0.0.1402036: {}
- dicer@0.3.0:
- dependencies:
- streamsearch: 0.1.2
-
- diff-sequences@29.6.3: {}
-
- dir-glob@3.0.1:
- dependencies:
- path-type: 4.0.0
-
dns-packet@5.6.1:
dependencies:
'@leichtgewicht/ip-codec': 2.0.5
@@ -10935,16 +10262,10 @@ snapshots:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- emoji-regex@10.4.0: {}
-
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
- enabled@2.0.0: {}
-
- encodeurl@1.0.2: {}
-
encodeurl@2.0.0: {}
end-of-stream@1.4.4:
@@ -10981,8 +10302,6 @@ snapshots:
- supports-color
- utf-8-validate
- entities@2.2.0: {}
-
entities@4.5.0: {}
env-paths@2.2.1: {}
@@ -10991,14 +10310,10 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- errorstacks@2.4.1: {}
-
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
- es-module-lexer@1.6.0: {}
-
es-object-atoms@1.1.1:
dependencies:
es-errors: 1.3.0
@@ -11010,71 +10325,39 @@ snapshots:
has-tostringtag: 1.0.2
hasown: 2.0.2
- esbuild@0.25.0:
+ esbuild@0.27.2:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.0
- '@esbuild/android-arm': 0.25.0
- '@esbuild/android-arm64': 0.25.0
- '@esbuild/android-x64': 0.25.0
- '@esbuild/darwin-arm64': 0.25.0
- '@esbuild/darwin-x64': 0.25.0
- '@esbuild/freebsd-arm64': 0.25.0
- '@esbuild/freebsd-x64': 0.25.0
- '@esbuild/linux-arm': 0.25.0
- '@esbuild/linux-arm64': 0.25.0
- '@esbuild/linux-ia32': 0.25.0
- '@esbuild/linux-loong64': 0.25.0
- '@esbuild/linux-mips64el': 0.25.0
- '@esbuild/linux-ppc64': 0.25.0
- '@esbuild/linux-riscv64': 0.25.0
- '@esbuild/linux-s390x': 0.25.0
- '@esbuild/linux-x64': 0.25.0
- '@esbuild/netbsd-arm64': 0.25.0
- '@esbuild/netbsd-x64': 0.25.0
- '@esbuild/openbsd-arm64': 0.25.0
- '@esbuild/openbsd-x64': 0.25.0
- '@esbuild/sunos-x64': 0.25.0
- '@esbuild/win32-arm64': 0.25.0
- '@esbuild/win32-ia32': 0.25.0
- '@esbuild/win32-x64': 0.25.0
-
- esbuild@0.25.8:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.8
- '@esbuild/android-arm': 0.25.8
- '@esbuild/android-arm64': 0.25.8
- '@esbuild/android-x64': 0.25.8
- '@esbuild/darwin-arm64': 0.25.8
- '@esbuild/darwin-x64': 0.25.8
- '@esbuild/freebsd-arm64': 0.25.8
- '@esbuild/freebsd-x64': 0.25.8
- '@esbuild/linux-arm': 0.25.8
- '@esbuild/linux-arm64': 0.25.8
- '@esbuild/linux-ia32': 0.25.8
- '@esbuild/linux-loong64': 0.25.8
- '@esbuild/linux-mips64el': 0.25.8
- '@esbuild/linux-ppc64': 0.25.8
- '@esbuild/linux-riscv64': 0.25.8
- '@esbuild/linux-s390x': 0.25.8
- '@esbuild/linux-x64': 0.25.8
- '@esbuild/netbsd-arm64': 0.25.8
- '@esbuild/netbsd-x64': 0.25.8
- '@esbuild/openbsd-arm64': 0.25.8
- '@esbuild/openbsd-x64': 0.25.8
- '@esbuild/openharmony-arm64': 0.25.8
- '@esbuild/sunos-x64': 0.25.8
- '@esbuild/win32-arm64': 0.25.8
- '@esbuild/win32-ia32': 0.25.8
- '@esbuild/win32-x64': 0.25.8
+ '@esbuild/aix-ppc64': 0.27.2
+ '@esbuild/android-arm': 0.27.2
+ '@esbuild/android-arm64': 0.27.2
+ '@esbuild/android-x64': 0.27.2
+ '@esbuild/darwin-arm64': 0.27.2
+ '@esbuild/darwin-x64': 0.27.2
+ '@esbuild/freebsd-arm64': 0.27.2
+ '@esbuild/freebsd-x64': 0.27.2
+ '@esbuild/linux-arm': 0.27.2
+ '@esbuild/linux-arm64': 0.27.2
+ '@esbuild/linux-ia32': 0.27.2
+ '@esbuild/linux-loong64': 0.27.2
+ '@esbuild/linux-mips64el': 0.27.2
+ '@esbuild/linux-ppc64': 0.27.2
+ '@esbuild/linux-riscv64': 0.27.2
+ '@esbuild/linux-s390x': 0.27.2
+ '@esbuild/linux-x64': 0.27.2
+ '@esbuild/netbsd-arm64': 0.27.2
+ '@esbuild/netbsd-x64': 0.27.2
+ '@esbuild/openbsd-arm64': 0.27.2
+ '@esbuild/openbsd-x64': 0.27.2
+ '@esbuild/openharmony-arm64': 0.27.2
+ '@esbuild/sunos-x64': 0.27.2
+ '@esbuild/win32-arm64': 0.27.2
+ '@esbuild/win32-ia32': 0.27.2
+ '@esbuild/win32-x64': 0.27.2
escalade@3.2.0: {}
escape-html@1.0.3: {}
- escape-string-regexp@1.0.5: {}
-
- escape-string-regexp@2.0.0: {}
-
escape-string-regexp@4.0.0: {}
escape-string-regexp@5.0.0: {}
@@ -11103,28 +10386,8 @@ snapshots:
events@3.3.0: {}
- execa@5.1.1:
- dependencies:
- cross-spawn: 7.0.6
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
-
exif-parser@0.1.12: {}
- expect@29.7.0:
- dependencies:
- '@jest/expect-utils': 29.7.0
- jest-get-type: 29.6.3
- jest-matcher-utils: 29.7.0
- jest-message-util: 29.7.0
- jest-util: 29.7.0
-
express-force-ssl@0.3.2:
dependencies:
lodash.assign: 3.2.0
@@ -11163,6 +10426,12 @@ snapshots:
extend@3.0.2: {}
+ external-editor@3.1.0:
+ dependencies:
+ chardet: 0.7.0
+ iconv-lite: 0.4.24
+ tmp: 0.0.33
+
extract-zip@2.0.1:
dependencies:
debug: 4.4.0
@@ -11181,20 +10450,8 @@ snapshots:
fast-fifo@1.3.2: {}
- fast-glob@3.3.3:
- dependencies:
- '@nodelib/fs.stat': 2.0.5
- '@nodelib/fs.walk': 1.2.8
- glob-parent: 5.1.2
- merge2: 1.4.1
- micromatch: 4.0.8
-
fast-json-stable-stringify@2.1.0: {}
- fast-xml-parser@3.21.1:
- dependencies:
- strnum: 1.1.1
-
fast-xml-parser@4.4.1:
dependencies:
strnum: 1.1.1
@@ -11207,9 +10464,9 @@ snapshots:
dependencies:
strnum: 2.1.1
- fastq@1.19.0:
+ fast-xml-parser@5.3.3:
dependencies:
- reusify: 1.1.0
+ strnum: 2.1.1
fault@2.0.1:
dependencies:
@@ -11219,12 +10476,6 @@ snapshots:
dependencies:
pend: 1.2.0
- fecha@4.2.3: {}
-
- feed@4.2.2:
- dependencies:
- xml-js: 1.6.11
-
fflate@0.8.2: {}
figures@6.1.0:
@@ -11253,10 +10504,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- fill-range@7.1.1:
- dependencies:
- to-regex-range: 5.0.1
-
finalhandler@2.1.0:
dependencies:
debug: 4.4.1
@@ -11279,16 +10526,10 @@ snapshots:
locate-path: 5.0.0
path-exists: 4.0.0
- fn.name@1.1.0: {}
-
follow-redirects@1.15.11(debug@4.4.3):
optionalDependencies:
debug: 4.4.3
- follow-redirects@1.15.9(debug@4.4.0):
- optionalDependencies:
- debug: 4.4.0
-
foreground-child@2.0.0:
dependencies:
cross-spawn: 7.0.6
@@ -11316,18 +10557,24 @@ snapshots:
hasown: 2.0.2
mime-types: 2.1.35
+ form-data@4.0.5:
+ dependencies:
+ asynckit: 0.4.0
+ combined-stream: 1.0.8
+ es-set-tostringtag: 2.1.0
+ hasown: 2.0.2
+ mime-types: 2.1.35
+
format@0.2.2: {}
forwarded@0.2.0: {}
- fresh@0.5.2: {}
-
fresh@2.0.0: {}
fs-extra@10.1.0:
dependencies:
graceful-fs: 4.2.11
- jsonfile: 6.1.0
+ jsonfile: 6.2.0
universalify: 2.0.1
fs-extra@11.3.2:
@@ -11336,12 +10583,6 @@ snapshots:
jsonfile: 6.2.0
universalify: 2.0.1
- fs-extra@8.1.0:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
-
fs.realpath@1.0.0: {}
fsevents@2.3.3:
@@ -11353,8 +10594,6 @@ snapshots:
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.0: {}
-
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -11401,10 +10640,6 @@ snapshots:
image-q: 4.0.0
omggif: 1.0.10
- glob-parent@5.1.2:
- dependencies:
- is-glob: 4.0.3
-
glob@11.0.3:
dependencies:
foreground-child: 3.3.1
@@ -11423,15 +10658,6 @@ snapshots:
once: 1.4.0
path-is-absolute: 1.0.1
- globby@11.1.0:
- dependencies:
- array-union: 2.1.0
- dir-glob: 3.0.1
- fast-glob: 3.3.3
- ignore: 5.3.2
- merge2: 1.4.1
- slash: 3.0.0
-
gopd@1.2.0: {}
got@12.6.1:
@@ -11472,10 +10698,6 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-mimetype: 3.0.0
- has-flag@3.0.0: {}
-
- has-flag@4.0.0: {}
-
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.1
@@ -11527,8 +10749,6 @@ snapshots:
minimalistic-assert: 1.0.1
minimalistic-crypto-utils: 1.0.1
- html-escaper@2.0.2: {}
-
html-minifier@4.0.0:
dependencies:
camel-case: 3.0.0
@@ -11541,28 +10761,8 @@ snapshots:
html-void-elements@3.0.0: {}
- http-assert@1.5.0:
- dependencies:
- deep-equal: 1.0.1
- http-errors: 1.8.1
-
http-cache-semantics@4.1.1: {}
- http-errors@1.6.3:
- dependencies:
- depd: 1.1.2
- inherits: 2.0.3
- setprototypeof: 1.1.0
- statuses: 1.5.0
-
- http-errors@1.8.1:
- dependencies:
- depd: 1.1.2
- inherits: 2.0.4
- setprototypeof: 1.2.0
- statuses: 1.5.0
- toidentifier: 1.0.1
-
http-errors@2.0.0:
dependencies:
depd: 2.0.0
@@ -11590,14 +10790,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- human-signals@2.1.0: {}
-
humanize-ms@1.2.1:
dependencies:
ms: 2.1.3
- humanize-number@0.0.2: {}
-
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@@ -11608,8 +10804,6 @@ snapshots:
ieee754@1.2.1: {}
- ignore@5.3.2: {}
-
image-q@4.0.0:
dependencies:
'@types/node': 16.9.1
@@ -11619,33 +10813,31 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
- inflation@2.1.0: {}
-
inflight@1.0.6:
dependencies:
once: 1.4.0
wrappy: 1.0.2
- inherits@2.0.3: {}
-
inherits@2.0.4: {}
ini@1.3.8: {}
- internal-ip@6.2.0:
+ inquirer@11.1.0:
dependencies:
- default-gateway: 6.0.3
- ipaddr.js: 1.9.1
- is-ip: 3.1.0
- p-event: 4.2.0
+ '@inquirer/core': 9.2.1
+ '@inquirer/prompts': 6.0.1
+ '@inquirer/type': 2.0.0
+ '@types/mute-stream': 0.0.4
+ ansi-escapes: 4.3.2
+ mute-stream: 1.0.0
+ run-async: 3.0.0
+ rxjs: 7.8.2
ip-address@9.0.5:
dependencies:
jsbn: 1.1.0
sprintf-js: 1.1.3
- ip-regex@4.3.0: {}
-
ip-regex@5.0.0: {}
ipaddr.js@1.9.1: {}
@@ -11656,27 +10848,8 @@ snapshots:
is-docker@2.2.1: {}
- is-extglob@2.1.1: {}
-
is-fullwidth-code-point@3.0.0: {}
- is-generator-function@1.1.0:
- dependencies:
- call-bound: 1.0.3
- get-proto: 1.0.1
- has-tostringtag: 1.0.2
- safe-regex-test: 1.1.0
-
- is-glob@4.0.3:
- dependencies:
- is-extglob: 2.1.1
-
- is-interactive@2.0.0: {}
-
- is-ip@3.1.0:
- dependencies:
- ip-regex: 4.3.0
-
is-ip@5.0.1:
dependencies:
ip-regex: 5.0.0
@@ -11689,29 +10862,16 @@ snapshots:
is-number@4.0.0: {}
- is-number@7.0.0: {}
-
is-observable@2.1.0: {}
is-plain-obj@4.1.0: {}
is-promise@4.0.0: {}
- is-regex@1.2.1:
- dependencies:
- call-bound: 1.0.3
- gopd: 1.2.0
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
is-regexp@3.1.0: {}
- is-stream@2.0.1: {}
-
is-stream@4.0.1: {}
- is-unicode-supported@1.3.0: {}
-
is-unicode-supported@2.1.0: {}
is-windows@1.0.2: {}
@@ -11720,68 +10880,16 @@ snapshots:
dependencies:
is-docker: 2.2.1
- isbinaryfile@5.0.4: {}
-
isexe@2.0.0: {}
isexe@3.1.1: {}
isopen@1.3.0: {}
- istanbul-lib-coverage@3.2.2: {}
-
- istanbul-lib-report@3.0.1:
- dependencies:
- istanbul-lib-coverage: 3.2.2
- make-dir: 4.0.0
- supports-color: 7.2.0
-
- istanbul-reports@3.1.7:
- dependencies:
- html-escaper: 2.0.2
- istanbul-lib-report: 3.0.1
-
jackspeak@4.1.1:
dependencies:
'@isaacs/cliui': 8.0.2
- jest-diff@29.7.0:
- dependencies:
- chalk: 4.1.2
- diff-sequences: 29.6.3
- jest-get-type: 29.6.3
- pretty-format: 29.7.0
-
- jest-get-type@29.6.3: {}
-
- jest-matcher-utils@29.7.0:
- dependencies:
- chalk: 4.1.2
- jest-diff: 29.7.0
- jest-get-type: 29.6.3
- pretty-format: 29.7.0
-
- jest-message-util@29.7.0:
- dependencies:
- '@babel/code-frame': 7.26.2
- '@jest/types': 29.6.3
- '@types/stack-utils': 2.0.3
- chalk: 4.1.2
- graceful-fs: 4.2.11
- micromatch: 4.0.8
- pretty-format: 29.7.0
- slash: 3.0.0
- stack-utils: 2.0.6
-
- jest-util@29.7.0:
- dependencies:
- '@jest/types': 29.6.3
- '@types/node': 22.15.17
- chalk: 4.1.2
- ci-info: 3.9.0
- graceful-fs: 4.2.11
- picomatch: 2.3.1
-
jimp@1.6.0:
dependencies:
'@jimp/core': 1.6.0
@@ -11838,125 +10946,32 @@ snapshots:
'@babel/runtime': 7.28.4
ts-algebra: 2.0.0
- jsonfile@4.0.0:
- optionalDependencies:
- graceful-fs: 4.2.11
-
- jsonfile@6.1.0:
- dependencies:
- universalify: 2.0.1
- optionalDependencies:
- graceful-fs: 4.2.11
-
jsonfile@6.2.0:
dependencies:
universalify: 2.0.1
optionalDependencies:
graceful-fs: 4.2.11
- keygrip@1.1.0:
- dependencies:
- tsscmp: 1.0.6
-
keyv@4.5.4:
dependencies:
json-buffer: 3.0.1
kind-of@6.0.3: {}
- koa-compose@4.1.0: {}
-
- koa-convert@2.0.0:
- dependencies:
- co: 4.6.0
- koa-compose: 4.1.0
-
- koa-etag@4.0.0:
- dependencies:
- etag: 1.8.1
-
- koa-logger@3.2.1:
- dependencies:
- bytes: 3.1.2
- chalk: 2.4.2
- humanize-number: 0.0.2
- passthrough-counter: 1.0.0
-
- koa-send@5.0.1:
- dependencies:
- debug: 4.4.0
- http-errors: 1.8.1
- resolve-path: 1.4.0
- transitivePeerDependencies:
- - supports-color
-
- koa-static@5.0.0:
- dependencies:
- debug: 3.2.7
- koa-send: 5.0.1
- transitivePeerDependencies:
- - supports-color
-
- koa@2.15.4:
- dependencies:
- accepts: 1.3.8
- cache-content-type: 1.0.1
- content-disposition: 0.5.4
- content-type: 1.0.5
- cookies: 0.9.1
- debug: 4.4.0
- delegates: 1.0.0
- depd: 2.0.0
- destroy: 1.2.0
- encodeurl: 1.0.2
- escape-html: 1.0.3
- fresh: 0.5.2
- http-assert: 1.5.0
- http-errors: 1.8.1
- is-generator-function: 1.1.0
- koa-compose: 4.1.0
- koa-convert: 2.0.0
- on-finished: 2.4.1
- only: 0.0.2
- parseurl: 1.3.3
- statuses: 1.5.0
- type-is: 1.6.18
- vary: 1.1.2
- transitivePeerDependencies:
- - supports-color
-
- kuler@2.0.0: {}
-
lenis@1.3.11: {}
lines-and-columns@1.2.4: {}
- lit-element@4.1.1:
- dependencies:
- '@lit-labs/ssr-dom-shim': 1.3.0
- '@lit/reactive-element': 2.0.4
- lit-html: 3.2.1
-
lit-element@4.2.1:
dependencies:
'@lit-labs/ssr-dom-shim': 1.4.0
'@lit/reactive-element': 2.1.1
lit-html: 3.3.1
- lit-html@3.2.1:
- dependencies:
- '@types/trusted-types': 2.0.7
-
lit-html@3.3.1:
dependencies:
'@types/trusted-types': 2.0.7
- lit@3.2.1:
- dependencies:
- '@lit/reactive-element': 2.0.4
- lit-element: 4.1.1
- lit-html: 3.2.1
-
lit@3.3.1:
dependencies:
'@lit/reactive-element': 2.1.1
@@ -12006,29 +11021,6 @@ snapshots:
lodash.restparam@3.6.1: {}
- lodash@4.17.21: {}
-
- log-symbols@6.0.0:
- dependencies:
- chalk: 5.4.1
- is-unicode-supported: 1.3.0
-
- log-update@4.0.0:
- dependencies:
- ansi-escapes: 4.3.2
- cli-cursor: 3.1.0
- slice-ansi: 4.0.0
- wrap-ansi: 6.2.0
-
- logform@2.7.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@types/triple-beam': 1.3.5
- fecha: 4.2.3
- ms: 2.1.3
- safe-stable-stringify: 2.5.0
- triple-beam: 1.4.1
-
longest-streak@3.1.0: {}
lower-case@1.1.4: {}
@@ -12039,16 +11031,10 @@ snapshots:
lru-cache@7.18.3: {}
- lru-cache@8.0.5: {}
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
- make-dir@4.0.0:
- dependencies:
- semver: 7.7.1
-
make-error-cause@2.3.0:
dependencies:
make-error: 1.3.6
@@ -12194,20 +11180,12 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
- media-typer@0.3.0: {}
-
media-typer@1.1.0: {}
memory-pager@1.5.0: {}
merge-descriptors@2.0.0: {}
- merge-stream@2.0.0: {}
-
- merge2@1.4.1: {}
-
- methods@1.1.2: {}
-
micromark-core-commonmark@2.0.3:
dependencies:
decode-named-character-reference: 1.2.0
@@ -12406,11 +11384,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.8:
- dependencies:
- braces: 3.0.3
- picomatch: 2.3.1
-
mime-db@1.52.0: {}
mime-db@1.54.0: {}
@@ -12427,10 +11400,6 @@ snapshots:
mime@4.1.0: {}
- mimic-fn@2.1.0: {}
-
- mimic-function@5.0.1: {}
-
mimic-response@3.1.0: {}
mimic-response@4.0.0: {}
@@ -12445,6 +11414,10 @@ snapshots:
dependencies:
'@isaacs/brace-expansion': 5.0.0
+ minimatch@10.1.1:
+ dependencies:
+ '@isaacs/brace-expansion': 5.0.0
+
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.11
@@ -12459,8 +11432,6 @@ snapshots:
mitt@3.0.1: {}
- mkdirp@1.0.4: {}
-
mongodb-connection-string-url@2.6.0:
dependencies:
'@types/whatwg-url': 8.2.2
@@ -12475,13 +11446,13 @@ snapshots:
dependencies:
async-mutex: 0.5.0
camelcase: 6.3.0
- debug: 4.4.0
+ debug: 4.4.3
find-cache-dir: 3.3.2
- follow-redirects: 1.15.9(debug@4.4.0)
+ follow-redirects: 1.15.11(debug@4.4.3)
https-proxy-agent: 7.0.6
mongodb: 6.16.0(@aws-sdk/credential-providers@3.808.0)(socks@2.8.4)
new-find-package-json: 2.0.0
- semver: 7.7.2
+ semver: 7.7.3
tar-stream: 3.1.7
tslib: 2.8.1
yauzl: 3.2.0
@@ -12531,9 +11502,7 @@ snapshots:
ms@2.1.3: {}
- nanocolors@0.2.13: {}
-
- nanoid@3.3.8: {}
+ mute-stream@1.0.0: {}
nanoid@4.0.2: {}
@@ -12545,7 +11514,7 @@ snapshots:
new-find-package-json@2.0.0:
dependencies:
- debug: 4.4.0
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -12561,10 +11530,6 @@ snapshots:
normalize-url@8.0.1: {}
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
object-assign@4.1.1: {}
object-inspect@1.13.4: {}
@@ -12585,20 +11550,6 @@ snapshots:
dependencies:
wrappy: 1.0.2
- one-time@1.0.0:
- dependencies:
- fn.name: 1.1.0
-
- onetime@5.1.2:
- dependencies:
- mimic-fn: 2.1.0
-
- onetime@7.0.0:
- dependencies:
- mimic-function: 5.0.1
-
- only@0.0.2: {}
-
open@8.4.2:
dependencies:
define-lazy-prop: 2.0.0
@@ -12610,24 +11561,10 @@ snapshots:
ws: 8.18.3
zod: 3.25.76
- ora@8.2.0:
- dependencies:
- chalk: 5.4.1
- cli-cursor: 5.0.0
- cli-spinners: 2.9.2
- is-interactive: 2.0.0
- is-unicode-supported: 2.1.0
- log-symbols: 6.0.0
- stdin-discarder: 0.2.2
- string-width: 7.2.0
- strip-ansi: 7.1.0
+ os-tmpdir@1.0.2: {}
p-cancelable@3.0.0: {}
- p-event@4.2.0:
- dependencies:
- p-timeout: 3.2.0
-
p-finally@1.0.0: {}
p-limit@2.3.0:
@@ -12708,12 +11645,8 @@ snapshots:
parse-ms@4.0.0: {}
- parse5@6.0.1: {}
-
parseurl@1.3.3: {}
- passthrough-counter@1.0.0: {}
-
path-exists@4.0.0: {}
path-is-absolute@1.0.1: {}
@@ -12725,14 +11658,10 @@ snapshots:
lru-cache: 11.2.2
minipass: 7.1.2
- path-to-regexp@6.3.0: {}
-
path-to-regexp@8.2.0: {}
path-to-regexp@8.3.0: {}
- path-type@4.0.0: {}
-
pdf-lib@1.17.1:
dependencies:
'@pdf-lib/standard-fonts': 1.0.0
@@ -12750,8 +11679,6 @@ snapshots:
picocolors@1.1.1: {}
- picomatch@2.3.1: {}
-
picomatch@4.0.3: {}
ping@0.4.4: {}
@@ -12768,12 +11695,6 @@ snapshots:
pngjs@7.0.0: {}
- pretty-format@29.7.0:
- dependencies:
- '@jest/schemas': 29.6.3
- ansi-styles: 5.2.0
- react-is: 18.3.1
-
pretty-ms@7.0.1:
dependencies:
parse-ms: 2.1.0
@@ -12868,8 +11789,6 @@ snapshots:
dependencies:
side-channel: 1.1.0
- queue-microtask@1.2.3: {}
-
quick-lru@5.1.1: {}
randomatic@3.1.1:
@@ -12880,13 +11799,6 @@ snapshots:
range-parser@1.2.1: {}
- raw-body@2.5.2:
- dependencies:
- bytes: 3.1.2
- http-errors: 2.0.0
- iconv-lite: 0.4.24
- unpipe: 1.0.0
-
raw-body@3.0.0:
dependencies:
bytes: 3.1.2
@@ -12901,8 +11813,6 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- react-is@18.3.1: {}
-
readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
@@ -12988,54 +11898,35 @@ snapshots:
resolve-from@4.0.0: {}
- resolve-path@1.4.0:
- dependencies:
- http-errors: 1.6.3
- path-is-absolute: 1.0.1
-
resolve-pkg-maps@1.0.0: {}
responselike@3.0.0:
dependencies:
lowercase-keys: 3.0.0
- restore-cursor@3.1.0:
- dependencies:
- onetime: 5.1.2
- signal-exit: 3.0.7
-
- restore-cursor@5.1.0:
- dependencies:
- onetime: 7.0.0
- signal-exit: 4.1.0
-
- reusify@1.1.0: {}
-
rimraf@3.0.2:
dependencies:
glob: 7.2.3
- rolldown@1.0.0-beta.29:
+ rolldown@1.0.0-beta.52:
dependencies:
- '@oxc-project/runtime': 0.77.3
- '@oxc-project/types': 0.77.3
- '@rolldown/pluginutils': 1.0.0-beta.29
- ansis: 4.1.0
+ '@oxc-project/types': 0.99.0
+ '@rolldown/pluginutils': 1.0.0-beta.52
optionalDependencies:
- '@rolldown/binding-android-arm64': 1.0.0-beta.29
- '@rolldown/binding-darwin-arm64': 1.0.0-beta.29
- '@rolldown/binding-darwin-x64': 1.0.0-beta.29
- '@rolldown/binding-freebsd-x64': 1.0.0-beta.29
- '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.29
- '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.29
- '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.29
- '@rolldown/binding-linux-arm64-ohos': 1.0.0-beta.29
- '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.29
- '@rolldown/binding-linux-x64-musl': 1.0.0-beta.29
- '@rolldown/binding-wasm32-wasi': 1.0.0-beta.29
- '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.29
- '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.29
- '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.29
+ '@rolldown/binding-android-arm64': 1.0.0-beta.52
+ '@rolldown/binding-darwin-arm64': 1.0.0-beta.52
+ '@rolldown/binding-darwin-x64': 1.0.0-beta.52
+ '@rolldown/binding-freebsd-x64': 1.0.0-beta.52
+ '@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.52
+ '@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.52
+ '@rolldown/binding-linux-arm64-musl': 1.0.0-beta.52
+ '@rolldown/binding-linux-x64-gnu': 1.0.0-beta.52
+ '@rolldown/binding-linux-x64-musl': 1.0.0-beta.52
+ '@rolldown/binding-openharmony-arm64': 1.0.0-beta.52
+ '@rolldown/binding-wasm32-wasi': 1.0.0-beta.52
+ '@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.52
+ '@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.52
+ '@rolldown/binding-win32-x64-msvc': 1.0.0-beta.52
router@2.2.0:
dependencies:
@@ -13047,45 +11938,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
- rss-parser@3.13.0:
- dependencies:
- entities: 2.2.0
- xml2js: 0.5.0
-
- run-parallel@1.2.0:
- dependencies:
- queue-microtask: 1.2.3
+ run-async@3.0.0: {}
rxjs@7.8.2:
dependencies:
tslib: 2.8.1
- s3rver@3.7.1:
- dependencies:
- '@koa/router': 9.4.0
- busboy: 0.3.1
- commander: 5.1.0
- fast-xml-parser: 3.21.1
- fs-extra: 8.1.0
- he: 1.2.0
- koa: 2.15.4
- koa-logger: 3.2.1
- lodash: 4.17.21
- statuses: 2.0.1
- winston: 3.17.0
- transitivePeerDependencies:
- - supports-color
-
safe-buffer@5.2.1: {}
- safe-regex-test@1.1.0:
- dependencies:
- call-bound: 1.0.3
- es-errors: 1.3.0
- is-regex: 1.2.1
-
- safe-stable-stringify@2.5.0: {}
-
safer-buffer@2.1.2: {}
sax@1.4.1: {}
@@ -13132,8 +11992,6 @@ snapshots:
gopd: 1.2.0
has-property-descriptors: 1.0.2
- setprototypeof@1.1.0: {}
-
setprototypeof@1.2.0: {}
sharp@0.34.3:
@@ -13209,14 +12067,6 @@ snapshots:
simple-xml-to-json@1.2.3: {}
- slash@3.0.0: {}
-
- slice-ansi@4.0.0:
- dependencies:
- ansi-styles: 4.3.0
- astral-regex: 2.0.0
- is-fullwidth-code-point: 3.0.0
-
smart-buffer@4.2.0: {}
socket.io-adapter@2.5.5:
@@ -13275,8 +12125,6 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.7.4: {}
-
space-separated-tokens@2.0.2: {}
sparse-bitfield@3.0.3:
@@ -13296,22 +12144,10 @@ snapshots:
sprintf-js@1.1.3: {}
- stack-trace@0.0.10: {}
-
- stack-utils@2.0.6:
- dependencies:
- escape-string-regexp: 2.0.0
-
- statuses@1.5.0: {}
-
statuses@2.0.1: {}
statuses@2.0.2: {}
- stdin-discarder@0.2.2: {}
-
- streamsearch@0.1.2: {}
-
streamx@2.22.0:
dependencies:
fast-fifo: 1.3.2
@@ -13331,12 +12167,6 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.2
- string-width@7.2.0:
- dependencies:
- emoji-regex: 10.4.0
- get-east-asian-width: 1.3.0
- strip-ansi: 7.1.0
-
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
@@ -13350,16 +12180,10 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
- dependencies:
- ansi-regex: 6.1.0
-
strip-ansi@7.1.2:
dependencies:
ansi-regex: 6.2.2
- strip-final-newline@2.0.0: {}
-
strip-indent@4.0.0:
dependencies:
min-indent: 1.0.1
@@ -13392,14 +12216,6 @@ snapshots:
function-timeout: 0.1.1
time-span: 5.1.0
- supports-color@5.5.0:
- dependencies:
- has-flag: 3.0.0
-
- supports-color@7.2.0:
- dependencies:
- has-flag: 4.0.0
-
sweet-scroll@4.0.0: {}
symbol-tree@3.2.4: {}
@@ -13428,12 +12244,10 @@ snapshots:
dependencies:
b4a: 1.6.7
- text-hex@1.0.0: {}
-
threads@1.7.0:
dependencies:
callsites: 3.1.0
- debug: 4.4.1
+ debug: 4.4.3
is-observable: 2.1.0
observable-fns: 0.6.1
optionalDependencies:
@@ -13457,9 +12271,9 @@ snapshots:
tinycolor2@1.6.0: {}
- to-regex-range@5.0.1:
+ tmp@0.0.33:
dependencies:
- is-number: 7.0.0
+ os-tmpdir: 1.0.2
toidentifier@1.0.1: {}
@@ -13486,8 +12300,6 @@ snapshots:
trim-lines@3.0.1: {}
- triple-beam@1.4.1: {}
-
trough@2.2.0: {}
ts-algebra@2.0.0: {}
@@ -13496,11 +12308,9 @@ snapshots:
tslib@2.8.1: {}
- tsscmp@1.0.6: {}
-
- tsx@4.19.3:
+ tsx@4.21.0:
dependencies:
- esbuild: 0.25.0
+ esbuild: 0.27.2
get-tsconfig: 4.10.0
optionalDependencies:
fsevents: 2.3.3
@@ -13523,11 +12333,6 @@ snapshots:
type-fest@4.41.0: {}
- type-is@1.6.18:
- dependencies:
- media-typer: 0.3.0
- mime-types: 2.1.35
-
type-is@2.0.1:
dependencies:
content-type: 1.0.5
@@ -13536,10 +12341,6 @@ snapshots:
typed-query-selector@2.12.0: {}
- typescript@5.8.3: {}
-
- typescript@5.9.2: {}
-
typescript@5.9.3: {}
uglify-js@3.19.3: {}
@@ -13583,8 +12384,6 @@ snapshots:
unist-util-is: 6.0.0
unist-util-visit-parents: 6.0.1
- universalify@0.1.2: {}
-
universalify@2.0.1: {}
unload@2.4.1: {}
@@ -13640,26 +12439,6 @@ snapshots:
dependencies:
isexe: 3.1.1
- winston-transport@4.9.0:
- dependencies:
- logform: 2.7.0
- readable-stream: 3.6.2
- triple-beam: 1.4.1
-
- winston@3.17.0:
- dependencies:
- '@colors/colors': 1.6.0
- '@dabh/diagnostics': 2.0.3
- async: 3.2.6
- is-stream: 2.0.1
- logform: 2.7.0
- one-time: 1.0.0
- readable-stream: 3.6.2
- safe-stable-stringify: 2.5.0
- stack-trace: 0.0.10
- triple-beam: 1.4.1
- winston-transport: 4.9.0
-
wrap-ansi@6.2.0:
dependencies:
ansi-styles: 4.3.0
@@ -13680,18 +12459,12 @@ snapshots:
wrappy@1.0.2: {}
- ws@7.5.10: {}
-
ws@8.17.1: {}
ws@8.18.1: {}
ws@8.18.3: {}
- xml-js@1.6.11:
- dependencies:
- sax: 1.4.1
-
xml-parse-from-string@1.0.1: {}
xml2js@0.5.0:
@@ -13699,21 +12472,18 @@ snapshots:
sax: 1.4.1
xmlbuilder: 11.0.1
- xmlbuilder2@3.1.1:
- dependencies:
- '@oozcitak/dom': 1.15.10
- '@oozcitak/infra': 1.0.8
- '@oozcitak/util': 8.3.8
- js-yaml: 3.14.1
-
xmlbuilder@11.0.1: {}
xmlhttprequest-ssl@2.1.2: {}
y18n@5.0.8: {}
+ yaml@2.8.2: {}
+
yargs-parser@21.1.1: {}
+ yargs-parser@22.0.0: {}
+
yargs@17.7.2:
dependencies:
cliui: 8.0.1
@@ -13734,7 +12504,7 @@ snapshots:
buffer-crc32: 0.2.13
pend: 1.2.0
- ylru@1.4.0: {}
+ yoctocolors-cjs@2.1.3: {}
zod@3.24.2: {}
diff --git a/readme.hints.md b/readme.hints.md
index efe57f3..b86d7df 100644
--- a/readme.hints.md
+++ b/readme.hints.md
@@ -1,8 +1,21 @@
# SmartAI Project Hints
+## Dependencies
+
+- Uses `@git.zone/tstest` v3.x for testing (import from `@git.zone/tstest/tapbundle`)
+- `@push.rocks/smartfile` is kept at v11 to avoid migration to factory pattern
+- `@anthropic-ai/sdk` v0.71.x with extended thinking support
+- `@push.rocks/smartrequest` v5.x - uses `response.stream()` + `Readable.fromWeb()` for streaming
+
+## Important Notes
+
+- When extended thinking is enabled, temperature parameter must NOT be set (or set to 1)
+- The `streamNode()` method was removed in smartrequest v5, use `response.stream()` with `Readable.fromWeb()` instead
+
## Anthropic Extended Thinking Feature
### Overview
+
The Anthropic provider now supports extended thinking by default across all methods. Extended thinking enables Claude to spend more time reasoning about complex problems before generating responses, leading to higher quality answers for difficult questions.
### Configuration
@@ -22,18 +35,19 @@ const provider = new smartai.AnthropicProvider({
The `extendedThinking` parameter accepts four modes:
-| Mode | Budget Tokens | Use Case |
-|------|---------------|----------|
-| `'quick'` | 2,048 | Lightweight reasoning for simple queries |
-| `'normal'` | 8,000 | **Default** - Balanced reasoning for most tasks |
-| `'deep'` | 16,000 | Complex reasoning for difficult problems |
-| `'off'` | 0 | Disable extended thinking |
+| Mode | Budget Tokens | Use Case |
+| ---------- | ------------- | ----------------------------------------------- |
+| `'quick'` | 2,048 | Lightweight reasoning for simple queries |
+| `'normal'` | 8,000 | **Default** - Balanced reasoning for most tasks |
+| `'deep'` | 16,000 | Complex reasoning for difficult problems |
+| `'off'` | 0 | Disable extended thinking |
**Default Behavior**: If `extendedThinking` is not specified, it defaults to `'normal'` mode (8,000 tokens).
### Supported Methods
Extended thinking is automatically applied to all Anthropic provider methods:
+
- `chat()` - Synchronous chat
- `chatStream()` - Streaming chat
- `vision()` - Image analysis
@@ -53,16 +67,19 @@ Extended thinking is automatically applied to all Anthropic provider methods:
### Performance and Cost Implications
**Token Usage**:
+
- You are charged for the **full thinking tokens** generated, not just the summary
- Higher thinking budgets may result in more thorough reasoning but increased costs
- The budget is a **target**, not a strict limit - actual usage may vary
**Response Quality**:
+
- `'quick'`: Fast responses, basic reasoning
- `'normal'`: Good balance between quality and speed (recommended for most use cases)
- `'deep'`: Highest quality reasoning for complex problems, slower responses
**Recommendations**:
+
- Start with `'normal'` (default) for general usage
- Use `'deep'` for complex analytical tasks, philosophy, mathematics, or research
- Use `'quick'` for simple factual queries where deep reasoning isn't needed
@@ -71,6 +88,7 @@ Extended thinking is automatically applied to all Anthropic provider methods:
### Usage Examples
#### Example 1: Default (Normal Mode)
+
```typescript
const provider = new smartai.AnthropicProvider({
anthropicToken: process.env.ANTHROPIC_TOKEN,
@@ -87,6 +105,7 @@ const response = await provider.chat({
```
#### Example 2: Deep Thinking for Complex Analysis
+
```typescript
const provider = new smartai.AnthropicProvider({
anthropicToken: process.env.ANTHROPIC_TOKEN,
@@ -103,6 +122,7 @@ const response = await provider.chat({
```
#### Example 3: Quick Mode for Simple Queries
+
```typescript
const provider = new smartai.AnthropicProvider({
anthropicToken: process.env.ANTHROPIC_TOKEN,
@@ -119,6 +139,7 @@ const response = await provider.chat({
```
#### Example 4: Disable Thinking
+
```typescript
const provider = new smartai.AnthropicProvider({
anthropicToken: process.env.ANTHROPIC_TOKEN,
@@ -135,6 +156,7 @@ const response = await provider.chat({
```
#### Example 5: Extended Thinking with Vision
+
```typescript
const provider = new smartai.AnthropicProvider({
anthropicToken: process.env.ANTHROPIC_TOKEN,
@@ -153,14 +175,17 @@ const analysis = await provider.vision({
### Testing
Comprehensive tests for extended thinking are available in:
+
- `test/test.thinking.anthropic.ts` - Tests all thinking modes
Run tests with:
+
```bash
pnpm test
```
Run specific thinking tests:
+
```bash
npx tstest test/test.thinking.anthropic.ts --verbose
```
@@ -168,6 +193,7 @@ npx tstest test/test.thinking.anthropic.ts --verbose
### API Reference
According to Anthropic's documentation:
+
- Extended thinking is supported on Claude Sonnet 4.5, 4, 3.7, Haiku 4.5, and Opus 4.1, 4
- The current model used is `claude-sonnet-4-5-20250929`
- Minimum thinking budget is 1,024 tokens
@@ -176,6 +202,7 @@ According to Anthropic's documentation:
### Implementation Details
The extended thinking feature is implemented via:
+
1. **Interface**: `IAnthropicProviderOptions.extendedThinking` property
2. **Helper Method**: `getThinkingConfig()` private method that maps modes to token budgets
3. **API Parameter**: Adds `thinking: { type: 'enabled', budget_tokens: number }` to all API calls
diff --git a/readme.md b/readme.md
index 7d8fd18..88c9ced 100644
--- a/readme.md
+++ b/readme.md
@@ -1,11 +1,16 @@
# @push.rocks/smartai
+
**One API to rule them all** 🚀
[](https://www.npmjs.com/package/@push.rocks/smartai)
[](https://www.typescriptlang.org/)
[](https://opensource.org/licenses/MIT)
-SmartAI unifies the world's leading AI providers - OpenAI, Anthropic, Perplexity, Ollama, Groq, XAI, Exo, and ElevenLabs - under a single, elegant TypeScript interface. Build AI applications at lightning speed without vendor lock-in.
+SmartAI unifies the world's leading AI providers - OpenAI, Anthropic, Perplexity, Ollama, Groq, XAI, Exo, and ElevenLabs - under a single, elegant TypeScript interface. Build AI applications at lightning speed without vendor lock-in.
+
+## Issue Reporting and Security
+
+For reporting bugs, issues, or security vulnerabilities, please visit [community.foss.global/](https://community.foss.global/). This is the central community hub for all issue reporting. Developers who sign and comply with our contribution agreement and go through identification can also get a [code.foss.global/](https://code.foss.global/) account to submit Pull Requests directly.
## 🎯 Why SmartAI?
@@ -31,8 +36,8 @@ const ai = new SmartAi({
anthropicToken: 'sk-ant-...',
elevenlabsToken: 'sk-...',
elevenlabs: {
- defaultVoiceId: '19STyYD15bswVz51nqLf' // Optional: Samara voice
- }
+ defaultVoiceId: '19STyYD15bswVz51nqLf', // Optional: Samara voice
+ },
});
await ai.start();
@@ -41,7 +46,7 @@ await ai.start();
const response = await ai.openaiProvider.chat({
systemMessage: 'You are a helpful assistant.',
userMessage: 'Explain quantum computing in simple terms',
- messageHistory: []
+ messageHistory: [],
});
```
@@ -49,16 +54,16 @@ const response = await ai.openaiProvider.chat({
Choose the right provider for your use case:
-| Provider | Chat | Streaming | TTS | Vision | Documents | Research | Images | Highlights |
-|----------|:----:|:---------:|:---:|:------:|:---------:|:--------:|:------:|------------|
-| **OpenAI** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | • gpt-image-1
• DALL-E 3
• Deep research API |
-| **Anthropic** | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ❌ | • Claude Sonnet 4.5
• Superior reasoning
• Web search API |
-| **ElevenLabs** | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ | • Premium TTS
• 70+ languages
• Natural voices |
-| **Ollama** | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ❌ | • 100% local
• Privacy-first
• No API costs |
-| **XAI** | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ | • Grok models
• Real-time data
• Uncensored |
-| **Perplexity** | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ | • Web-aware
• Research-focused
• Sonar Pro models |
-| **Groq** | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | • 10x faster
• LPU inference
• Low latency |
-| **Exo** | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | • Distributed
• P2P compute
• Decentralized |
+| Provider | Chat | Streaming | TTS | Vision | Documents | Research | Images | Highlights |
+| -------------- | :--: | :-------: | :-: | :----: | :-------: | :------: | :----: | --------------------------------------------------------------- |
+| **OpenAI** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | • gpt-image-1
• DALL-E 3
• Deep research API |
+| **Anthropic** | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ❌ | • Claude Sonnet 4.5
• Superior reasoning
• Web search API |
+| **ElevenLabs** | ❌ | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ | • Premium TTS
• 70+ languages
• Natural voices |
+| **Ollama** | ✅ | ✅ | ❌ | ✅ | ✅ | ❌ | ❌ | • 100% local
• Privacy-first
• No API costs |
+| **XAI** | ✅ | ✅ | ❌ | ❌ | ✅ | ❌ | ❌ | • Grok models
• Real-time data
• Uncensored |
+| **Perplexity** | ✅ | ✅ | ❌ | ❌ | ❌ | ✅ | ❌ | • Web-aware
• Research-focused
• Sonar Pro models |
+| **Groq** | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | • 10x faster
• LPU inference
• Low latency |
+| **Exo** | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | • Distributed
• P2P compute
• Decentralized |
## 🎮 Core Features
@@ -71,21 +76,21 @@ Works identically across all providers:
const gptResponse = await ai.openaiProvider.chat({
systemMessage: 'You are a expert physicist.',
userMessage: 'Explain the implications of quantum entanglement',
- messageHistory: []
+ messageHistory: [],
});
// Use Claude for safety-critical applications
const claudeResponse = await ai.anthropicProvider.chat({
systemMessage: 'You are a medical advisor.',
userMessage: 'Review this patient data for concerns',
- messageHistory: []
+ messageHistory: [],
});
// Use Groq for lightning-fast responses
const groqResponse = await ai.groqProvider.chat({
systemMessage: 'You are a code reviewer.',
userMessage: 'Quick! Find the bug in this code: ...',
- messageHistory: []
+ messageHistory: [],
});
```
@@ -102,7 +107,7 @@ const reader = stream.getReader();
while (true) {
const { done, value } = await reader.read();
if (done) break;
-
+
// Update UI in real-time
process.stdout.write(value);
}
@@ -115,7 +120,7 @@ Generate natural voices with OpenAI or ElevenLabs:
```typescript
// OpenAI TTS
const audioStream = await ai.openaiProvider.audio({
- message: 'Welcome to the future of AI development!'
+ message: 'Welcome to the future of AI development!',
});
// ElevenLabs TTS - Premium quality, natural voices (uses v3 by default)
@@ -123,12 +128,13 @@ const elevenLabsAudio = await ai.elevenlabsProvider.audio({
message: 'Experience the most lifelike text to speech technology.',
voiceId: '19STyYD15bswVz51nqLf', // Optional: Samara voice
modelId: 'eleven_v3', // Optional: defaults to eleven_v3 (70+ languages, most expressive)
- voiceSettings: { // Optional: fine-tune voice characteristics
- stability: 0.5, // 0-1: Speech consistency
+ voiceSettings: {
+ // Optional: fine-tune voice characteristics
+ stability: 0.5, // 0-1: Speech consistency
similarity_boost: 0.8, // 0-1: Voice similarity to original
- style: 0.0, // 0-1: Expressiveness (higher = more expressive)
- use_speaker_boost: true // Enhanced clarity
- }
+ style: 0.0, // 0-1: Expressiveness (higher = more expressive)
+ use_speaker_boost: true, // Enhanced clarity
+ },
});
// Stream directly to speakers
@@ -148,19 +154,19 @@ const image = fs.readFileSync('product-photo.jpg');
// OpenAI: General purpose vision
const gptVision = await ai.openaiProvider.vision({
image,
- prompt: 'Describe this product and suggest marketing angles'
+ prompt: 'Describe this product and suggest marketing angles',
});
// Anthropic: Detailed analysis
const claudeVision = await ai.anthropicProvider.vision({
image,
- prompt: 'Identify any safety concerns or defects'
+ prompt: 'Identify any safety concerns or defects',
});
// Ollama: Private, local analysis
const ollamaVision = await ai.ollamaProvider.vision({
image,
- prompt: 'Extract all text and categorize the content'
+ prompt: 'Extract all text and categorize the content',
});
```
@@ -177,7 +183,7 @@ const analysis = await ai.openaiProvider.document({
systemMessage: 'You are a legal expert.',
userMessage: 'Compare these documents and highlight key differences',
messageHistory: [],
- pdfDocuments: [contract, invoice]
+ pdfDocuments: [contract, invoice],
});
// Multi-document analysis
@@ -186,7 +192,7 @@ const taxAnalysis = await ai.anthropicProvider.document({
systemMessage: 'You are a tax advisor.',
userMessage: 'Prepare a tax summary from these documents',
messageHistory: [],
- pdfDocuments: taxDocs
+ pdfDocuments: taxDocs,
});
```
@@ -199,7 +205,7 @@ Perform deep research with web search capabilities across multiple providers:
const deepResearch = await ai.openaiProvider.research({
query: 'What are the latest developments in quantum computing?',
searchDepth: 'deep',
- includeWebSearch: true
+ includeWebSearch: true,
});
console.log(deepResearch.answer);
@@ -209,32 +215,73 @@ console.log('Sources:', deepResearch.sources);
const anthropic = new AnthropicProvider({
anthropicToken: 'sk-ant-...',
enableWebSearch: true,
- searchDomainAllowList: ['nature.com', 'science.org']
+ searchDomainAllowList: ['nature.com', 'science.org'],
});
const scientificResearch = await anthropic.research({
query: 'Latest breakthroughs in CRISPR gene editing',
- searchDepth: 'advanced'
+ searchDepth: 'advanced',
});
// Perplexity - Research-focused with citations
const perplexityResearch = await ai.perplexityProvider.research({
query: 'Current state of autonomous vehicle technology',
- searchDepth: 'deep' // Uses Sonar Pro model
+ searchDepth: 'deep', // Uses Sonar Pro model
});
```
**Research Options:**
+
- `searchDepth`: 'basic' | 'advanced' | 'deep'
- `maxSources`: Number of sources to include
- `includeWebSearch`: Enable web search (OpenAI)
- `background`: Run as background task (OpenAI)
**Supported Providers:**
+
- **OpenAI**: Deep Research API with specialized models (`o3-deep-research-2025-06-26`, `o4-mini-deep-research-2025-06-26`)
- **Anthropic**: Web Search API with domain filtering
- **Perplexity**: Sonar and Sonar Pro models with built-in citations
+### 🧠 Extended Thinking (Anthropic)
+
+Enable Claude to spend more time reasoning about complex problems before generating responses:
+
+```typescript
+import { AnthropicProvider } from '@push.rocks/smartai';
+
+// Configure extended thinking mode at provider level
+const anthropic = new AnthropicProvider({
+ anthropicToken: 'sk-ant-...',
+ extendedThinking: 'normal', // Options: 'quick' | 'normal' | 'deep' | 'off'
+});
+
+await anthropic.start();
+
+// Extended thinking is automatically applied to all methods
+const response = await anthropic.chat({
+ systemMessage: 'You are an expert mathematician.',
+ userMessage: 'Prove the Pythagorean theorem from first principles',
+ messageHistory: [],
+});
+```
+
+**Thinking Modes:**
+
+| Mode | Budget Tokens | Use Case |
+|------|---------------|----------|
+| `'quick'` | 2,048 | Lightweight reasoning for simple queries |
+| `'normal'` | 8,000 | **Default** - Balanced reasoning for most tasks |
+| `'deep'` | 16,000 | Complex reasoning for difficult problems |
+| `'off'` | 0 | Disable extended thinking |
+
+**Best Practices:**
+
+- Start with `'normal'` (default) for general usage
+- Use `'deep'` for complex analytical tasks, philosophy, mathematics, or research
+- Use `'quick'` for simple factual queries where deep reasoning isn't needed
+- Thinking budget counts against total token usage
+
### 🎨 Image Generation & Editing
Generate and edit images with OpenAI's cutting-edge models:
@@ -245,7 +292,7 @@ const image = await ai.openaiProvider.imageGenerate({
prompt: 'A futuristic robot assistant in a modern office, digital art',
model: 'gpt-image-1',
quality: 'high',
- size: '1024x1024'
+ size: '1024x1024',
});
// Save the generated image
@@ -259,7 +306,7 @@ const logo = await ai.openaiProvider.imageGenerate({
quality: 'high',
size: '1024x1024',
background: 'transparent',
- outputFormat: 'png'
+ outputFormat: 'png',
});
// WebP with compression for web use
@@ -269,15 +316,16 @@ const webImage = await ai.openaiProvider.imageGenerate({
quality: 'high',
size: '1536x1024',
outputFormat: 'webp',
- outputCompression: 85
+ outputCompression: 85,
});
// Superior text rendering (gpt-image-1's strength)
const signage = await ai.openaiProvider.imageGenerate({
- prompt: 'Vintage cafe sign saying "COFFEE & CODE" in hand-lettered typography',
+ prompt:
+ 'Vintage cafe sign saying "COFFEE & CODE" in hand-lettered typography',
model: 'gpt-image-1',
quality: 'high',
- size: '1024x1024'
+ size: '1024x1024',
});
// Generate multiple variations at once
@@ -286,7 +334,7 @@ const variations = await ai.openaiProvider.imageGenerate({
model: 'gpt-image-1',
n: 3,
quality: 'medium',
- size: '1024x1024'
+ size: '1024x1024',
});
// Edit an existing image
@@ -294,11 +342,12 @@ const editedImage = await ai.openaiProvider.imageEdit({
image: originalImageBuffer,
prompt: 'Add sunglasses and change the background to a beach sunset',
model: 'gpt-image-1',
- quality: 'high'
+ quality: 'high',
});
```
**Image Generation Options:**
+
- `model`: 'gpt-image-1' | 'dall-e-3' | 'dall-e-2'
- `quality`: 'low' | 'medium' | 'high' | 'auto'
- `size`: Multiple aspect ratios up to 4096×4096
@@ -309,6 +358,7 @@ const editedImage = await ai.openaiProvider.imageEdit({
- `n`: Number of images (1-10)
**gpt-image-1 Advantages:**
+
- Superior text rendering in images
- Up to 4096×4096 resolution
- Transparent background support
@@ -347,12 +397,12 @@ const supportBot = new SmartAi({
async function handleCustomerQuery(query: string, history: ChatMessage[]) {
try {
const response = await supportBot.anthropicProvider.chat({
- systemMessage: `You are a helpful customer support agent.
+ systemMessage: `You are a helpful customer support agent.
Be empathetic, professional, and solution-oriented.`,
userMessage: query,
messageHistory: history
});
-
+
return response.message;
} catch (error) {
// Fallback to another provider if needed
@@ -365,12 +415,12 @@ async function handleCustomerQuery(query: string, history: ChatMessage[]) {
```typescript
const codeReviewer = new SmartAi({
- groqToken: process.env.GROQ_KEY // Groq for speed
+ groqToken: process.env.GROQ_KEY, // Groq for speed
});
async function reviewCode(code: string, language: string) {
const startTime = Date.now();
-
+
const review = await codeReviewer.groqProvider.chat({
systemMessage: `You are a ${language} expert. Review code for:
- Security vulnerabilities
@@ -378,9 +428,9 @@ async function reviewCode(code: string, language: string) {
- Best practices
- Potential bugs`,
userMessage: `Review this code:\n\n${code}`,
- messageHistory: []
+ messageHistory: [],
});
-
+
console.log(`Review completed in ${Date.now() - startTime}ms`);
return review.message;
}
@@ -390,17 +440,18 @@ async function reviewCode(code: string, language: string) {
```typescript
const researcher = new SmartAi({
- perplexityToken: process.env.PERPLEXITY_KEY
+ perplexityToken: process.env.PERPLEXITY_KEY,
});
async function research(topic: string) {
// Perplexity excels at web-aware research
const findings = await researcher.perplexityProvider.chat({
- systemMessage: 'You are a research assistant. Provide factual, cited information.',
+ systemMessage:
+ 'You are a research assistant. Provide factual, cited information.',
userMessage: `Research the latest developments in ${topic}`,
- messageHistory: []
+ messageHistory: [],
});
-
+
return findings.message;
}
```
@@ -412,8 +463,8 @@ const localAI = new SmartAi({
ollama: {
baseUrl: 'http://localhost:11434',
model: 'llama2',
- visionModel: 'llava'
- }
+ visionModel: 'llava',
+ },
});
// Process sensitive documents without leaving your infrastructure
@@ -422,9 +473,9 @@ async function analyzeSensitiveDoc(pdfBuffer: Buffer) {
systemMessage: 'Extract and summarize key information.',
userMessage: 'Analyze this confidential document',
messageHistory: [],
- pdfDocuments: [pdfBuffer]
+ pdfDocuments: [pdfBuffer],
});
-
+
// Data never leaves your servers
return analysis.message;
}
@@ -437,7 +488,7 @@ async function analyzeSensitiveDoc(pdfBuffer: Buffer) {
```typescript
class SmartAIRouter {
constructor(private ai: SmartAi) {}
-
+
async query(message: string, requirements: {
speed?: boolean;
accuracy?: boolean;
@@ -464,8 +515,10 @@ class SmartAIRouter {
```typescript
// Don't wait for the entire response
async function streamResponse(userQuery: string) {
- const stream = await ai.openaiProvider.chatStream(createInputStream(userQuery));
-
+ const stream = await ai.openaiProvider.chatStream(
+ createInputStream(userQuery),
+ );
+
// Process tokens as they arrive
for await (const chunk of stream) {
updateUI(chunk); // Immediate feedback
@@ -484,7 +537,7 @@ async function consensusQuery(question: string) {
ai.anthropicProvider.chat({...}),
ai.perplexityProvider.chat({...})
];
-
+
const responses = await Promise.all(providers);
return synthesizeResponses(responses);
}
@@ -500,7 +553,7 @@ const translationStream = new TransformStream({
async transform(chunk, controller) {
const translated = await translateChunk(chunk);
controller.enqueue(translated);
- }
+ },
});
const responseStream = await ai.openaiProvider.chatStream(input);
@@ -512,7 +565,7 @@ const translatedStream = responseStream.pipeThrough(translationStream);
```typescript
class ResilientAI {
private providers = ['openai', 'anthropic', 'groq'];
-
+
async query(opts: ChatOptions): Promise {
for (const provider of this.providers) {
try {
@@ -535,14 +588,14 @@ class UsageTracker {
async trackedChat(provider: string, options: ChatOptions) {
const start = Date.now();
const response = await ai[`${provider}Provider`].chat(options);
-
+
const usage = {
provider,
duration: Date.now() - start,
inputTokens: estimateTokens(options),
- outputTokens: estimateTokens(response.message)
+ outputTokens: estimateTokens(response.message),
};
-
+
await this.logUsage(usage);
return response;
}
@@ -553,7 +606,7 @@ class UsageTracker {
### Prerequisites
-- Node.js 16+
+- Node.js 16+
- TypeScript 4.5+
- API keys for your chosen providers
@@ -588,17 +641,17 @@ export ELEVENLABS_API_KEY=sk-...
## 🎯 Choosing the Right Provider
-| Use Case | Recommended Provider | Why |
-|----------|---------------------|-----|
-| **General Purpose** | OpenAI | Most features, stable, well-documented |
-| **Complex Reasoning** | Anthropic | Superior logical thinking, safer outputs |
-| **Research & Facts** | Perplexity | Web-aware, provides citations |
-| **Deep Research** | OpenAI | Deep Research API with comprehensive analysis |
-| **Premium TTS** | ElevenLabs | Most natural voices, 70+ languages, superior quality (v3) |
-| **Speed Critical** | Groq | 10x faster inference, sub-second responses |
-| **Privacy Critical** | Ollama | 100% local, no data leaves your servers |
-| **Real-time Data** | XAI | Access to current information |
-| **Cost Sensitive** | Ollama/Exo | Free (local) or distributed compute |
+| Use Case | Recommended Provider | Why |
+| --------------------- | -------------------- | --------------------------------------------------------- |
+| **General Purpose** | OpenAI | Most features, stable, well-documented |
+| **Complex Reasoning** | Anthropic | Superior logical thinking, safer outputs |
+| **Research & Facts** | Perplexity | Web-aware, provides citations |
+| **Deep Research** | OpenAI | Deep Research API with comprehensive analysis |
+| **Premium TTS** | ElevenLabs | Most natural voices, 70+ languages, superior quality (v3) |
+| **Speed Critical** | Groq | 10x faster inference, sub-second responses |
+| **Privacy Critical** | Ollama | 100% local, no data leaves your servers |
+| **Real-time Data** | XAI | Access to current information |
+| **Cost Sensitive** | Ollama/Exo | Free (local) or distributed compute |
## 📈 Roadmap
@@ -613,19 +666,21 @@ export ELEVENLABS_API_KEY=sk-...
## License and Legal Information
-This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
+This repository contains open-source code licensed under the MIT License. A copy of the license can be found in the [LICENSE](./LICENSE) file.
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
### Trademarks
-This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
+This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH or third parties, and are not included within the scope of the MIT license granted herein.
+
+Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines or the guidelines of the respective third-party owners, and any usage must be approved in writing. Third-party trademarks used herein are the property of their respective owners and used only in a descriptive manner, e.g. for an implementation of an API or similar.
### Company Information
-Task Venture Capital GmbH
-Registered at District court Bremen HRB 35230 HB, Germany
+Task Venture Capital GmbH
+Registered at District Court Bremen HRB 35230 HB, Germany
-For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
+For any legal inquiries or further information, please contact us via email at hello@task.vc.
-By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
\ No newline at end of file
+By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
diff --git a/test/test.audio.elevenlabs.ts b/test/test.audio.elevenlabs.ts
index bb5f76a..27404d7 100644
--- a/test/test.audio.elevenlabs.ts
+++ b/test/test.audio.elevenlabs.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartfile from '@push.rocks/smartfile';
diff --git a/test/test.audio.openai.ts b/test/test.audio.openai.ts
index 1095ffd..af9acda 100644
--- a/test/test.audio.openai.ts
+++ b/test/test.audio.openai.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartfile from '@push.rocks/smartfile';
diff --git a/test/test.audio.stubs.ts b/test/test.audio.stubs.ts
index 46826ac..95ec863 100644
--- a/test/test.audio.stubs.ts
+++ b/test/test.audio.stubs.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
const testQenv = new qenv.Qenv('./', './.nogit/');
diff --git a/test/test.basic.ts b/test/test.basic.ts
index 3234bf1..6862a13 100644
--- a/test/test.basic.ts
+++ b/test/test.basic.ts
@@ -1,4 +1,4 @@
-import { tap, expect } from '@push.rocks/tapbundle';
+import { tap, expect } from '@git.zone/tstest/tapbundle';
import * as smartai from '../ts/index.js';
// Basic instantiation tests that don't require API tokens
diff --git a/test/test.chat.anthropic.ts b/test/test.chat.anthropic.ts
index 413a1d2..d36c504 100644
--- a/test/test.chat.anthropic.ts
+++ b/test/test.chat.anthropic.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
const testQenv = new qenv.Qenv('./', './.nogit/');
diff --git a/test/test.chat.openai.ts b/test/test.chat.openai.ts
index 60464a3..1bd013b 100644
--- a/test/test.chat.openai.ts
+++ b/test/test.chat.openai.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
const testQenv = new qenv.Qenv('./', './.nogit/');
diff --git a/test/test.document.anthropic.ts b/test/test.document.anthropic.ts
index 5e723bb..60b530e 100644
--- a/test/test.document.anthropic.ts
+++ b/test/test.document.anthropic.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartfile from '@push.rocks/smartfile';
diff --git a/test/test.document.openai.ts b/test/test.document.openai.ts
index 19465b1..4a86efd 100644
--- a/test/test.document.openai.ts
+++ b/test/test.document.openai.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartfile from '@push.rocks/smartfile';
diff --git a/test/test.image.openai.ts b/test/test.image.openai.ts
index 3fc8ade..408762e 100644
--- a/test/test.image.openai.ts
+++ b/test/test.image.openai.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartai from '../ts/index.js';
import * as path from 'path';
diff --git a/test/test.interfaces.ts b/test/test.interfaces.ts
index d7d6be5..741a063 100644
--- a/test/test.interfaces.ts
+++ b/test/test.interfaces.ts
@@ -1,4 +1,4 @@
-import { tap, expect } from '@push.rocks/tapbundle';
+import { tap, expect } from '@git.zone/tstest/tapbundle';
import * as smartai from '../ts/index.js';
// Test interface exports and type checking
diff --git a/test/test.research.anthropic.ts b/test/test.research.anthropic.ts
index 1aac067..1059997 100644
--- a/test/test.research.anthropic.ts
+++ b/test/test.research.anthropic.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartai from '../ts/index.js';
import * as path from 'path';
diff --git a/test/test.research.openai.ts b/test/test.research.openai.ts
index 26361ff..06d6cf3 100644
--- a/test/test.research.openai.ts
+++ b/test/test.research.openai.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartai from '../ts/index.js';
import * as path from 'path';
diff --git a/test/test.research.stubs.ts b/test/test.research.stubs.ts
index 29efa96..d15b1a5 100644
--- a/test/test.research.stubs.ts
+++ b/test/test.research.stubs.ts
@@ -1,4 +1,4 @@
-import { tap, expect } from '@push.rocks/tapbundle';
+import { tap, expect } from '@git.zone/tstest/tapbundle';
import * as smartai from '../ts/index.js';
// Test research method stubs for providers without full implementation
diff --git a/test/test.thinking.anthropic.ts b/test/test.thinking.anthropic.ts
index 4a25998..c6f953a 100644
--- a/test/test.thinking.anthropic.ts
+++ b/test/test.thinking.anthropic.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
const testQenv = new qenv.Qenv('./', './.nogit/');
diff --git a/test/test.vision.anthropic.ts b/test/test.vision.anthropic.ts
index 4cfcd13..fdc1007 100644
--- a/test/test.vision.anthropic.ts
+++ b/test/test.vision.anthropic.ts
@@ -1,4 +1,4 @@
-import { expect, tap } from '@push.rocks/tapbundle';
+import { expect, tap } from '@git.zone/tstest/tapbundle';
import * as qenv from '@push.rocks/qenv';
import * as smartfile from '@push.rocks/smartfile';
diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts
index 0adbb3e..5ad313c 100644
--- a/ts/00_commitinfo_data.ts
+++ b/ts/00_commitinfo_data.ts
@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartai',
- version: '0.8.0',
+ version: '0.9.0',
description: 'SmartAi is a versatile TypeScript library designed to facilitate integration and interaction with various AI models, offering functionalities for chat, audio generation, document processing, and vision tasks.'
}
diff --git a/ts/provider.anthropic.ts b/ts/provider.anthropic.ts
index cca1719..8db261c 100644
--- a/ts/provider.anthropic.ts
+++ b/ts/provider.anthropic.ts
@@ -317,7 +317,11 @@ export class AnthropicProvider extends MultiModalModel {
const maxTokens = optionsArg.searchDepth === 'deep' ? 20000 :
optionsArg.searchDepth === 'advanced' ? 20000 : 20000;
+ // Add thinking configuration if enabled
+ const thinkingConfig = this.getThinkingConfig();
+
// Create the research request
+ // Note: When thinking is enabled, temperature must be 1 (or omitted)
const requestParams: any = {
model: 'claude-sonnet-4-5-20250929',
system: systemMessage,
@@ -328,7 +332,8 @@ export class AnthropicProvider extends MultiModalModel {
}
],
max_tokens: maxTokens,
- temperature: 0.7
+ // Only set temperature when thinking is NOT enabled
+ ...(thinkingConfig ? {} : { temperature: 0.7 })
};
// Add tools if web search is enabled
@@ -337,7 +342,6 @@ export class AnthropicProvider extends MultiModalModel {
}
// Add thinking configuration if enabled
- const thinkingConfig = this.getThinkingConfig();
if (thinkingConfig) {
requestParams.thinking = thinkingConfig;
}
diff --git a/ts/provider.elevenlabs.ts b/ts/provider.elevenlabs.ts
index 08639b9..e9679c9 100644
--- a/ts/provider.elevenlabs.ts
+++ b/ts/provider.elevenlabs.ts
@@ -1,4 +1,5 @@
import * as plugins from './plugins.js';
+import { Readable } from 'stream';
import { MultiModalModel } from './abstract.classes.multimodal.js';
import type {
@@ -83,7 +84,8 @@ export class ElevenLabsProvider extends MultiModalModel {
throw new Error(`ElevenLabs API error: ${response.status} ${response.statusText} - ${errorText}`);
}
- const nodeStream = response.streamNode();
+ const webStream = response.stream();
+ const nodeStream = Readable.fromWeb(webStream as any);
return nodeStream;
}
diff --git a/ts/provider.openai.ts b/ts/provider.openai.ts
index 4b2984a..c93ea1d 100644
--- a/ts/provider.openai.ts
+++ b/ts/provider.openai.ts
@@ -1,6 +1,7 @@
import * as plugins from './plugins.js';
import * as paths from './paths.js';
import { Readable } from 'stream';
+import { toFile } from 'openai';
// Custom type definition for chat completion messages
export type TChatCompletionRequestMessage = {
@@ -405,16 +406,19 @@ export class OpenAiProvider extends MultiModalModel {
const model = optionsArg.model || this.options.imageModel || 'gpt-image-1';
try {
+ // Convert Buffer to uploadable file format for OpenAI API
+ const imageFile = await toFile(optionsArg.image, 'image.png', { type: 'image/png' });
+
const requestParams: any = {
model,
- image: optionsArg.image,
+ image: imageFile,
prompt: optionsArg.prompt,
n: optionsArg.n || 1,
};
- // Add mask if provided
+ // Add mask if provided (also convert to file format)
if (optionsArg.mask) {
- requestParams.mask = optionsArg.mask;
+ requestParams.mask = await toFile(optionsArg.mask, 'mask.png', { type: 'image/png' });
}
// Add gpt-image-1 specific parameters
diff --git a/tsconfig.json b/tsconfig.json
index dfe5a55..575a85e 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -6,9 +6,9 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
- "verbatimModuleSyntax": true
+ "verbatimModuleSyntax": true,
+ "baseUrl": ".",
+ "paths": {}
},
- "exclude": [
- "dist_*/**/*.d.ts"
- ]
+ "exclude": ["dist_*/**/*.d.ts"]
}