Compare commits

..

1 Commits

Author SHA1 Message Date
renovate[bot]
51f4ce1358 chore(deps): update dependency tailwindcss to v3.4.19 2026-02-17 15:16:42 +00:00
21 changed files with 162 additions and 1246 deletions

View File

@@ -129,7 +129,7 @@ jobs:
build: build:
name: Build (per-arch, native runners) name: Build (per-arch, native runners)
if: github.ref == 'refs/heads/develop' if: github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, '[skip ci]')
strategy: strategy:
matrix: matrix:
include: include:
@@ -237,7 +237,7 @@ jobs:
discord: discord:
name: Send Discord Notification name: Send Discord Notification
needs: publish needs: publish
if: always() && github.event_name != 'pull_request' if: always() && github.event_name != 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
steps: steps:
- name: Determine Workflow Status - name: Determine Workflow Status

View File

@@ -1,87 +0,0 @@
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Create tag
on:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
determine-tag-version:
name: Determine tag version
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-24.04
permissions:
contents: read
outputs:
tag_version: ${{ steps.git-cliff.outputs.tag_version }}
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
fetch-depth: 0
persist-credentials: false
- name: Install git-cliff
uses: taiki-e/install-action@cede0bb282aae847dfa8aacca3a41c86d973d4d7 # v2.68.1
with:
tool: git-cliff
- name: Get tag version
id: git-cliff
run: |
tag_version=$(git-cliff -c .github/cliff.toml --bumped-version --unreleased)
echo "Next tag version is ${tag_version}"
echo "tag_version=${tag_version}" >> "$GITHUB_OUTPUT"
create-tag:
name: Create tag
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-24.04
permissions:
contents: write
needs: determine-tag-version
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_VERSION: ${{ needs.determine-tag-version.outputs.tag_version }}
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
ssh-key: '${{ secrets.COMMIT_KEY }}'
- name: Pnpm Setup
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- name: Set up Node.js
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
with:
node-version-file: 'package.json'
# For workflows with elevated privileges we recommend disabling automatic caching.
# https://github.com/actions/setup-node
package-manager-cache: false
- name: Configure git
run: |
git config --global user.name "${{ github.actor }}"
git config --global user.email "${{ github.actor }}@users.noreply.github.com"
- name: Bump package.json
run: npm version ${TAG_VERSION} --no-commit-hooks --no-git-tag-version
- name: Commit updated files
run: |
git add package.json
git commit -m 'chore(release): prepare ${TAG_VERSION}'
git push
- name: Create git tag
run: |
git tag ${TAG_VERSION}
git push origin ${TAG_VERSION}

View File

@@ -304,3 +304,42 @@ jobs:
run: gh release edit "${{ env.VERSION }}" --draft=false --repo "${{ github.repository }}" run: gh release edit "${{ env.VERSION }}" --draft=false --repo "${{ github.repository }}"
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
discord:
name: Send Discord Notification
needs: publish-release
if: always()
runs-on: ubuntu-24.04
steps:
- name: Determine status
id: status
run: |
case "${{ needs.publish-release.result }}" in
success) echo "status=Success" >> $GITHUB_OUTPUT; echo "colour=3066993" >> $GITHUB_OUTPUT ;;
failure) echo "status=Failure" >> $GITHUB_OUTPUT; echo "colour=15158332" >> $GITHUB_OUTPUT ;;
cancelled) echo "status=Cancelled" >> $GITHUB_OUTPUT; echo "colour=10181046" >> $GITHUB_OUTPUT ;;
*) echo "status=Skipped" >> $GITHUB_OUTPUT; echo "colour=9807270" >> $GITHUB_OUTPUT ;;
esac
- name: Send notification
run: |
WEBHOOK="${{ secrets.DISCORD_WEBHOOK }}"
PAYLOAD=$(cat <<EOF
{
"embeds": [{
"title": "${{ steps.status.outputs.status }}: ${{ github.workflow }}",
"color": ${{ steps.status.outputs.colour }},
"fields": [
{ "name": "Repository", "value": "[${{ github.repository }}](${{ github.server_url }}/${{ github.repository }})", "inline": true },
{ "name": "Ref", "value": "${{ github.ref }}", "inline": true },
{ "name": "Event", "value": "${{ github.event_name }}", "inline": true },
{ "name": "Triggered by", "value": "${{ github.actor }}", "inline": true },
{ "name": "Workflow", "value": "[${{ github.workflow }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }})", "inline": true }
]
}]
}
EOF
)
curl -sS -H "Content-Type: application/json" -X POST -d "$PAYLOAD" "$WEBHOOK" || true

View File

@@ -1,149 +0,0 @@
# Channels DVR Integration for Seerr
**Status:** Phase 1 Complete (Core Integration)
**Date:** 2026-02-20
**Implemented by:** Synapse (Opus → Sonnet)
## Overview
Added Channels DVR as a 4th media server backend to Seerr (alongside Jellyfin, Plex, Emby).
## What Was Implemented
### 1. Media Server Type Enum (`server/constants/server.ts`)
- Added `CHANNELS_DVR = 4` to `MediaServerType` enum
### 2. API Client (`server/api/channelsdvr.ts`)
- Full REST API client for Channels DVR
- Methods:
- `getShows()` - List all TV shows
- `getShow(id)` - Get specific show
- `getShowEpisodes(id)` - Get episodes for a show
- `getMovies()` - List all movies
- `getMovie(id)` - Get specific movie
- `testConnection()` - Connectivity test
- TypeScript interfaces for all API responses
### 3. Library Scanner (`server/lib/scanners/channelsdvr/index.ts`)
- Scans Channels DVR library and maps to Seerr
- **Key feature:** TMDb ID lookup by title/year search
- Processes movies and TV shows
- Handles episode/season grouping
- Tracks processing status
### 4. Settings Integration (`server/lib/settings/index.ts`)
- Added `ChannelsDVRSettings` interface
- Added to `AllSettings` with default initialization
- Configuration fields:
- `name`: Display name
- `url`: Channels DVR server URL (e.g., http://192.168.0.15:8089)
- `libraries`: Library configuration array
## How It Works
1. **User configures Channels DVR URL** in Seerr settings
2. **Scanner connects** via REST API (no auth needed!)
3. **Fetches all content** (movies + TV shows)
4. **Maps to TMDb** by searching title + year
5. **Processes into Seerr database** for request management
## Key Design Decisions
### Why TMDb Search Instead of Direct IDs?
- Channels DVR doesn't provide TMDb/IMDb IDs in API
- Uses program_id (Gracenote/TMS identifiers)
- Solution: Search TMDb by title + release year
- First result is used (good enough for most cases)
### Why No Authentication?
- Channels DVR API has no auth (local network only)
- Simplifies implementation
- Security via network isolation
### Why Simplified Scanner?
- Channels DVR doesn't expose resolution info via API
- Defaults all content to non-4K
- Future enhancement: parse video files for resolution
## What's NOT Done (Phase 2 & 3)
### Phase 2: UI Integration (TODO)
- [ ] Settings page for Channels DVR URL configuration
- [ ] Server connection test button
- [ ] Library selection UI
- [ ] Server type selector (Jellyfin/Plex/Emby/Channels DVR)
### Phase 3: Testing & Polish (TODO)
- [ ] Test with real Channels DVR instance (http://192.168.0.15:8089)
- [ ] Handle edge cases:
- Shows/movies not found on TMDb
- Network errors
- Invalid URLs
- [ ] Add proper error messages
- [ ] Document configuration for users
- [ ] Consider PR to upstream Seerr project
## Testing Instructions
### Prerequisites
1. Channels DVR server running (http://192.168.0.15:8089)
2. Seerr development environment set up
3. Node.js + pnpm installed
### Manual Testing Steps
```bash
# 1. Install dependencies
cd /home/node/.openclaw/workspace/seerr-explore
pnpm install
# 2. Build the project
pnpm build
# 3. Start Seerr
pnpm start
# 4. Configure via UI:
# - Go to Settings → Channels DVR
# - Enter URL: http://192.168.0.15:8089
# - Save
# 5. Trigger scan:
# - Settings → Library Sync → Scan Channels DVR
```
### API Testing (Without Full Seerr)
```bash
# Test Channels DVR API directly
curl http://192.168.0.15:8089/api/v1/shows | jq '.[0]'
curl http://192.168.0.15:8089/api/v1/movies | jq '.[0]'
```
## Files Changed
- `server/constants/server.ts` - Added enum value
- `server/api/channelsdvr.ts` - New API client
- `server/lib/scanners/channelsdvr/index.ts` - New scanner
- `server/lib/settings/index.ts` - Added settings interface
## Next Steps
1. **Commit changes** to git
2. **Test with real Channels DVR** instance
3. **Build UI** for configuration (Phase 2)
4. **Polish & document** (Phase 3)
5. **Consider upstream PR** to Seerr project
## Notes
- Used Opus for architecture/planning phase
- Downgraded to Sonnet for implementation details
- Code follows existing Seerr patterns (Jellyfin scanner as reference)
- TypeScript types are complete and match Channels DVR API
- Ready for testing with real instance
## Resources
- Channels DVR API Docs: https://getchannels.com/docs/server-api/introduction/
- Channels DVR Instance: http://192.168.0.15:8089
- Seerr GitHub: https://github.com/seerr-team/seerr
- Our Fork: https://git.bytesnap.io/ByteSnap/channels-seerr

View File

@@ -6,12 +6,6 @@ All help is welcome and greatly appreciated! If you would like to contribute to
> [!IMPORTANT] > [!IMPORTANT]
> >
> Automated AI-generated contributions without human review are not allowed and will be rejected.
> This is an open-source project maintained by volunteers.
> We do not have the resources to review pull requests that could have been avoided with proper human oversight.
> While we have no issue with contributors using AI tools as an aid, it is your responsibility as a contributor to ensure that all submissions are carefully reviewed and meet our quality standards.
> Submissions that appear to be unreviewed AI output will be considered low-effort and may result in a ban.
>
> If you are using **any kind of AI assistance** to contribute to Seerr, > If you are using **any kind of AI assistance** to contribute to Seerr,
> it must be disclosed in the pull request. > it must be disclosed in the pull request.

View File

@@ -1,62 +0,0 @@
# Testing Channels-Seerr with Docker
## Quick Start
1. **Build and run:**
```bash
docker-compose -f docker-compose.test.yml up --build
```
2. **Access the web UI:**
- Open browser: http://localhost:5055
- Complete the setup wizard
- Add your Channels DVR server in Settings
3. **Stop:**
```bash
docker-compose -f docker-compose.test.yml down
```
## Configuration
- **Config directory:** `./config` (created automatically, persists settings)
- **Logs:** `docker-compose logs -f seerr`
- **Port:** Default 5055 (change in docker-compose.test.yml if needed)
## Testing Channels DVR Integration
1. Start Seerr container
2. Navigate to Settings → Channels DVR
3. Add your Channels DVR server:
- **Server URL:** http://your-channels-server:8089
- **Test connection** to verify
4. Enable sync jobs (manual or scheduled)
5. Check logs for sync activity:
```bash
docker-compose -f docker-compose.test.yml logs -f seerr | grep -i channels
```
## Development Testing
For faster iteration without full rebuilds:
```bash
# Use Dockerfile.local for development
docker build -f Dockerfile.local -t channels-seerr:dev .
docker run -p 5055:5055 -v ./config:/app/config channels-seerr:dev
```
## Troubleshooting
**Build fails:**
- Check Node.js version (requires 22.x)
- Try: `docker-compose -f docker-compose.test.yml build --no-cache`
**Can't connect to Channels DVR:**
- If Channels is on host machine: Use `http://host.docker.internal:8089`
- If on tailnet: Use the Tailscale IP
- Check firewall allows connections from Docker network
**Database issues:**
- SQLite (default): Stored in `./config/db/db.sqlite3`
- To use Postgres: Uncomment postgres service in docker-compose.test.yml

View File

@@ -1,35 +0,0 @@
version: '3.8'
services:
seerr:
build:
context: .
dockerfile: Dockerfile
args:
COMMIT_TAG: channels-dvr-test
container_name: channels-seerr-test
hostname: seerr
ports:
- "5055:5055"
environment:
- LOG_LEVEL=debug
- TZ=America/Chicago
volumes:
- ./config:/app/config
restart: unless-stopped
# Optional: PostgreSQL for production-like testing
# Uncomment if you want to test with Postgres instead of SQLite
# postgres:
# image: postgres:15-alpine
# container_name: seerr-postgres
# environment:
# - POSTGRES_PASSWORD=seerr
# - POSTGRES_USER=seerr
# - POSTGRES_DB=seerr
# volumes:
# - postgres-data:/var/lib/postgresql/data
# restart: unless-stopped
# volumes:
# postgres-data:

View File

@@ -30,7 +30,7 @@ If your PostgreSQL server is configured to accept TCP connections, you can speci
```dotenv ```dotenv
DB_TYPE=postgres # Which DB engine to use, either sqlite or postgres. The default is sqlite. DB_TYPE=postgres # Which DB engine to use, either sqlite or postgres. The default is sqlite.
DB_HOST=localhost # (optional) The host (URL) of the database. The default is "localhost". DB_HOST="localhost" # (optional) The host (URL) of the database. The default is "localhost".
DB_PORT="5432" # (optional) The port to connect to. The default is "5432". DB_PORT="5432" # (optional) The port to connect to. The default is "5432".
DB_USER= # (required) Username used to connect to the database. DB_USER= # (required) Username used to connect to the database.
DB_PASS= # (required) Password of the user used to connect to the database. DB_PASS= # (required) Password of the user used to connect to the database.

View File

@@ -1,111 +0,0 @@
---
title: Synology (Advanced)
description: Install Seerr on Synology NAS using SynoCommunity
sidebar_position: 5
---
# Synology
:::warning
Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages.
:::
:::warning
This method is not recommended for most users. It is intended for advanced users who are using Synology NAS.
:::
## Prerequisites
- Synology NAS running **DSM 7.2** or later
- 64-bit architecture (x86_64 or ARMv8)
- [SynoCommunity package source](https://synocommunity.com/) added to Package Center
## Adding the SynoCommunity Package Source
If you haven't already added SynoCommunity to your Package Center:
1. Open **Package Center** in DSM
2. Click **Settings** in the top-right corner
3. Go to the **Package Sources** tab
4. Click **Add**
5. Enter the following:
- **Name**: `SynoCommunity`
- **Location**: `https://packages.synocommunity.com`
6. Click **OK**
## Installation
1. In **Package Center**, search for **Seerr**
2. Click **Install**
3. Follow the installation wizard prompts
4. Package Center will automatically install any required dependencies (Node.js v22)
### Access Seerr
Once installed, access Seerr at:
```
http://<your-synology-ip>:5055
```
You can also click the **Open** button in Package Center or find Seerr in the DSM main menu.
## Configuration
Seerr's configuration files are stored at:
```
/var/packages/seerr/var/config
```
:::info
The Seerr package runs as a dedicated service user managed by DSM. No manual permission configuration is required.
:::
## Managing the Service
You can start, stop, and restart Seerr from **Package Center** → Find Seerr → Use the action buttons.
## Updating
When a new version is available:
1. Open **Package Center**
2. Go to **Installed** packages
3. Find **Seerr** and click **Update** if available
:::tip
Enable automatic updates in Package Center settings to keep Seerr up to date.
:::
## Troubleshooting
### Viewing Logs
Seerr logs are located at `/var/packages/seerr/var/config/logs` and can be accessed using:
- **File Browser** package (recommended for most users)
- SSH (advanced users)
### Port Conflicts
Seerr uses port 5055. If this port is already in use:
- **Docker containers**: Remap the conflicting container to a different port
- **Other packages**: The conflicting package will need to be uninstalled as Seerr's port cannot be changed
SynoCommunity ensures there are no port conflicts with other SynoCommunity packages or official Synology packages.
### Package Won't Start
Ensure Node.js v22 is installed and running by checking its status in **Package Center**.
## Uninstallation
1. Open **Package Center**
2. Find **Seerr** in your installed packages
3. Click **Uninstall**
:::caution
Uninstalling will remove the application but preserve your configuration data by default. Select "Remove data" during uninstallation if you want a complete removal.
:::

View File

@@ -4,6 +4,12 @@ description: Install Seerr using TrueNAS
sidebar_position: 4 sidebar_position: 4
--- ---
# TrueNAS # TrueNAS
:::danger
This method has not yet been updated for Seerr and is currently a work in progress.
You can follow the ongoing work on this issue https://github.com/truenas/apps/issues/3374.
:::
<!--
:::warning :::warning
Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages. Third-party installation methods are maintained by the community. The Seerr team is not responsible for these packages.
::: :::
@@ -11,7 +17,4 @@ Third-party installation methods are maintained by the community. The Seerr team
:::warning :::warning
This method is not recommended for most users. It is intended for advanced users who are using TrueNAS distribution. This method is not recommended for most users. It is intended for advanced users who are using TrueNAS distribution.
::: :::
-->
## Installation
Go to the 'Apps' menu, click the 'Discover Apps' button in the top right, search for 'Seerr' in the search bar, and install the app.

View File

@@ -210,42 +210,7 @@ See https://aur.archlinux.org/packages/seerr
### TrueNAS ### TrueNAS
Refer to [Seerr TrueNAS Documentation](/getting-started/third-parties/truenas), all of our examples have been updated to reflect the below change. Waiting for https://github.com/truenas/apps/issues/3374
<Tabs groupId="truenas-migration" queryString>
<TabItem value="hostpath" label="Host Path">
**This guide describes how to migrate from Host Path storage (not ixVolume).**
1. Stop Jellyseerr/Overseerr
2. Install Seerr and use the same Host Path storage that was used by Jellyseerr/Overseerr
3. Start Seerr app
4. Delete Jellyseerr/Overseerr app
</TabItem>
<TabItem value="ixvolume" label="ixVolume">
**This guide describes how to migrate from ixVolume storage (not Host Path).**
1. Stop Jellyseerr/Overseerr
2. Create a dataset for Seerr
If your apps normally store data under something like:
```
/mnt/storage/<app-name>
```
then create a dataset named:
```
storage/seerr
```
resulting in:
```
/mnt/storage/seerr
```
3. Copy ixVolume Data
Open System Settings → Shell, or SSH into your TrueNAS server as root and run :
```bash
rsync -av /mnt/.ix-apps/app_mounts/jellyseerr/ /mnt/storage/seerr/
```
4. Install Seerr and use the same Host Path storage that was created before (`/mnt/storage/seerr/config` in our example)
5. Start Seerr app
6. Delete Jellyseerr/Overseerr app
</TabItem>
</Tabs>
### Unraid ### Unraid

View File

@@ -19,7 +19,7 @@ Please check how to migrate to Seerr in our [migration guide](https://docs.seerr
Seerr brings several features that were previously available in Jellyseerr but missing from Overseerr. These additions improve flexibility, performance, and overall control for admins and power users: Seerr brings several features that were previously available in Jellyseerr but missing from Overseerr. These additions improve flexibility, performance, and overall control for admins and power users:
* **Alternative media solution:** Added support for Jellyfin and Emby as alternatives to Plex. Only one integration can be used at a time. * **Alternative media solution:** Added support for Jellyfin and Emby in addition to the existing Plex integration.
* **PostgreSQL support**: In addition to SQLite, you can now opt in to using a PostgreSQL database. * **PostgreSQL support**: In addition to SQLite, you can now opt in to using a PostgreSQL database.
* **Blocklist for movies, series, and tags**: Allows permitted users to hide movies, series, or tags from regular users. * **Blocklist for movies, series, and tags**: Allows permitted users to hide movies, series, or tags from regular users.
* **Override rules**: Adjust default request settings based on conditions such as user, tag, or other criteria. * **Override rules**: Adjust default request settings based on conditions such as user, tag, or other criteria.

View File

@@ -16,12 +16,7 @@ const config: Config = {
deploymentBranch: 'gh-pages', deploymentBranch: 'gh-pages',
onBrokenLinks: 'throw', onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
markdown: {
hooks: {
onBrokenMarkdownLinks: 'warn',
},
},
i18n: { i18n: {
defaultLocale: 'en', defaultLocale: 'en',

269
gen-docs/pnpm-lock.yaml generated
View File

@@ -34,7 +34,7 @@ importers:
version: 18.3.1(react@18.3.1) version: 18.3.1(react@18.3.1)
tailwindcss: tailwindcss:
specifier: ^3.4.4 specifier: ^3.4.4
version: 3.4.17 version: 3.4.19(yaml@2.8.1)
devDependencies: devDependencies:
'@docusaurus/module-type-aliases': '@docusaurus/module-type-aliases':
specifier: 3.9.1 specifier: 3.9.1
@@ -708,8 +708,8 @@ packages:
resolution: {integrity: sha512-h7iEYiW4HebClDEhtvFObtPmIvrd1SSfpI9EhOeKk4CtIK/ngBWFpuhCzhdmRKtg71ylcue+9I6dv54XYO1epQ==} resolution: {integrity: sha512-h7iEYiW4HebClDEhtvFObtPmIvrd1SSfpI9EhOeKk4CtIK/ngBWFpuhCzhdmRKtg71ylcue+9I6dv54XYO1epQ==}
engines: {node: '>=6.9.0'} engines: {node: '>=6.9.0'}
'@babel/runtime@7.28.4': '@babel/runtime@7.28.6':
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'} engines: {node: '>=6.9.0'}
'@babel/template@7.27.2': '@babel/template@7.27.2':
@@ -1224,10 +1224,6 @@ packages:
'@hapi/topo@5.1.0': '@hapi/topo@5.1.0':
resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
'@jest/schemas@29.6.3': '@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -1409,10 +1405,6 @@ packages:
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==} resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'} engines: {node: '>=8.0.0'}
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
'@pnpm/config.env-replace@1.1.0': '@pnpm/config.env-replace@1.1.0':
resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==}
engines: {node: '>=12.22.0'} engines: {node: '>=12.22.0'}
@@ -1943,9 +1935,6 @@ packages:
brace-expansion@1.1.12: brace-expansion@1.1.12:
resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
brace-expansion@2.0.2:
resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==}
braces@3.0.3: braces@3.0.3:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'} engines: {node: '>=8'}
@@ -2684,8 +2673,8 @@ packages:
fast-uri@3.1.0: fast-uri@3.1.0:
resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
fastq@1.19.1: fastq@1.20.1:
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} resolution: {integrity: sha512-GGToxJ/w1x32s/D2EKND7kTil4n8OVk/9mycTc4VDza13lOvpUZTGX3mFSCtV9ksdGBVzvsyAVLM6mHFThxXxw==}
fault@2.0.1: fault@2.0.1:
resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==} resolution: {integrity: sha512-WtySTkS4OKev5JtpHXnib4Gxiurzh5NCGvWrFaZ34m6JehfTUhKZvn9njTfw48t6JumVQOmrKqpmGcdwxnhqBQ==}
@@ -2694,6 +2683,15 @@ packages:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'} engines: {node: '>=0.8.0'}
fdir@6.5.0:
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
engines: {node: '>=12.0.0'}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
picomatch:
optional: true
feed@4.2.2: feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==} resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'} engines: {node: '>=0.4.0'}
@@ -2737,10 +2735,6 @@ packages:
debug: debug:
optional: true optional: true
foreground-child@3.3.1:
resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
form-data-encoder@2.1.4: form-data-encoder@2.1.4:
resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==} resolution: {integrity: sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==}
engines: {node: '>= 14.17'} engines: {node: '>= 14.17'}
@@ -2815,10 +2809,6 @@ packages:
glob-to-regexp@0.4.1: glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==} resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
global-dirs@3.0.1: global-dirs@3.0.1:
resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
engines: {node: '>=10'} engines: {node: '>=10'}
@@ -3202,9 +3192,6 @@ packages:
resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
jest-util@29.7.0: jest-util@29.7.0:
resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -3333,9 +3320,6 @@ packages:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==} resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
lru-cache@5.1.1: lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -3628,17 +3612,9 @@ packages:
minimatch@3.1.2: minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
minimatch@9.0.5:
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8: minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
mrmime@2.0.1: mrmime@2.0.1:
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'} engines: {node: '>=10'}
@@ -3793,9 +3769,6 @@ packages:
resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==} resolution: {integrity: sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==}
engines: {node: '>=8'} engines: {node: '>=8'}
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
package-json@8.1.1: package-json@8.1.1:
resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==} resolution: {integrity: sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==}
engines: {node: '>=14.16'} engines: {node: '>=14.16'}
@@ -3847,10 +3820,6 @@ packages:
path-parse@1.0.7: path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
path-scurry@1.11.1:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
path-to-regexp@0.1.12: path-to-regexp@0.1.12:
resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
@@ -3871,6 +3840,10 @@ packages:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'} engines: {node: '>=8.6'}
picomatch@4.0.3:
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
engines: {node: '>=12'}
pify@2.3.0: pify@2.3.0:
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
@@ -4038,16 +4011,22 @@ packages:
peerDependencies: peerDependencies:
postcss: ^8.4 postcss: ^8.4
postcss-load-config@4.0.2: postcss-load-config@6.0.1:
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
engines: {node: '>= 14'} engines: {node: '>= 18'}
peerDependencies: peerDependencies:
jiti: '>=1.21.0'
postcss: '>=8.0.9' postcss: '>=8.0.9'
ts-node: '>=9.0.0' tsx: ^4.8.1
yaml: ^2.4.2
peerDependenciesMeta: peerDependenciesMeta:
jiti:
optional: true
postcss: postcss:
optional: true optional: true
ts-node: tsx:
optional: true
yaml:
optional: true optional: true
postcss-loader@7.3.4: postcss-loader@7.3.4:
@@ -4269,8 +4248,8 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'} engines: {node: '>=4'}
postcss-selector-parser@7.1.0: postcss-selector-parser@7.1.1:
resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==} resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
engines: {node: '>=4'} engines: {node: '>=4'}
postcss-sort-media-queries@5.2.0: postcss-sort-media-queries@5.2.0:
@@ -4541,8 +4520,8 @@ packages:
resolve-pathname@3.0.0: resolve-pathname@3.0.0:
resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==}
resolve@1.22.10: resolve@1.22.11:
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
hasBin: true hasBin: true
@@ -4689,10 +4668,6 @@ packages:
signal-exit@3.0.7: signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
signal-exit@4.1.0:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
sirv@2.0.4: sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'} engines: {node: '>= 10'}
@@ -4827,8 +4802,8 @@ packages:
peerDependencies: peerDependencies:
postcss: ^8.4.31 postcss: ^8.4.31
sucrase@3.35.0: sucrase@3.35.1:
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
engines: {node: '>=16 || 14 >=14.17'} engines: {node: '>=16 || 14 >=14.17'}
hasBin: true hasBin: true
@@ -4857,8 +4832,8 @@ packages:
peerDependencies: peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
tailwindcss@3.4.17: tailwindcss@3.4.19:
resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==} resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
engines: {node: '>=14.0.0'} engines: {node: '>=14.0.0'}
hasBin: true hasBin: true
@@ -4913,6 +4888,10 @@ packages:
tiny-warning@1.0.3: tiny-warning@1.0.3:
resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
engines: {node: '>=12.0.0'}
tinypool@1.1.1: tinypool@1.1.1:
resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==} resolution: {integrity: sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==}
engines: {node: ^18.0.0 || >=20.0.0} engines: {node: ^18.0.0 || >=20.0.0}
@@ -5169,6 +5148,7 @@ packages:
whatwg-encoding@3.1.1: whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'} engines: {node: '>=18'}
deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-mimetype@4.0.0: whatwg-mimetype@4.0.0:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
@@ -5465,7 +5445,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.27.1 '@babel/helper-plugin-utils': 7.27.1
debug: 4.4.3 debug: 4.4.3
lodash.debounce: 4.0.8 lodash.debounce: 4.0.8
resolve: 1.22.10 resolve: 1.22.11
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
@@ -6118,7 +6098,7 @@ snapshots:
dependencies: dependencies:
core-js-pure: 3.45.1 core-js-pure: 3.45.1
'@babel/runtime@7.28.4': {} '@babel/runtime@7.28.6': {}
'@babel/template@7.27.2': '@babel/template@7.27.2':
dependencies: dependencies:
@@ -6187,9 +6167,9 @@ snapshots:
'@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.6)': '@csstools/postcss-cascade-layers@5.0.2(postcss@8.5.6)':
dependencies: dependencies:
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
'@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.6)': '@csstools/postcss-color-function-display-p3-linear@1.0.1(postcss@8.5.6)':
dependencies: dependencies:
@@ -6295,9 +6275,9 @@ snapshots:
'@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.6)': '@csstools/postcss-is-pseudo-class@5.0.3(postcss@8.5.6)':
dependencies: dependencies:
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
'@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.6)': '@csstools/postcss-light-dark-function@2.0.11(postcss@8.5.6)':
dependencies: dependencies:
@@ -6389,7 +6369,7 @@ snapshots:
'@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.6)': '@csstools/postcss-scope-pseudo-class@4.0.1(postcss@8.5.6)':
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
'@csstools/postcss-sign-functions@1.1.4(postcss@8.5.6)': '@csstools/postcss-sign-functions@1.1.4(postcss@8.5.6)':
dependencies: dependencies:
@@ -6422,13 +6402,13 @@ snapshots:
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
'@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.0)': '@csstools/selector-resolve-nested@3.1.0(postcss-selector-parser@7.1.1)':
dependencies: dependencies:
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
'@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.0)': '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.1)':
dependencies: dependencies:
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
'@csstools/utilities@2.0.0(postcss@8.5.6)': '@csstools/utilities@2.0.0(postcss@8.5.6)':
dependencies: dependencies:
@@ -6464,7 +6444,7 @@ snapshots:
'@babel/preset-env': 7.28.3(@babel/core@7.28.4) '@babel/preset-env': 7.28.3(@babel/core@7.28.4)
'@babel/preset-react': 7.27.1(@babel/core@7.28.4) '@babel/preset-react': 7.27.1(@babel/core@7.28.4)
'@babel/preset-typescript': 7.27.1(@babel/core@7.28.4) '@babel/preset-typescript': 7.27.1(@babel/core@7.28.4)
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
'@babel/runtime-corejs3': 7.28.4 '@babel/runtime-corejs3': 7.28.4
'@babel/traverse': 7.28.4 '@babel/traverse': 7.28.4
'@docusaurus/logger': 3.9.1 '@docusaurus/logger': 3.9.1
@@ -7272,15 +7252,6 @@ snapshots:
dependencies: dependencies:
'@hapi/hoek': 9.3.0 '@hapi/hoek': 9.3.0
'@isaacs/cliui@8.0.2':
dependencies:
string-width: 5.1.2
string-width-cjs: string-width@4.2.3
strip-ansi: 7.1.2
strip-ansi-cjs: strip-ansi@6.0.1
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
'@jest/schemas@29.6.3': '@jest/schemas@29.6.3':
dependencies: dependencies:
'@sinclair/typebox': 0.27.8 '@sinclair/typebox': 0.27.8
@@ -7469,13 +7440,10 @@ snapshots:
'@nodelib/fs.walk@1.2.8': '@nodelib/fs.walk@1.2.8':
dependencies: dependencies:
'@nodelib/fs.scandir': 2.1.5 '@nodelib/fs.scandir': 2.1.5
fastq: 1.19.1 fastq: 1.20.1
'@opentelemetry/api@1.9.0': {} '@opentelemetry/api@1.9.0': {}
'@pkgjs/parseargs@0.11.0':
optional: true
'@pnpm/config.env-replace@1.1.0': {} '@pnpm/config.env-replace@1.1.0': {}
'@pnpm/network.ca-file@1.0.2': '@pnpm/network.ca-file@1.0.2':
@@ -7506,7 +7474,7 @@ snapshots:
'@slorber/react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': '@slorber/react-helmet-async@1.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
invariant: 2.2.4 invariant: 2.2.4
prop-types: 15.8.1 prop-types: 15.8.1
react: 18.3.1 react: 18.3.1
@@ -7759,7 +7727,7 @@ snapshots:
'@types/sax@1.2.7': '@types/sax@1.2.7':
dependencies: dependencies:
'@types/node': 17.0.45 '@types/node': 24.5.2
'@types/send@0.17.5': '@types/send@0.17.5':
dependencies: dependencies:
@@ -8108,10 +8076,6 @@ snapshots:
balanced-match: 1.0.2 balanced-match: 1.0.2
concat-map: 0.0.1 concat-map: 0.0.1
brace-expansion@2.0.2:
dependencies:
balanced-match: 1.0.2
braces@3.0.3: braces@3.0.3:
dependencies: dependencies:
fill-range: 7.1.1 fill-range: 7.1.1
@@ -8398,7 +8362,7 @@ snapshots:
css-blank-pseudo@7.0.1(postcss@8.5.6): css-blank-pseudo@7.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
css-declaration-sorter@7.3.0(postcss@8.5.6): css-declaration-sorter@7.3.0(postcss@8.5.6):
dependencies: dependencies:
@@ -8406,9 +8370,9 @@ snapshots:
css-has-pseudo@7.0.3(postcss@8.5.6): css-has-pseudo@7.0.3(postcss@8.5.6):
dependencies: dependencies:
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0 postcss-value-parser: 4.2.0
css-loader@6.11.0(webpack@5.101.3): css-loader@6.11.0(webpack@5.101.3):
@@ -8881,7 +8845,7 @@ snapshots:
fast-uri@3.1.0: {} fast-uri@3.1.0: {}
fastq@1.19.1: fastq@1.20.1:
dependencies: dependencies:
reusify: 1.1.0 reusify: 1.1.0
@@ -8893,6 +8857,10 @@ snapshots:
dependencies: dependencies:
websocket-driver: 0.7.4 websocket-driver: 0.7.4
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
feed@4.2.2: feed@4.2.2:
dependencies: dependencies:
xml-js: 1.6.11 xml-js: 1.6.11
@@ -8939,11 +8907,6 @@ snapshots:
optionalDependencies: optionalDependencies:
debug: 4.4.3 debug: 4.4.3
foreground-child@3.3.1:
dependencies:
cross-spawn: 7.0.6
signal-exit: 4.1.0
form-data-encoder@2.1.4: {} form-data-encoder@2.1.4: {}
format@0.2.2: {} format@0.2.2: {}
@@ -9011,15 +8974,6 @@ snapshots:
glob-to-regexp@0.4.1: {} glob-to-regexp@0.4.1: {}
glob@10.4.5:
dependencies:
foreground-child: 3.3.1
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
global-dirs@3.0.1: global-dirs@3.0.1:
dependencies: dependencies:
ini: 2.0.0 ini: 2.0.0
@@ -9186,7 +9140,7 @@ snapshots:
history@4.10.1: history@4.10.1:
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
loose-envify: 1.4.0 loose-envify: 1.4.0
resolve-pathname: 3.0.0 resolve-pathname: 3.0.0
tiny-invariant: 1.3.3 tiny-invariant: 1.3.3
@@ -9452,12 +9406,6 @@ snapshots:
isobject@3.0.1: {} isobject@3.0.1: {}
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
jest-util@29.7.0: jest-util@29.7.0:
dependencies: dependencies:
'@jest/types': 29.6.3 '@jest/types': 29.6.3
@@ -9580,8 +9528,6 @@ snapshots:
lowercase-keys@3.0.0: {} lowercase-keys@3.0.0: {}
lru-cache@10.4.3: {}
lru-cache@5.1.1: lru-cache@5.1.1:
dependencies: dependencies:
yallist: 3.1.1 yallist: 3.1.1
@@ -10153,14 +10099,8 @@ snapshots:
dependencies: dependencies:
brace-expansion: 1.1.12 brace-expansion: 1.1.12
minimatch@9.0.5:
dependencies:
brace-expansion: 2.0.2
minimist@1.2.8: {} minimist@1.2.8: {}
minipass@7.1.2: {}
mrmime@2.0.1: {} mrmime@2.0.1: {}
ms@2.0.0: {} ms@2.0.0: {}
@@ -10299,8 +10239,6 @@ snapshots:
dependencies: dependencies:
p-finally: 1.0.0 p-finally: 1.0.0
package-json-from-dist@1.0.1: {}
package-json@8.1.1: package-json@8.1.1:
dependencies: dependencies:
got: 12.6.1 got: 12.6.1
@@ -10364,11 +10302,6 @@ snapshots:
path-parse@1.0.7: {} path-parse@1.0.7: {}
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
minipass: 7.1.2
path-to-regexp@0.1.12: {} path-to-regexp@0.1.12: {}
path-to-regexp@1.9.0: path-to-regexp@1.9.0:
@@ -10383,6 +10316,8 @@ snapshots:
picomatch@2.3.1: {} picomatch@2.3.1: {}
picomatch@4.0.3: {}
pify@2.3.0: {} pify@2.3.0: {}
pirates@4.0.7: {} pirates@4.0.7: {}
@@ -10394,7 +10329,7 @@ snapshots:
postcss-attribute-case-insensitive@7.0.1(postcss@8.5.6): postcss-attribute-case-insensitive@7.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-calc@9.0.1(postcss@8.5.6): postcss-calc@9.0.1(postcss@8.5.6):
dependencies: dependencies:
@@ -10465,12 +10400,12 @@ snapshots:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4) '@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4 '@csstools/css-tokenizer': 3.0.4
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-dir-pseudo-class@9.0.1(postcss@8.5.6): postcss-dir-pseudo-class@9.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-discard-comments@6.0.2(postcss@8.5.6): postcss-discard-comments@6.0.2(postcss@8.5.6):
dependencies: dependencies:
@@ -10503,12 +10438,12 @@ snapshots:
postcss-focus-visible@10.0.1(postcss@8.5.6): postcss-focus-visible@10.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-focus-within@9.0.1(postcss@8.5.6): postcss-focus-within@9.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-font-variant@5.0.0(postcss@8.5.6): postcss-font-variant@5.0.0(postcss@8.5.6):
dependencies: dependencies:
@@ -10529,7 +10464,7 @@ snapshots:
postcss: 8.5.6 postcss: 8.5.6
postcss-value-parser: 4.2.0 postcss-value-parser: 4.2.0
read-cache: 1.0.0 read-cache: 1.0.0
resolve: 1.22.10 resolve: 1.22.11
postcss-js@4.1.0(postcss@8.5.6): postcss-js@4.1.0(postcss@8.5.6):
dependencies: dependencies:
@@ -10545,12 +10480,13 @@ snapshots:
'@csstools/utilities': 2.0.0(postcss@8.5.6) '@csstools/utilities': 2.0.0(postcss@8.5.6)
postcss: 8.5.6 postcss: 8.5.6
postcss-load-config@4.0.2(postcss@8.5.6): postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.8.1):
dependencies: dependencies:
lilconfig: 3.1.3 lilconfig: 3.1.3
yaml: 2.8.1
optionalDependencies: optionalDependencies:
jiti: 1.21.7
postcss: 8.5.6 postcss: 8.5.6
yaml: 2.8.1
postcss-loader@7.3.4(postcss@8.5.6)(typescript@5.2.2)(webpack@5.101.3): postcss-loader@7.3.4(postcss@8.5.6)(typescript@5.2.2)(webpack@5.101.3):
dependencies: dependencies:
@@ -10619,13 +10555,13 @@ snapshots:
dependencies: dependencies:
icss-utils: 5.1.0(postcss@8.5.6) icss-utils: 5.1.0(postcss@8.5.6)
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0 postcss-value-parser: 4.2.0
postcss-modules-scope@3.2.1(postcss@8.5.6): postcss-modules-scope@3.2.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-modules-values@4.0.0(postcss@8.5.6): postcss-modules-values@4.0.0(postcss@8.5.6):
dependencies: dependencies:
@@ -10639,10 +10575,10 @@ snapshots:
postcss-nesting@13.0.2(postcss@8.5.6): postcss-nesting@13.0.2(postcss@8.5.6):
dependencies: dependencies:
'@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.0) '@csstools/selector-resolve-nested': 3.1.0(postcss-selector-parser@7.1.1)
'@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0) '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-normalize-charset@6.0.2(postcss@8.5.6): postcss-normalize-charset@6.0.2(postcss@8.5.6):
dependencies: dependencies:
@@ -10787,7 +10723,7 @@ snapshots:
postcss-pseudo-class-any-link@10.0.1(postcss@8.5.6): postcss-pseudo-class-any-link@10.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-reduce-idents@6.0.3(postcss@8.5.6): postcss-reduce-idents@6.0.3(postcss@8.5.6):
dependencies: dependencies:
@@ -10812,14 +10748,14 @@ snapshots:
postcss-selector-not@8.0.1(postcss@8.5.6): postcss-selector-not@8.0.1(postcss@8.5.6):
dependencies: dependencies:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 7.1.0 postcss-selector-parser: 7.1.1
postcss-selector-parser@6.1.2: postcss-selector-parser@6.1.2:
dependencies: dependencies:
cssesc: 3.0.0 cssesc: 3.0.0
util-deprecate: 1.0.2 util-deprecate: 1.0.2
postcss-selector-parser@7.1.0: postcss-selector-parser@7.1.1:
dependencies: dependencies:
cssesc: 3.0.0 cssesc: 3.0.0
util-deprecate: 1.0.2 util-deprecate: 1.0.2
@@ -10943,19 +10879,19 @@ snapshots:
react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.101.3): react-loadable-ssr-addon-v5-slorber@1.0.1(@docusaurus/react-loadable@6.0.0(react@18.3.1))(webpack@5.101.3):
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)' react-loadable: '@docusaurus/react-loadable@6.0.0(react@18.3.1)'
webpack: 5.101.3 webpack: 5.101.3
react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1): react-router-config@5.1.1(react-router@5.3.4(react@18.3.1))(react@18.3.1):
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
react: 18.3.1 react: 18.3.1
react-router: 5.3.4(react@18.3.1) react-router: 5.3.4(react@18.3.1)
react-router-dom@5.3.4(react@18.3.1): react-router-dom@5.3.4(react@18.3.1):
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
history: 4.10.1 history: 4.10.1
loose-envify: 1.4.0 loose-envify: 1.4.0
prop-types: 15.8.1 prop-types: 15.8.1
@@ -10966,7 +10902,7 @@ snapshots:
react-router@5.3.4(react@18.3.1): react-router@5.3.4(react@18.3.1):
dependencies: dependencies:
'@babel/runtime': 7.28.4 '@babel/runtime': 7.28.6
history: 4.10.1 history: 4.10.1
hoist-non-react-statics: 3.3.2 hoist-non-react-statics: 3.3.2
loose-envify: 1.4.0 loose-envify: 1.4.0
@@ -11168,7 +11104,7 @@ snapshots:
resolve-pathname@3.0.0: {} resolve-pathname@3.0.0: {}
resolve@1.22.10: resolve@1.22.11:
dependencies: dependencies:
is-core-module: 2.16.1 is-core-module: 2.16.1
path-parse: 1.0.7 path-parse: 1.0.7
@@ -11354,8 +11290,6 @@ snapshots:
signal-exit@3.0.7: {} signal-exit@3.0.7: {}
signal-exit@4.1.0: {}
sirv@2.0.4: sirv@2.0.4:
dependencies: dependencies:
'@polka/url': 1.0.0-next.29 '@polka/url': 1.0.0-next.29
@@ -11497,14 +11431,14 @@ snapshots:
postcss: 8.5.6 postcss: 8.5.6
postcss-selector-parser: 6.1.2 postcss-selector-parser: 6.1.2
sucrase@3.35.0: sucrase@3.35.1:
dependencies: dependencies:
'@jridgewell/gen-mapping': 0.3.13 '@jridgewell/gen-mapping': 0.3.13
commander: 4.1.1 commander: 4.1.1
glob: 10.4.5
lines-and-columns: 1.2.4 lines-and-columns: 1.2.4
mz: 2.7.0 mz: 2.7.0
pirates: 4.0.7 pirates: 4.0.7
tinyglobby: 0.2.15
ts-interface-checker: 0.1.13 ts-interface-checker: 0.1.13
supports-color@7.2.0: supports-color@7.2.0:
@@ -11535,7 +11469,7 @@ snapshots:
react: 18.3.1 react: 18.3.1
use-sync-external-store: 1.5.0(react@18.3.1) use-sync-external-store: 1.5.0(react@18.3.1)
tailwindcss@3.4.17: tailwindcss@3.4.19(yaml@2.8.1):
dependencies: dependencies:
'@alloc/quick-lru': 5.2.0 '@alloc/quick-lru': 5.2.0
arg: 5.0.2 arg: 5.0.2
@@ -11554,13 +11488,14 @@ snapshots:
postcss: 8.5.6 postcss: 8.5.6
postcss-import: 15.1.0(postcss@8.5.6) postcss-import: 15.1.0(postcss@8.5.6)
postcss-js: 4.1.0(postcss@8.5.6) postcss-js: 4.1.0(postcss@8.5.6)
postcss-load-config: 4.0.2(postcss@8.5.6) postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)(yaml@2.8.1)
postcss-nested: 6.2.0(postcss@8.5.6) postcss-nested: 6.2.0(postcss@8.5.6)
postcss-selector-parser: 6.1.2 postcss-selector-parser: 6.1.2
resolve: 1.22.10 resolve: 1.22.11
sucrase: 3.35.0 sucrase: 3.35.1
transitivePeerDependencies: transitivePeerDependencies:
- ts-node - tsx
- yaml
tapable@2.2.3: {} tapable@2.2.3: {}
@@ -11600,6 +11535,11 @@ snapshots:
tiny-warning@1.0.3: {} tiny-warning@1.0.3: {}
tinyglobby@0.2.15:
dependencies:
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
tinypool@1.1.1: {} tinypool@1.1.1: {}
to-regex-range@5.0.1: to-regex-range@5.0.1:
@@ -11965,7 +11905,8 @@ snapshots:
yallist@3.1.1: {} yallist@3.1.1: {}
yaml@2.8.1: {} yaml@2.8.1:
optional: true
yocto-queue@1.2.1: {} yocto-queue@1.2.1: {}

View File

@@ -1,220 +0,0 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import ExternalAPI from '@server/api/externalapi';
import { getAppVersion } from '@server/utils/appVersion';
import logger from '@server/logger';
export interface ChannelsDVRShow {
id: string;
name: string;
summary: string;
image_url: string;
release_year: number;
release_date: string;
genres: string[];
categories: string[];
labels: string[];
cast: string[];
episode_count: number;
number_unwatched: number;
favorited: boolean;
last_watched_at?: number;
last_recorded_at?: number;
created_at: number;
updated_at: number;
}
export interface ChannelsDVRMovie {
id: string;
program_id: string;
path: string;
channel: string;
title: string;
summary: string;
full_summary: string;
content_rating: string;
image_url: string;
thumbnail_url: string;
duration: number;
playback_time: number;
release_year: number;
release_date: string;
genres: string[];
tags: string[];
labels: string[];
categories: string[];
cast: string[];
directors: string[];
watched: boolean;
favorited: boolean;
delayed: boolean;
cancelled: boolean;
corrupted: boolean;
completed: boolean;
processed: boolean;
verified: boolean;
last_watched_at?: number;
created_at: number;
updated_at: number;
}
export interface ChannelsDVREpisode {
id: string;
show_id: string;
program_id: string;
path: string;
channel: string;
season_number: number;
episode_number: number;
title: string;
episode_title: string;
summary: string;
full_summary: string;
content_rating: string;
image_url: string;
thumbnail_url: string;
duration: number;
playback_time: number;
original_air_date: string;
genres: string[];
tags: string[];
categories: string[];
cast: string[];
commercials: number[];
watched: boolean;
favorited: boolean;
delayed: boolean;
cancelled: boolean;
corrupted: boolean;
completed: boolean;
processed: boolean;
locked: boolean;
verified: boolean;
created_at: number;
updated_at: number;
}
class ChannelsDVRAPI extends ExternalAPI {
constructor(baseUrl: string) {
super(
baseUrl,
{},
{
headers: {
'User-Agent': `Seerr/${getAppVersion()}`,
},
}
);
}
/**
* Get all TV shows from Channels DVR library
*/
public async getShows(): Promise<ChannelsDVRShow[]> {
try {
const data = await this.get<ChannelsDVRShow[]>('/api/v1/shows');
return data;
} catch (e) {
logger.error('Failed to fetch shows from Channels DVR', {
label: 'Channels DVR API',
errorMessage: e.message,
});
throw new Error('Failed to fetch shows from Channels DVR');
}
}
/**
* Get a specific show by ID
*/
public async getShow(showId: string): Promise<ChannelsDVRShow> {
try {
const data = await this.get<ChannelsDVRShow>(`/api/v1/shows/${showId}`);
return data;
} catch (e) {
logger.error(
`Failed to fetch show ${showId} from Channels DVR`,
{
label: 'Channels DVR API',
errorMessage: e.message,
}
);
throw new Error(`Failed to fetch show ${showId} from Channels DVR`);
}
}
/**
* Get all episodes for a specific show
*/
public async getShowEpisodes(showId: string): Promise<ChannelsDVREpisode[]> {
try {
const data = await this.get<ChannelsDVREpisode[]>(
`/api/v1/shows/${showId}/episodes`
);
return data;
} catch (e) {
logger.error(
`Failed to fetch episodes for show ${showId} from Channels DVR`,
{
label: 'Channels DVR API',
errorMessage: e.message,
}
);
throw new Error(
`Failed to fetch episodes for show ${showId} from Channels DVR`
);
}
}
/**
* Get all movies from Channels DVR library
*/
public async getMovies(): Promise<ChannelsDVRMovie[]> {
try {
const data = await this.get<ChannelsDVRMovie[]>('/api/v1/movies');
return data;
} catch (e) {
logger.error('Failed to fetch movies from Channels DVR', {
label: 'Channels DVR API',
errorMessage: e.message,
});
throw new Error('Failed to fetch movies from Channels DVR');
}
}
/**
* Get a specific movie by ID
*/
public async getMovie(movieId: string): Promise<ChannelsDVRMovie> {
try {
const data = await this.get<ChannelsDVRMovie>(`/api/v1/movies/${movieId}`);
return data;
} catch (e) {
logger.error(
`Failed to fetch movie ${movieId} from Channels DVR`,
{
label: 'Channels DVR API',
errorMessage: e.message,
}
);
throw new Error(`Failed to fetch movie ${movieId} from Channels DVR`);
}
}
/**
* Test connectivity to Channels DVR server
*/
public async testConnection(): Promise<boolean> {
try {
// Try to fetch shows list as a connectivity test
await this.getShows();
return true;
} catch (e) {
logger.error('Channels DVR connection test failed', {
label: 'Channels DVR API',
errorMessage: e.message,
});
return false;
}
}
}
export default ChannelsDVRAPI;

View File

@@ -2,7 +2,6 @@ export enum MediaServerType {
PLEX = 1, PLEX = 1,
JELLYFIN, JELLYFIN,
EMBY, EMBY,
CHANNELS_DVR,
NOT_CONFIGURED, NOT_CONFIGURED,
} }

View File

@@ -206,19 +206,6 @@ class Media {
Object.assign(this, init); Object.assign(this, init);
} }
public resetServiceData(): void {
this.serviceId = null;
this.serviceId4k = null;
this.externalServiceId = null;
this.externalServiceId4k = null;
this.externalServiceSlug = null;
this.externalServiceSlug4k = null;
this.ratingKey = null;
this.ratingKey4k = null;
this.jellyfinMediaId = null;
this.jellyfinMediaId4k = null;
}
@AfterLoad() @AfterLoad()
public setPlexUrls(): void { public setPlexUrls(): void {
const { machineId, webAppUrl } = getSettings().plex; const { machineId, webAppUrl } = getSettings().plex;

View File

@@ -1,305 +0,0 @@
import ChannelsDVRAPI, {
type ChannelsDVRMovie,
type ChannelsDVRShow,
} from '@server/api/channelsdvr';
import TheMovieDb from '@server/api/themoviedb';
import { MediaServerType } from '@server/constants/server';
import BaseScanner from '@server/lib/scanners/baseScanner';
import type {
ProcessableSeason,
RunnableScanner,
StatusBase,
} from '@server/lib/scanners/baseScanner';
import type { Library } from '@server/lib/settings';
import { getSettings } from '@server/lib/settings';
import logger from '@server/logger';
interface ChannelsDVRSyncStatus extends StatusBase {
currentLibrary?: Library;
libraries: Library[];
}
class ChannelsDVRScanner
extends BaseScanner<ChannelsDVRMovie | ChannelsDVRShow>
implements RunnableScanner<ChannelsDVRSyncStatus>
{
private channelsClient: ChannelsDVRAPI;
private libraries: Library[];
private currentLibrary?: Library;
private isRecentOnly = false;
constructor({ isRecentOnly }: { isRecentOnly?: boolean } = {}) {
super('Channels DVR Sync');
this.isRecentOnly = isRecentOnly ?? false;
}
/**
* Find TMDb ID for a movie by searching title and year
*/
private async findMovieTmdbId(
title: string,
releaseYear: number
): Promise<number | null> {
try {
// Clean up title (remove year suffix if present)
const cleanTitle = title.replace(/\s*\(\d{4}\)\s*$/, '').trim();
this.log(
`Searching TMDb for movie: "${cleanTitle}" (${releaseYear})`,
'debug'
);
const searchResults = await this.tmdb.searchMovies({
query: cleanTitle,
page: 1,
year: releaseYear,
});
if (searchResults.results.length === 0) {
this.log(
`No TMDb results found for movie: "${cleanTitle}" (${releaseYear})`,
'warn'
);
return null;
}
// Use the first result
const tmdbId = searchResults.results[0].id;
this.log(
`Found TMDb ID ${tmdbId} for movie: "${cleanTitle}" (${releaseYear})`,
'debug'
);
return tmdbId;
} catch (e) {
this.log(
`Error searching TMDb for movie: "${title}" (${releaseYear})`,
'error',
{ errorMessage: e.message }
);
return null;
}
}
/**
* Find TMDb ID for a TV show by searching name and year
*/
private async findShowTmdbId(
name: string,
releaseYear: number
): Promise<number | null> {
try {
this.log(`Searching TMDb for show: "${name}" (${releaseYear})`, 'debug');
const searchResults = await this.tmdb.searchTvShows({
query: name,
page: 1,
firstAirDateYear: releaseYear,
});
if (searchResults.results.length === 0) {
this.log(
`No TMDb results found for show: "${name}" (${releaseYear})`,
'warn'
);
return null;
}
// Use the first result
const tmdbId = searchResults.results[0].id;
this.log(
`Found TMDb ID ${tmdbId} for show: "${name}" (${releaseYear})`,
'debug'
);
return tmdbId;
} catch (e) {
this.log(
`Error searching TMDb for show: "${name}" (${releaseYear})`,
'error',
{ errorMessage: e.message }
);
return null;
}
}
/**
* Process a Channels DVR movie
*/
private async processChannelsDVRMovie(movie: ChannelsDVRMovie) {
try {
// Find TMDb ID by searching title and year
const tmdbId = await this.findMovieTmdbId(
movie.title,
movie.release_year
);
if (!tmdbId) {
this.log(
`Skipping movie "${movie.title}" - could not find TMDb ID`,
'warn'
);
return;
}
// Channels DVR doesn't provide resolution info in the API
// We'll default to non-4K for now
const mediaAddedAt = new Date(movie.created_at);
await this.processMovie(tmdbId, {
is4k: false,
mediaAddedAt,
ratingKey: movie.id,
title: movie.title,
serviceId: this.channelsClient.baseUrl,
externalServiceId: this.channelsClient.baseUrl,
externalServiceSlug: 'channelsdvr',
tmdbId: tmdbId,
processing: !movie.completed,
});
this.log(`Processed movie: ${movie.title} (TMDb ID: ${tmdbId})`, 'info');
} catch (e) {
this.log(
`Error processing Channels DVR movie: ${movie.title}`,
'error',
{
errorMessage: e.message,
movieId: movie.id,
}
);
}
}
/**
* Process a Channels DVR TV show
*/
private async processChannelsDVRShow(show: ChannelsDVRShow) {
try {
// Find TMDb ID by searching name and year
const tmdbId = await this.findShowTmdbId(show.name, show.release_year);
if (!tmdbId) {
this.log(
`Skipping show "${show.name}" - could not find TMDb ID`,
'warn'
);
return;
}
const mediaAddedAt = new Date(show.created_at);
// Fetch all episodes for the show from Channels DVR
const episodes = await this.channelsClient.getShowEpisodes(show.id);
// Group episodes by season
const seasonMap = new Map<number, ProcessableSeason>();
for (const episode of episodes) {
const seasonNumber = episode.season_number;
const episodeNumber = episode.episode_number;
if (!seasonMap.has(seasonNumber)) {
seasonMap.set(seasonNumber, {
seasonNumber,
episodes: [],
});
}
const season = seasonMap.get(seasonNumber)!;
season.episodes.push({
episodeNumber,
ratingKey: episode.id,
mediaAddedAt: new Date(episode.created_at),
processing: !episode.completed,
});
}
const seasons = Array.from(seasonMap.values());
await this.processTvShow(tmdbId, {
seasons,
ratingKey: show.id,
title: show.name,
serviceId: this.channelsClient.baseUrl,
externalServiceId: this.channelsClient.baseUrl,
externalServiceSlug: 'channelsdvr',
});
this.log(
`Processed show: ${show.name} (TMDb ID: ${tmdbId}, ${episodes.length} episodes)`,
'info'
);
} catch (e) {
this.log(
`Error processing Channels DVR show: ${show.name}`,
'error',
{
errorMessage: e.message,
showId: show.id,
}
);
}
}
public async run(): Promise<void> {
const settings = getSettings();
const sessionManager = settings.main.sessionManager;
if (!settings.channelsdvr.url) {
this.log('Channels DVR URL not configured, skipping scan', 'warn');
return;
}
try {
this.channelsClient = new ChannelsDVRAPI(settings.channelsdvr.url);
// Test connection
const connected = await this.channelsClient.testConnection();
if (!connected) {
throw new Error('Failed to connect to Channels DVR server');
}
this.log('Successfully connected to Channels DVR', 'info');
// Fetch and process all movies
this.log('Fetching movies from Channels DVR...', 'info');
const movies = await this.channelsClient.getMovies();
this.log(`Found ${movies.length} movies`, 'info');
for (const movie of movies) {
await this.processChannelsDVRMovie(movie);
}
// Fetch and process all TV shows
this.log('Fetching TV shows from Channels DVR...', 'info');
const shows = await this.channelsClient.getShows();
this.log(`Found ${shows.length} TV shows`, 'info');
for (const show of shows) {
await this.processChannelsDVRShow(show);
}
this.log('Channels DVR sync completed', 'info');
} catch (e) {
this.log('Channels DVR sync failed', 'error', {
errorMessage: e.message,
});
throw e;
}
}
public async cancel(): Promise<void> {
this.cancelled = true;
}
public status(): ChannelsDVRSyncStatus {
return {
running: this.running,
progress: 0,
total: 0,
currentLibrary: this.currentLibrary,
libraries: this.libraries ?? [],
};
}
}
export default ChannelsDVRScanner;

View File

@@ -49,13 +49,6 @@ export interface JellyfinSettings {
serverId: string; serverId: string;
apiKey: string; apiKey: string;
} }
export interface ChannelsDVRSettings {
name: string;
url: string;
libraries: Library[];
}
export interface TautulliSettings { export interface TautulliSettings {
hostname?: string; hostname?: string;
port?: number; port?: number;
@@ -362,7 +355,6 @@ export interface AllSettings {
main: MainSettings; main: MainSettings;
plex: PlexSettings; plex: PlexSettings;
jellyfin: JellyfinSettings; jellyfin: JellyfinSettings;
channelsdvr: ChannelsDVRSettings;
tautulli: TautulliSettings; tautulli: TautulliSettings;
radarr: RadarrSettings[]; radarr: RadarrSettings[];
sonarr: SonarrSettings[]; sonarr: SonarrSettings[];
@@ -431,11 +423,6 @@ class Settings {
serverId: '', serverId: '',
apiKey: '', apiKey: '',
}, },
channelsdvr: {
name: 'Channels DVR',
url: '',
libraries: [],
},
tautulli: {}, tautulli: {},
metadataSettings: { metadataSettings: {
tv: MetadataProviderType.TMDB, tv: MetadataProviderType.TMDB,

View File

@@ -45,7 +45,7 @@ class WatchlistSync {
[ [
Permission.AUTO_REQUEST, Permission.AUTO_REQUEST,
Permission.AUTO_REQUEST_MOVIE, Permission.AUTO_REQUEST_MOVIE,
Permission.AUTO_REQUEST_TV, Permission.AUTO_APPROVE_TV,
], ],
{ type: 'or' } { type: 'or' }
) )
@@ -70,33 +70,13 @@ class WatchlistSync {
response.items.map((i) => i.tmdbId) response.items.map((i) => i.tmdbId)
); );
const watchlistTmdbIds = response.items.map((i) => i.tmdbId);
const requestRepository = getRepository(MediaRequest);
const existingAutoRequests = await requestRepository
.createQueryBuilder('request')
.leftJoinAndSelect('request.media', 'media')
.where('request.requestedBy = :userId', { userId: user.id })
.andWhere('request.isAutoRequest = true')
.andWhere('media.tmdbId IN (:...tmdbIds)', { tmdbIds: watchlistTmdbIds })
.getMany();
const autoRequestedTmdbIds = new Set(
existingAutoRequests
.filter((r) => r.media != null)
.map((r) => `${r.media.mediaType}:${r.media.tmdbId}`)
);
const unavailableItems = response.items.filter( const unavailableItems = response.items.filter(
// If we can find watchlist items in our database that are also available, we should exclude them
(i) => (i) =>
!autoRequestedTmdbIds.has(
`${i.type === 'show' ? MediaType.TV : MediaType.MOVIE}:${i.tmdbId}`
) &&
!mediaItems.find( !mediaItems.find(
(m) => (m) =>
m.tmdbId === i.tmdbId && m.tmdbId === i.tmdbId &&
(m.status === MediaStatus.BLOCKLISTED || ((m.status !== MediaStatus.UNKNOWN && m.mediaType === 'movie') ||
(m.status !== MediaStatus.UNKNOWN && m.mediaType === 'movie') ||
(m.mediaType === 'tv' && m.status === MediaStatus.AVAILABLE)) (m.mediaType === 'tv' && m.status === MediaStatus.AVAILABLE))
) )
); );

View File

@@ -174,12 +174,7 @@ mediaRoutes.delete(
where: { id: Number(req.params.id) }, where: { id: Number(req.params.id) },
}); });
if (media.status === MediaStatus.BLOCKLISTED) { await mediaRepository.remove(media);
media.resetServiceData();
await mediaRepository.save(media);
} else {
await mediaRepository.remove(media);
}
return res.status(204).send(); return res.status(204).send();
} catch (e) { } catch (e) {