diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml
index a9eed0c..b698485 100644
--- a/.gitea/workflows/build.yml
+++ b/.gitea/workflows/build.yml
@@ -8,12 +8,6 @@ on:
tags:
- 'v*'
-env:
- TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
- CARGO_INCREMENTAL: 1
- CARGO_NET_RETRY: 10
- RUSTUP_MAX_RETRIES: 10
-
jobs:
increment-version:
runs-on: ubuntu-latest
@@ -32,8 +26,8 @@ jobs:
- name: Bump patch version
id: bump
run: |
- # Get current version
- CURRENT=$(grep -Po '"version":\s*"\K[^"]+' src-tauri/tauri.conf.json | head -1)
+ # Get current version from package.json
+ CURRENT=$(grep -Po '"version":\s*"\K[^"]+' package.json | head -1)
echo "Current version: $CURRENT"
# Split and increment patch
@@ -44,11 +38,11 @@ jobs:
NEW_VERSION="${MAJOR}.${MINOR}.${NEW_PATCH}"
echo "New version: $NEW_VERSION"
- # Update tauri.conf.json
- sed -i "s/\"version\": \"${CURRENT}\"/\"version\": \"${NEW_VERSION}\"/" src-tauri/tauri.conf.json
+ # Update package.json
+ sed -i "s/\"version\": \"${CURRENT}\"/\"version\": \"${NEW_VERSION}\"/" package.json
# Verify the change
- grep '"version"' src-tauri/tauri.conf.json | head -1
+ grep '"version"' package.json | head -1
echo "VERSION=$NEW_VERSION" >> $GITHUB_OUTPUT
echo "SHOULD_BUILD=true" >> $GITHUB_OUTPUT
@@ -57,7 +51,7 @@ jobs:
run: |
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
- git add src-tauri/tauri.conf.json
+ git add package.json
git commit -m "chore: bump version to ${{ steps.bump.outputs.VERSION }} [skip ci]"
git push
@@ -65,39 +59,24 @@ jobs:
runs-on: windows
needs: increment-version
if: always() && (needs.increment-version.outputs.should_build == 'true' || needs.increment-version.result == 'skipped')
- env:
- CARGO_TARGET_DIR: C:\cargo-cache\cinny-desktop
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
- submodules: false
+ submodules: recursive
ref: ${{ github.ref_name }}
- clean: false
- name: Pull latest (after version bump)
if: github.ref == 'refs/heads/main'
shell: powershell
run: git pull origin main
- - name: Checkout submodules (Windows workaround)
- shell: powershell
- run: |
- git submodule update --init --recursive
-
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- - name: Install Rust
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- profile: minimal
- override: true
-
- name: Install dependencies (root)
run: npm install --prefer-offline
@@ -105,80 +84,27 @@ jobs:
working-directory: ./cinny
run: npm install --prefer-offline
- - name: Build Tauri app
- run: npm run tauri build
+ - name: Build Electron app
+ run: npm run build:win
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- - name: Copy and rename MSI files
- shell: powershell
- run: |
- # Clean and recreate output dir
- $outDir = "src-tauri/target/release/bundle/msi"
- if (Test-Path $outDir) { Remove-Item -Recurse -Force $outDir }
- New-Item -ItemType Directory -Force -Path $outDir | Out-Null
-
- # Find and copy MSI from cache location (get NEWEST file by LastWriteTime)
- $srcDir = "$env:CARGO_TARGET_DIR/release/bundle/msi"
- Write-Host "Looking for MSI in: $srcDir"
- Get-ChildItem $srcDir -ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending
-
- $msi = Get-ChildItem "$srcDir/*.msi" -ErrorAction Stop | Sort-Object LastWriteTime -Descending | Select-Object -First 1
- Write-Host "Found MSI: $($msi.FullName) (Size: $($msi.Length) bytes, Modified: $($msi.LastWriteTime))"
- Copy-Item $msi.FullName "$outDir/Cinny-Windows-x64.msi" -Force
-
- $msiZip = Get-ChildItem "$srcDir/*.msi.zip" -ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending | Select-Object -First 1
- if ($msiZip) {
- Write-Host "Found MSI.zip: $($msiZip.FullName)"
- Copy-Item $msiZip.FullName "$outDir/Cinny-Windows-x64.msi.zip" -Force
- }
-
- $msiZipSig = Get-ChildItem "$srcDir/*.msi.zip.sig" -ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending | Select-Object -First 1
- if ($msiZipSig) {
- Write-Host "Found MSI.zip.sig: $($msiZipSig.FullName)"
- Copy-Item $msiZipSig.FullName "$outDir/Cinny-Windows-x64.msi.zip.sig" -Force
- }
-
- $msiSig = Get-ChildItem "$srcDir/*.msi.sig" -ErrorAction SilentlyContinue | Sort-Object LastWriteTime -Descending | Select-Object -First 1
- if ($msiSig) {
- Write-Host "Found MSI.sig: $($msiSig.FullName)"
- Copy-Item $msiSig.FullName "$outDir/Cinny-Windows-x64.msi.sig" -Force
- }
-
- Write-Host "Final output:"
- Get-ChildItem $outDir
-
- - name: Upload MSI installer
+ - name: Upload NSIS installer
uses: actions/upload-artifact@v3
with:
- name: Cinny-Windows-x64.msi
- path: src-tauri/target/release/bundle/msi/Cinny-Windows-x64.msi
+ name: Paarrot-Windows-x64.exe
+ path: dist-electron/Paarrot-*-win-x64.exe
- - name: Upload MSI updater zip
+ - name: Upload Portable
uses: actions/upload-artifact@v3
- if: always()
with:
- name: Cinny-Windows-x64.msi.zip
- path: src-tauri/target/release/bundle/msi/Cinny-Windows-x64.msi.zip
-
- - name: Upload MSI updater signature (zip)
- uses: actions/upload-artifact@v3
- if: always()
- with:
- name: Cinny-Windows-x64.msi.zip.sig
- path: src-tauri/target/release/bundle/msi/Cinny-Windows-x64.msi.zip.sig
-
- - name: Upload MSI signature
- uses: actions/upload-artifact@v3
- if: always()
- with:
- name: Cinny-Windows-x64.msi.sig
- path: src-tauri/target/release/bundle/msi/Cinny-Windows-x64.msi.sig
+ name: Paarrot-Windows-x64-portable.exe
+ path: dist-electron/Paarrot-*-win-x64.portable.exe
build-linux:
runs-on: ubuntu-latest
needs: increment-version
if: always() && (needs.increment-version.outputs.should_build == 'true' || needs.increment-version.result == 'skipped')
- env:
- CARGO_TARGET_DIR: /home/runner/cargo-cache/cinny-desktop
steps:
- name: Checkout repository
@@ -196,17 +122,10 @@ jobs:
with:
node-version: '20'
- - name: Install Rust
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- profile: minimal
- override: true
-
- name: Install system dependencies
run: |
sudo apt-get update
- sudo apt-get install -y libwebkit2gtk-4.1-dev libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev rpm patchelf xdg-utils
+ sudo apt-get install -y rpm
- name: Install dependencies (root)
run: npm ci --prefer-offline
@@ -215,224 +134,32 @@ jobs:
working-directory: ./cinny
run: npm ci --prefer-offline
- - name: Build Tauri app
- run: npm run tauri build
-
- - name: Copy and rename Linux packages
- run: |
- # Clean and recreate workspace output directories
- rm -rf src-tauri/target/release/bundle/appimage
- rm -rf src-tauri/target/release/bundle/deb
- rm -rf src-tauri/target/release/bundle/rpm
- mkdir -p src-tauri/target/release/bundle/appimage
- mkdir -p src-tauri/target/release/bundle/deb
- mkdir -p src-tauri/target/release/bundle/rpm
-
- # Show what's available in cache (sorted by time, newest first)
- echo "Available AppImage files:"
- ls -lt $CARGO_TARGET_DIR/release/bundle/appimage/ 2>/dev/null || true
- echo "Available DEB files:"
- ls -lt $CARGO_TARGET_DIR/release/bundle/deb/ 2>/dev/null || true
- echo "Available RPM files:"
- ls -lt $CARGO_TARGET_DIR/release/bundle/rpm/ 2>/dev/null || true
-
- # Copy from persistent cache location (get NEWEST file by modification time)
- APPIMAGE=$(ls -t $CARGO_TARGET_DIR/release/bundle/appimage/*.AppImage 2>/dev/null | head -1)
- echo "Copying AppImage: $APPIMAGE"
- cp "$APPIMAGE" src-tauri/target/release/bundle/appimage/Cinny-Linux-x64.AppImage
-
- DEB=$(ls -t $CARGO_TARGET_DIR/release/bundle/deb/*.deb 2>/dev/null | head -1)
- echo "Copying DEB: $DEB"
- cp "$DEB" src-tauri/target/release/bundle/deb/Cinny-Linux-x64.deb
-
- RPM=$(ls -t $CARGO_TARGET_DIR/release/bundle/rpm/*.rpm 2>/dev/null | head -1)
- echo "Copying RPM: $RPM"
- cp "$RPM" src-tauri/target/release/bundle/rpm/Cinny-Linux-x64.rpm
-
- # Copy signature file for updater if it exists (get NEWEST)
- if ls $CARGO_TARGET_DIR/release/bundle/appimage/*.AppImage.sig 1> /dev/null 2>&1; then
- APPSIG=$(ls -t $CARGO_TARGET_DIR/release/bundle/appimage/*.AppImage.sig 2>/dev/null | head -1)
- echo "Copying AppImage sig: $APPSIG"
- cp "$APPSIG" src-tauri/target/release/bundle/appimage/Cinny-Linux-x64.AppImage.sig
- fi
-
- # List final output
- echo "Final output:"
- ls -la src-tauri/target/release/bundle/appimage/
- ls -la src-tauri/target/release/bundle/deb/
- ls -la src-tauri/target/release/bundle/rpm/
+ - name: Build Electron app
+ run: npm run build:linux
+ env:
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload AppImage
uses: actions/upload-artifact@v3
with:
- name: Cinny-Linux-x64.AppImage
- path: src-tauri/target/release/bundle/appimage/Cinny-Linux-x64.AppImage
-
- - name: Upload AppImage Signature
- uses: actions/upload-artifact@v3
- if: always()
- with:
- name: Cinny-Linux-x64.AppImage.sig
- path: src-tauri/target/release/bundle/appimage/Cinny-Linux-x64.AppImage.sig
+ name: Paarrot-Linux-x64.AppImage
+ path: dist-electron/Paarrot-*-x64.AppImage
- name: Upload DEB package
uses: actions/upload-artifact@v3
with:
- name: Cinny-Linux-x64.deb
- path: src-tauri/target/release/bundle/deb/Cinny-Linux-x64.deb
+ name: Paarrot-Linux-x64.deb
+ path: dist-electron/Paarrot-*-x64.deb
- name: Upload RPM package
uses: actions/upload-artifact@v3
with:
- name: Cinny-Linux-x64.rpm
- path: src-tauri/target/release/bundle/rpm/Cinny-Linux-x64.rpm
-
- build-android:
- runs-on: windows
- needs: increment-version
- if: always() && (needs.increment-version.outputs.should_build == 'true' || needs.increment-version.result == 'skipped')
- env:
- CARGO_TARGET_DIR: C:\cargo-cache\cinny-desktop-android
-
- steps:
- - name: Checkout repository
- uses: actions/checkout@v4
- with:
- submodules: false
- ref: ${{ github.ref_name }}
- clean: false
-
- - name: Pull latest (after version bump)
- if: github.ref == 'refs/heads/main'
- shell: powershell
- run: git pull origin main
-
- - name: Checkout submodules (Windows workaround)
- shell: powershell
- run: |
- git submodule update --init --recursive
-
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: '20'
-
- - name: Setup Java
- uses: actions/setup-java@v4
- with:
- distribution: 'temurin'
- java-version: '17'
-
- - name: Install Rust
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- profile: minimal
- override: true
- target: aarch64-linux-android
-
- - name: Add Android targets
- run: |
- rustup target add aarch64-linux-android --toolchain stable
-
- - name: Install dependencies (root)
- run: npm ci --prefer-offline
-
- - name: Install dependencies (cinny)
- working-directory: ./cinny
- run: npm ci --prefer-offline
-
- - name: Build Android APK
- shell: powershell
- timeout-minutes: 30
- run: |
- $env:PATH = "$env:USERPROFILE\.cargo\bin;$env:PATH"
- npm run tauri android build -- --ci --target aarch64
- # Kill any lingering processes that might hang
- Stop-Process -Name "java" -Force -ErrorAction SilentlyContinue
- Stop-Process -Name "gradle" -Force -ErrorAction SilentlyContinue
- env:
- ANDROID_HOME: ${{ env.ANDROID_HOME }}
- NDK_HOME: ${{ env.ANDROID_HOME }}/ndk/25.2.9519653
- RUSTUP_TOOLCHAIN: stable
- CI: true
-
- - name: Sign APK
- shell: powershell
- run: |
- $unsignedApk = "src-tauri/gen/android/app/build/outputs/apk/universal/release/app-universal-release-unsigned.apk"
- $signedApk = "src-tauri/gen/android/app/build/outputs/apk/universal/release/cinny-release.apk"
- $keystoreDir = "$env:USERPROFILE\.android"
- $keystore = "$keystoreDir\debug.keystore"
-
- # Find Android SDK
- $androidHome = if ($env:ANDROID_HOME) { $env:ANDROID_HOME }
- elseif ($env:ANDROID_SDK_ROOT) { $env:ANDROID_SDK_ROOT }
- elseif (Test-Path "$env:LOCALAPPDATA\Android\Sdk") { "$env:LOCALAPPDATA\Android\Sdk" }
- else { "$env:USERPROFILE\AppData\Local\Android\Sdk" }
-
- Write-Host "Using Android SDK at: $androidHome"
-
- # Ensure keystore directory exists
- if (-not (Test-Path $keystoreDir)) {
- New-Item -ItemType Directory -Path $keystoreDir -Force | Out-Null
- }
-
- # Use debug keystore for signing (create if missing)
- if (-not (Test-Path $keystore)) {
- Write-Host "Creating debug keystore..."
- # Use -noprompt to avoid any interactive prompts
- & keytool -genkeypair -noprompt -keystore $keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "CN=Android Debug,O=Android,C=US"
- if ($LASTEXITCODE -ne 0) {
- Write-Error "Failed to create keystore"
- exit 1
- }
- }
-
- Write-Host "Using keystore: $keystore"
-
- # Find build tools
- $buildTools = Get-ChildItem "$androidHome\build-tools" | Sort-Object Name -Descending | Select-Object -First 1
- $apksigner = "$($buildTools.FullName)\apksigner.bat"
- $zipalign = "$($buildTools.FullName)\zipalign.exe"
-
- Write-Host "Using build tools: $($buildTools.FullName)"
-
- # Align the APK
- Write-Host "Aligning APK..."
- & $zipalign -v -p 4 $unsignedApk "$unsignedApk.aligned"
- if ($LASTEXITCODE -ne 0) {
- Write-Error "Failed to align APK"
- exit 1
- }
-
- # Sign the APK
- Write-Host "Signing APK..."
- & $apksigner sign --ks $keystore --ks-pass pass:android --key-pass pass:android --out $signedApk "$unsignedApk.aligned"
- if ($LASTEXITCODE -ne 0) {
- Write-Error "Failed to sign APK"
- exit 1
- }
-
- # Verify
- Write-Host "Verifying signature..."
- & $apksigner verify $signedApk
-
- Write-Host "Signed APK created at: $signedApk"
-
- # Rename to final name
- Copy-Item $signedApk "src-tauri/gen/android/app/build/outputs/apk/universal/release/Cinny-Android.apk"
- Write-Host "Done! APK ready at: Cinny-Android.apk"
-
- - name: Upload APK
- uses: actions/upload-artifact@v3
- with:
- name: Cinny-Android.apk
- path: src-tauri/gen/android/app/build/outputs/apk/universal/release/Cinny-Android.apk
+ name: Paarrot-Linux-x64.rpm
+ path: dist-electron/Paarrot-*-x64.rpm
create-release:
runs-on: ubuntu-latest
- needs: [increment-version, build-windows, build-linux, build-android]
+ needs: [increment-version, build-windows, build-linux]
if: always() && (needs.build-windows.result == 'success' || needs.build-linux.result == 'success')
steps:
@@ -453,7 +180,7 @@ jobs:
if [ -n "${{ needs.increment-version.outputs.version }}" ]; then
VERSION="${{ needs.increment-version.outputs.version }}"
else
- VERSION=$(grep -Po '"version":\s*"\K[^"]+' src-tauri/tauri.conf.json | head -1)
+ VERSION=$(grep -Po '"version":\s*"\K[^"]+' package.json | head -1)
fi
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
echo "Version: $VERSION"
@@ -483,42 +210,10 @@ jobs:
with:
path: artifacts
- - name: Create update.json
- run: |
- VERSION="${{ steps.version.outputs.VERSION }}"
- APPIMAGE_SIG=""
- MSI_SIG=""
- if [ -f "artifacts/Cinny-Linux-x64.AppImage.sig/Cinny-Linux-x64.AppImage.sig" ]; then
- APPIMAGE_SIG=$(cat "artifacts/Cinny-Linux-x64.AppImage.sig/Cinny-Linux-x64.AppImage.sig")
- fi
- if [ -f "artifacts/Cinny-Windows-x64.msi.sig/Cinny-Windows-x64.msi.sig" ]; then
- MSI_SIG=$(cat "artifacts/Cinny-Windows-x64.msi.sig/Cinny-Windows-x64.msi.sig")
- fi
-
- cat > update.json << EOF
- {
- "version": "${VERSION}",
- "notes": "Update to version ${VERSION}",
- "pub_date": "$(date -u +%Y-%m-%dT%H:%M:%SZ)",
- "platforms": {
- "linux-x86_64": {
- "signature": "${APPIMAGE_SIG}",
- "url": "http://synbox.ruv.wtf:8418/litruv/cinny-desktop/releases/download/v${VERSION}/Cinny-Linux-x64.AppImage"
- },
- "windows-x86_64": {
- "signature": "${MSI_SIG}",
- "url": "http://synbox.ruv.wtf:8418/litruv/cinny-desktop/releases/download/v${VERSION}/Cinny-Windows-x64.msi"
- }
- }
- }
- EOF
- cat update.json
-
- name: Prepare release files
run: |
mkdir -p release-files
- find artifacts -type f \( -name "*.msi" -o -name "*.msi.zip" -o -name "*.msi.zip.sig" -o -name "*.AppImage" -o -name "*.deb" -o -name "*.rpm" -o -name "*.apk" -o -name "*.sig" \) -exec cp {} release-files/ \;
- cp update.json release-files/
+ find artifacts -type f \( -name "*.exe" -o -name "*.AppImage" -o -name "*.deb" -o -name "*.rpm" -o -name "*.dmg" -o -name "*.zip" \) -exec cp {} release-files/ \;
ls -la release-files/
- name: Create or Update Release
@@ -569,41 +264,3 @@ jobs:
done
echo "Release complete!"
-
- # Also update 'latest' release with update.json for auto-updater
- echo "Updating 'latest' release..."
- LATEST_TAG="latest"
- LATEST_ID=$(curl -s -H "Authorization: token ${GITEA_TOKEN}" \
- "${API_BASE}/repos/${REPO}/releases/tags/${LATEST_TAG}" | jq -r '.id // empty')
-
- if [ -z "$LATEST_ID" ]; then
- echo "Creating 'latest' release..."
- LATEST_ID=$(curl -s -X POST \
- -H "Authorization: token ${GITEA_TOKEN}" \
- -H "Content-Type: application/json" \
- -d "{\"tag_name\": \"${LATEST_TAG}\", \"name\": \"Latest Release\", \"body\": \"Always points to the most recent version (${VERSION})\", \"draft\": false, \"prerelease\": false}" \
- "${API_BASE}/repos/${REPO}/releases" | jq -r '.id')
- else
- # Update release body
- curl -s -X PATCH \
- -H "Authorization: token ${GITEA_TOKEN}" \
- -H "Content-Type: application/json" \
- -d "{\"body\": \"Always points to the most recent version (${VERSION})\"}" \
- "${API_BASE}/repos/${REPO}/releases/${LATEST_ID}"
- # Delete existing update.json asset
- LATEST_ASSETS=$(curl -s -H "Authorization: token ${GITEA_TOKEN}" \
- "${API_BASE}/repos/${REPO}/releases/${LATEST_ID}/assets" | jq -r '.[] | select(.name=="update.json") | .id')
- for ASSET_ID in $LATEST_ASSETS; do
- curl -s -X DELETE -H "Authorization: token ${GITEA_TOKEN}" \
- "${API_BASE}/repos/${REPO}/releases/${LATEST_ID}/assets/${ASSET_ID}"
- done
- fi
-
- # Upload update.json to latest
- curl -s -X POST \
- -H "Authorization: token ${GITEA_TOKEN}" \
- -H "Content-Type: application/octet-stream" \
- --data-binary "@release-files/update.json" \
- "${API_BASE}/repos/${REPO}/releases/${LATEST_ID}/assets?name=update.json"
-
- echo "Latest release updated!"
diff --git a/README.md b/README.md
index 180ca8b..0a5146c 100644
--- a/README.md
+++ b/README.md
@@ -4,29 +4,21 @@
-Cinny is a matrix client focusing primarily on simple, elegant and secure interface. The desktop app is made with Tauri.
+Cinny is a matrix client focusing primarily on simple, elegant and secure interface. The desktop app is built with Electron.
## Download
-Installers for macOS, Windows and Linux can be downloaded from [Github releases](https://github.com/cinnyapp/cinny-desktop/releases). Releases are signed with a [Ed25519](https://ed25519.cr.yp.to/) public-key.
+Installers for macOS, Windows and Linux can be downloaded from [releases](https://github.com/cinnyapp/cinny-desktop/releases).
Operating System | Download
---|---
-Windows | Get it on Windows
-macOS | Get it on macOS
-Linux | Get it on Linux ยท Flatpak
-
-Decoded public key:
-> RWRflTUQD3RHFtn25QNANCmePR9+4LSK89kAKTMEEB4OKpOFpLMgc64z
-
-To verify release files, you need to download [minisign](https://jedisct1.github.io/minisign/) tool and [decode](https://www.base64decode.org/) the *.sig* file before running:
-> minisign -Vm ***RELEASE_FILE.msi.zip*** -P RWRflTUQD3RHFtn25QNANCmePR9+4LSK89kAKTMEEB4OKpOFpLMgc64z -x ***SINGATURE.msi.zip.sig***
+Windows | Get it on Windows
+macOS | Get it on macOS
+Linux | Get it on Linux
## Local development
-Firstly, to setup Rust, NodeJS and build tools follow [Tauri documentation](https://tauri.app/v1/guides/getting-started/prerequisites).
-
-Now, to setup development locally run the following commands:
+To setup development locally run the following commands:
* `git clone --recursive https://github.com/cinnyapp/cinny-desktop.git`
* `cd cinny-desktop/cinny`
* `npm ci`
@@ -34,7 +26,7 @@ Now, to setup development locally run the following commands:
* `npm ci`
To build the app locally, run:
-* `npm run tauri build`
+* `npm run build`
To start local dev server, run:
-* `npm run tauri dev`
+* `npm run dev`
diff --git a/cinny b/cinny
index 6c74157..8b0960d 160000
--- a/cinny
+++ b/cinny
@@ -1 +1 @@
-Subproject commit 6c741577cee0b01347fdcfcbb21a9a17d51d1de4
+Subproject commit 8b0960d3661643aaefbc17ea0d66d557f251c7df
diff --git a/electron-builder.json5 b/electron-builder.json5
new file mode 100644
index 0000000..e0fd110
--- /dev/null
+++ b/electron-builder.json5
@@ -0,0 +1,131 @@
+{
+ "appId": "com.paarrot.app",
+ "productName": "Paarrot",
+ "artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
+ "copyright": "Copyright ยฉ 2024",
+ "directories": {
+ "output": "dist-electron",
+ "buildResources": "build-resources"
+ },
+ "files": [
+ "electron/**/*",
+ "cinny/dist/**/*",
+ "!**/*.map",
+ "!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
+ "!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
+ "!**/node_modules/*.d.ts",
+ "!**/node_modules/.bin",
+ "!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
+ "!.editorconfig",
+ "!**/._*",
+ "!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
+ "!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
+ "!**/{appveyor.yml,.travis.yml,circle.yml}",
+ "!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
+ ],
+ "extraResources": [
+ {
+ "from": "icons",
+ "to": "icons",
+ "filter": ["**/*"]
+ }
+ ],
+ "linux": {
+ "target": [
+ {
+ "target": "AppImage",
+ "arch": ["x64", "arm64"]
+ },
+ {
+ "target": "deb",
+ "arch": ["x64", "arm64"]
+ },
+ {
+ "target": "rpm",
+ "arch": ["x64", "arm64"]
+ }
+ ],
+ "category": "Network;InstantMessaging",
+ "icon": "icons/icon.png",
+ "desktop": {
+ "Name": "Paarrot",
+ "GenericName": "Matrix Client",
+ "Comment": "A Matrix client built with Cinny",
+ "Categories": "Network;InstantMessaging;",
+ "Keywords": "matrix;chat;messaging;",
+ "StartupWMClass": "paarrot"
+ }
+ },
+ "appImage": {
+ "license": "AGPL-3.0",
+ "artifactName": "${productName}-${version}-${arch}.${ext}"
+ },
+ "deb": {
+ "depends": [
+ "libnotify4",
+ "libxtst6",
+ "libnss3"
+ ],
+ "afterInstall": "build-resources/linux/after-install.sh",
+ "afterRemove": "build-resources/linux/after-remove.sh"
+ },
+ "rpm": {
+ "depends": [
+ "libnotify",
+ "libXtst",
+ "nss"
+ ],
+ "afterInstall": "build-resources/linux/after-install.sh",
+ "afterRemove": "build-resources/linux/after-remove.sh"
+ },
+ "win": {
+ "target": [
+ {
+ "target": "nsis",
+ "arch": ["x64", "arm64"]
+ },
+ {
+ "target": "portable",
+ "arch": ["x64", "arm64"]
+ }
+ ],
+ "icon": "icons/icon.ico",
+ "artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
+ },
+ "nsis": {
+ "oneClick": false,
+ "perMachine": false,
+ "allowToChangeInstallationDirectory": true,
+ "deleteAppDataOnUninstall": false,
+ "createDesktopShortcut": true,
+ "createStartMenuShortcut": true,
+ "shortcutName": "Paarrot"
+ },
+ "mac": {
+ "target": [
+ {
+ "target": "dmg",
+ "arch": ["x64", "arm64"]
+ },
+ {
+ "target": "zip",
+ "arch": ["x64", "arm64"]
+ }
+ ],
+ "category": "public.app-category.social-networking",
+ "icon": "icons/icon.icns",
+ "hardenedRuntime": true,
+ "gatekeeperAssess": false,
+ "entitlements": "build-resources/entitlements.mac.plist",
+ "entitlementsInherit": "build-resources/entitlements.mac.plist"
+ },
+ "dmg": {
+ "sign": false,
+ "artifactName": "${productName}-${version}-${os}-${arch}.${ext}"
+ },
+ "publish": {
+ "provider": "github",
+ "owner": "litruv",
+ "repo": "cinny-desktop"
+ }
+}
diff --git a/electron/main.js b/electron/main.js
new file mode 100644
index 0000000..101ab08
--- /dev/null
+++ b/electron/main.js
@@ -0,0 +1,490 @@
+const { app, BrowserWindow, ipcMain, shell, Tray, Menu, nativeImage, clipboard, session, desktopCapturer } = require('electron');
+const path = require('path');
+const fs = require('fs');
+const { exec } = require('child_process');
+const { promisify } = require('util');
+const Store = require('electron-store');
+const open = require('open');
+const { autoUpdater } = require('electron-updater');
+
+const execAsync = promisify(exec);
+const store = new Store();
+
+let mainWindow = null;
+let tray = null;
+let isQuitting = false;
+
+// Configure auto-updater
+autoUpdater.autoDownload = false;
+autoUpdater.autoInstallOnAppQuit = true;
+
+// Auto-updater event handlers
+autoUpdater.on('checking-for-update', () => {
+ console.log('Checking for updates...');
+});
+
+autoUpdater.on('update-available', (info) => {
+ console.log('Update available:', info.version);
+ if (mainWindow) {
+ mainWindow.webContents.send('update-available', info);
+ }
+});
+
+autoUpdater.on('update-not-available', (info) => {
+ console.log('No updates available');
+});
+
+autoUpdater.on('error', (err) => {
+ console.error('Auto-updater error:', err);
+});
+
+autoUpdater.on('download-progress', (progressObj) => {
+ console.log(`Download progress: ${progressObj.percent}%`);
+ if (mainWindow) {
+ mainWindow.webContents.send('update-download-progress', progressObj);
+ }
+});
+
+autoUpdater.on('update-downloaded', (info) => {
+ console.log('Update downloaded:', info.version);
+ if (mainWindow) {
+ mainWindow.webContents.send('update-downloaded', info);
+ }
+});
+
+
+// Single instance lock
+const gotTheLock = app.requestSingleInstanceLock();
+
+if (!gotTheLock) {
+ app.quit();
+} else {
+ app.on('second-instance', () => {
+ // Someone tried to run a second instance, focus our window
+ if (mainWindow) {
+ if (mainWindow.isMinimized()) mainWindow.restore();
+ mainWindow.show();
+ mainWindow.focus();
+ }
+ });
+}
+
+// Development mode detection
+const isDev = process.env.NODE_ENV === 'development' || !app.isPackaged;
+const VITE_DEV_SERVER = 'http://localhost:8080';
+const PORT = 44548;
+
+function createWindow() {
+ // Restore window state or use defaults
+ const windowState = store.get('windowState', {
+ width: 1280,
+ height: 905,
+ x: undefined,
+ y: undefined,
+ isMaximized: false
+ });
+
+ mainWindow = new BrowserWindow({
+ width: windowState.width,
+ height: windowState.height,
+ x: windowState.x,
+ y: windowState.y,
+ title: 'Paarrot',
+ frame: false, // Custom window decorations
+ resizable: true,
+ webPreferences: {
+ preload: path.join(__dirname, 'preload.js'),
+ contextIsolation: true,
+ nodeIntegration: false,
+ webSecurity: true,
+ allowRunningInsecureContent: false
+ },
+ icon: path.join(__dirname, '../icons', process.platform === 'win32' ? 'icon.ico' : 'icon.png'),
+ show: false // Don't show until ready
+ });
+
+ // Restore maximized state
+ if (windowState.isMaximized) {
+ mainWindow.maximize();
+ }
+
+ // Save window state on resize/move
+ const saveWindowState = () => {
+ if (!mainWindow.isMaximized() && !mainWindow.isMinimized() && !mainWindow.isFullScreen()) {
+ const bounds = mainWindow.getBounds();
+ store.set('windowState', {
+ width: bounds.width,
+ height: bounds.height,
+ x: bounds.x,
+ y: bounds.y,
+ isMaximized: false
+ });
+ }
+ };
+
+ mainWindow.on('resize', saveWindowState);
+ mainWindow.on('move', saveWindowState);
+ mainWindow.on('maximize', () => {
+ store.set('windowState.isMaximized', true);
+ });
+ mainWindow.on('unmaximize', () => {
+ store.set('windowState.isMaximized', false);
+ });
+
+ // Set up session handlers BEFORE loading the app
+ // Auto-approve media permissions including screen capture
+ mainWindow.webContents.session.setPermissionRequestHandler((webContents, permission, callback) => {
+ const allowedPermissions = ['media', 'microphone', 'camera', 'display-capture'];
+
+ if (allowedPermissions.includes(permission)) {
+ console.log(`Paarrot: Auto-approving permission: ${permission}`);
+ callback(true);
+ } else {
+ console.log(`Paarrot: Denying permission: ${permission}`);
+ callback(false);
+ }
+ });
+
+ // Handle screen capture requests - always allow
+ mainWindow.webContents.session.setPermissionCheckHandler((webContents, permission, requestingOrigin, details) => {
+ console.log(`Paarrot: Permission check - ${permission} from ${requestingOrigin}`);
+ return true; // Allow all permissions
+ });
+
+ // Handle display media request (screen sharing) - this is the key for Electron screen capture
+ mainWindow.webContents.session.setDisplayMediaRequestHandler(async (request, callback) => {
+ console.log('Paarrot: Display media request received', request);
+
+ try {
+ const sources = await desktopCapturer.getSources({
+ types: ['screen', 'window'],
+ thumbnailSize: { width: 150, height: 150 }
+ });
+
+ console.log('Paarrot: Available sources:', sources.length);
+ sources.forEach((s, i) => console.log(` ${i}: ${s.name} (${s.id})`));
+
+ if (sources.length === 0) {
+ console.log('Paarrot: No sources available, denying request');
+ callback({});
+ return;
+ }
+
+ // Prefer screens over windows
+ const source = sources.find(s => s.id.startsWith('screen:')) || sources[0];
+ console.log('Paarrot: Selected source:', source.name, source.id);
+
+ // Return the selected source - video is required
+ callback({ video: source });
+ } catch (error) {
+ console.error('Paarrot: Error getting display sources:', error);
+ callback({});
+ }
+ }, { useSystemPicker: false });
+
+ // Load the app
+ if (isDev) {
+ mainWindow.loadURL(VITE_DEV_SERVER);
+ // Open DevTools in development
+ mainWindow.webContents.openDevTools();
+ } else {
+ // In production, serve from built files
+ mainWindow.loadFile(path.join(__dirname, '../cinny/dist/index.html'));
+ }
+
+ // Show window when ready
+ mainWindow.once('ready-to-show', () => {
+ // Check for --minimized flag (autostart)
+ if (!process.argv.includes('--minimized')) {
+ mainWindow.show();
+ }
+ });
+
+ // Handle window close - minimize to tray
+ mainWindow.on('close', (event) => {
+ if (!isQuitting) {
+ event.preventDefault();
+ mainWindow.hide();
+ return false;
+ }
+ });
+
+ mainWindow.on('closed', () => {
+ mainWindow = null;
+ });
+
+ // Open external links in default browser
+ mainWindow.webContents.setWindowOpenHandler(({ url }) => {
+ if (url.startsWith('http://') || url.startsWith('https://')) {
+ shell.openExternal(url);
+ return { action: 'deny' };
+ }
+ return { action: 'allow' };
+ });
+
+ // Navigation handler - open external links in browser
+ mainWindow.webContents.on('will-navigate', (event, url) => {
+ const allowedOrigins = [
+ 'http://localhost:8080',
+ 'http://localhost:44548',
+ 'http://127.0.0.1:8080',
+ 'http://127.0.0.1:44548'
+ ];
+
+ const isAllowed = allowedOrigins.some(origin => url.startsWith(origin)) ||
+ url.startsWith('blob:') ||
+ url.startsWith('data:');
+
+ if (!isAllowed && (url.startsWith('http://') || url.startsWith('https://'))) {
+ event.preventDefault();
+ shell.openExternal(url);
+ }
+ });
+
+ return mainWindow;
+}
+
+function createTray() {
+ const iconPath = path.join(__dirname, '../icons', 'icon.png');
+ const trayIcon = nativeImage.createFromPath(iconPath);
+ tray = new Tray(trayIcon.resize({ width: 16, height: 16 }));
+
+ const contextMenu = Menu.buildFromTemplate([
+ {
+ label: 'Show Paarrot',
+ click: () => {
+ if (mainWindow) {
+ mainWindow.show();
+ mainWindow.focus();
+ }
+ }
+ },
+ { type: 'separator' },
+ {
+ label: 'Quit',
+ click: () => {
+ isQuitting = true;
+ app.quit();
+ }
+ }
+ ]);
+
+ tray.setContextMenu(contextMenu);
+ tray.setToolTip('Paarrot');
+
+ // Click tray icon to show window
+ tray.on('click', () => {
+ if (mainWindow) {
+ if (mainWindow.isVisible()) {
+ mainWindow.hide();
+ } else {
+ mainWindow.show();
+ mainWindow.focus();
+ }
+ }
+ });
+}
+
+// App lifecycle
+app.whenReady().then(() => {
+ createWindow();
+ createTray();
+
+ // Check for updates (not in development mode)
+ if (!isDev) {
+ // Check for updates on start (after 3 seconds)
+ setTimeout(() => {
+ autoUpdater.checkForUpdates().catch(err => {
+ console.error('Failed to check for updates:', err);
+ });
+ }, 3000);
+
+ // Check for updates every 6 hours
+ setInterval(() => {
+ autoUpdater.checkForUpdates().catch(err => {
+ console.error('Failed to check for updates:', err);
+ });
+ }, 6 * 60 * 60 * 1000);
+ }
+});
+
+app.on('window-all-closed', () => {
+ // On macOS, apps stay active until Cmd+Q
+ if (process.platform !== 'darwin') {
+ // But we want to stay in tray, so don't quit
+ // app.quit();
+ }
+});
+
+app.on('activate', () => {
+ // On macOS, recreate window when dock icon is clicked
+ if (BrowserWindow.getAllWindows().length === 0) {
+ createWindow();
+ } else if (mainWindow) {
+ mainWindow.show();
+ }
+});
+
+app.on('before-quit', () => {
+ isQuitting = true;
+});
+
+// ==================== IPC Handlers ====================
+
+// Window controls
+ipcMain.handle('window:minimize', () => {
+ if (mainWindow) mainWindow.minimize();
+});
+
+ipcMain.handle('window:maximize', () => {
+ if (mainWindow) {
+ if (mainWindow.isMaximized()) {
+ mainWindow.unmaximize();
+ } else {
+ mainWindow.maximize();
+ }
+ }
+});
+
+ipcMain.handle('window:unmaximize', () => {
+ if (mainWindow) mainWindow.unmaximize();
+});
+
+ipcMain.handle('window:close', () => {
+ if (mainWindow) mainWindow.close();
+});
+
+ipcMain.handle('window:is-maximized', () => {
+ return mainWindow ? mainWindow.isMaximized() : false;
+});
+
+ipcMain.handle('window:start-drag', () => {
+ if (mainWindow) mainWindow.webContents.startDrag({ file: '', icon: nativeImage.createEmpty() });
+});
+
+// Open external URL
+ipcMain.handle('open-external-url', async (event, url) => {
+ try {
+ await shell.openExternal(url);
+ return { success: true };
+ } catch (error) {
+ return { success: false, error: error.message };
+ }
+});
+
+// Read clipboard image
+ipcMain.handle('read-clipboard-image', async () => {
+ try {
+ const image = clipboard.readImage();
+ if (image.isEmpty()) {
+ return { success: true, data: null };
+ }
+
+ // Convert to PNG base64
+ const pngBuffer = image.toPNG();
+ const base64 = pngBuffer.toString('base64');
+ return {
+ success: true,
+ data: `data:image/png;base64,${base64}`
+ };
+ } catch (error) {
+ return { success: false, error: error.message };
+ }
+});
+
+// Get YouTube stream using yt-dlp
+ipcMain.handle('get-youtube-stream', async (event, url) => {
+ try {
+ // Check if yt-dlp is available
+ try {
+ await execAsync('yt-dlp --version');
+ } catch {
+ return {
+ success: false,
+ error: 'yt-dlp is not installed. Please install yt-dlp to use YouTube features.'
+ };
+ }
+
+ // Get title
+ let title = 'YouTube Video';
+ try {
+ const titleResult = await execAsync(`yt-dlp --get-title "${url}"`);
+ title = titleResult.stdout.trim();
+ } catch (e) {
+ console.warn('Failed to get video title:', e.message);
+ }
+
+ // Get video URL
+ const result = await execAsync(
+ `yt-dlp -g -f "best[height<=1080]/bestvideo[height<=1080]+bestaudio/best" "${url}"`
+ );
+
+ const videoUrl = result.stdout.trim().split('\n')[0];
+
+ if (!videoUrl) {
+ return { success: false, error: 'yt-dlp returned empty URL' };
+ }
+
+ return {
+ success: true,
+ data: { video_url: videoUrl, title }
+ };
+ } catch (error) {
+ return {
+ success: false,
+ error: `yt-dlp error: ${error.message}`
+ };
+ }
+});
+
+// Background sync stubs (desktop doesn't need it)
+ipcMain.handle('start-background-sync', async () => {
+ return { success: true };
+});
+
+ipcMain.handle('stop-background-sync', async () => {
+ return { success: true };
+});
+
+ipcMain.handle('get-background-sync-state', async () => {
+ return { success: true, data: 'NotApplicable' };
+});
+
+// Auto-updater IPC handlers
+ipcMain.handle('check-for-updates', async () => {
+ try {
+ const result = await autoUpdater.checkForUpdates();
+ return { success: true, data: result };
+ } catch (error) {
+ return { success: false, error: error.message };
+ }
+});
+
+ipcMain.handle('download-update', async () => {
+ try {
+ await autoUpdater.downloadUpdate();
+ return { success: true };
+ } catch (error) {
+ return { success: false, error: error.message };
+ }
+});
+
+ipcMain.handle('install-update', () => {
+ autoUpdater.quitAndInstall(false, true);
+ return { success: true };
+});
+
+// Screen capture / desktopCapturer handler
+ipcMain.handle('get-desktop-sources', async (event, opts) => {
+ try {
+ const sources = await desktopCapturer.getSources(opts);
+ return { success: true, data: sources };
+ } catch (error) {
+ console.error('Failed to get desktop sources:', error);
+ return { success: false, error: error.message };
+ }
+});
+
+console.log('Paarrot Electron main process started');
+console.log('Development mode:', isDev);
+console.log('Platform:', process.platform);
diff --git a/electron/preload.js b/electron/preload.js
new file mode 100644
index 0000000..c06803d
--- /dev/null
+++ b/electron/preload.js
@@ -0,0 +1,143 @@
+const { contextBridge, ipcRenderer } = require('electron');
+
+// Map command names to Electron IPC channels
+const commandMap = {
+ 'window_minimize': 'window:minimize',
+ 'window_maximize': 'window:maximize',
+ 'window_unmaximize': 'window:unmaximize',
+ 'window_close': 'window:close',
+ 'window_is_maximized': 'window:is-maximized',
+ 'window_start_drag': 'window:start-drag',
+ 'read_clipboard_image': 'read-clipboard-image',
+ 'open_external_url': 'open-external-url',
+ 'get_youtube_stream': 'get-youtube-stream',
+ 'start_background_sync': 'start-background-sync',
+ 'stop_background_sync': 'stop-background-sync',
+ 'get_background_sync_state': 'get-background-sync-state',
+ 'check_for_updates': 'check-for-updates',
+ 'download_update': 'download-update',
+ 'install_update': 'install-update',
+ 'get_desktop_sources': 'get-desktop-sources'
+};
+
+// Shared invoke function for legacy API compatibility
+const invokeHandler = async (command, args = {}) => {
+ try {
+ const channel = commandMap[command] || command;
+ const result = await ipcRenderer.invoke(channel, args);
+
+ // Return response in expected format
+ if (result && result.success === false) {
+ throw new Error(result.error || 'Unknown error');
+ }
+
+ // For commands that return data in a 'data' field
+ if (result && result.data !== undefined) {
+ return result.data;
+ }
+
+ // For simple commands that just return success/failure
+ return result;
+ } catch (error) {
+ console.error(`[Electron IPC] Error invoking ${command}:`, error);
+ throw error;
+ }
+};
+
+// Expose protected methods that allow the renderer process to use
+// ipcRenderer without exposing the entire object
+contextBridge.exposeInMainWorld('__TAURI_INTERNALS__', {
+ // Legacy API compatibility layer for existing frontend code
+ metadata: {
+ currentVersion: {
+ version: '2.0.0',
+ platform: process.platform,
+ arch: process.arch
+ }
+ },
+ // Add invoke function for legacy plugins
+ invoke: invokeHandler,
+ // Add stub for transformCallback to prevent errors with legacy plugins
+ transformCallback: (callback) => {
+ return callback;
+ }
+});
+
+contextBridge.exposeInMainWorld('__TAURI__', {
+ // Core IPC invoke - legacy API
+ invoke: invokeHandler,
+
+ // Event listeners (if needed for future events)
+ listen: (event, handler) => {
+ const subscription = (_, ...args) => handler(...args);
+ ipcRenderer.on(event, subscription);
+
+ // Return unsubscribe function
+ return () => {
+ ipcRenderer.removeListener(event, subscription);
+ };
+ }
+});
+
+// Also expose under electron namespace for direct Electron APIs
+contextBridge.exposeInMainWorld('electron', {
+ platform: process.platform,
+ arch: process.arch,
+ versions: process.versions,
+
+ // Window controls
+ window: {
+ minimize: () => ipcRenderer.invoke('window:minimize'),
+ maximize: () => ipcRenderer.invoke('window:maximize'),
+ unmaximize: () => ipcRenderer.invoke('window:unmaximize'),
+ close: () => ipcRenderer.invoke('window:close'),
+ isMaximized: () => ipcRenderer.invoke('window:is-maximized'),
+ startDrag: () => ipcRenderer.invoke('window:start-drag')
+ },
+
+ // Clipboard
+ clipboard: {
+ readImage: () => ipcRenderer.invoke('read-clipboard-image')
+ },
+
+ // External URLs
+ shell: {
+ openExternal: (url) => ipcRenderer.invoke('open-external-url', url)
+ },
+
+ // YouTube
+ youtube: {
+ getStream: (url) => ipcRenderer.invoke('get-youtube-stream', url)
+ },
+
+ // Background sync (stubs for desktop)
+ sync: {
+ start: (args) => ipcRenderer.invoke('start-background-sync', args),
+ stop: () => ipcRenderer.invoke('stop-background-sync'),
+ getState: () => ipcRenderer.invoke('get-background-sync-state')
+ },
+
+ // Auto-updater
+ updater: {
+ checkForUpdates: () => ipcRenderer.invoke('check-for-updates'),
+ downloadUpdate: () => ipcRenderer.invoke('download-update'),
+ installUpdate: () => ipcRenderer.invoke('install-update'),
+ onUpdateAvailable: (callback) => {
+ ipcRenderer.on('update-available', (_, info) => callback(info));
+ },
+ onUpdateDownloadProgress: (callback) => {
+ ipcRenderer.on('update-download-progress', (_, progress) => callback(progress));
+ },
+ onUpdateDownloaded: (callback) => {
+ ipcRenderer.on('update-downloaded', (_, info) => callback(info));
+ }
+ },
+
+ // Desktop capturer (for screen sharing)
+ desktopCapturer: {
+ getSources: (opts) => ipcRenderer.invoke('get-desktop-sources', opts)
+ }
+});
+
+// Preload script ready
+
diff --git a/src-tauri/icons/icon.icns b/icons/icon.icns
similarity index 100%
rename from src-tauri/icons/icon.icns
rename to icons/icon.icns
diff --git a/src-tauri/icons/icon.ico b/icons/icon.ico
similarity index 100%
rename from src-tauri/icons/icon.ico
rename to icons/icon.ico
diff --git a/src-tauri/icons/icon.png b/icons/icon.png
similarity index 100%
rename from src-tauri/icons/icon.png
rename to icons/icon.png
diff --git a/package-lock.json b/package-lock.json
index 2ef2055..04cc1c7 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -9,15 +9,20 @@
"version": "4.10.2",
"license": "AGPL-3.0-only",
"dependencies": {
- "@tauri-apps/api": "^2.0.0",
- "@tauri-apps/plugin-http": "2.5.7"
+ "electron-store": "^8.2.0",
+ "electron-updater": "^6.3.9",
+ "open": "11.0.0"
},
"devDependencies": {
"@actions/github": "6.0.0",
- "@tauri-apps/cli": "^2.0.0",
+ "@electron/rebuild": "4.0.3",
+ "concurrently": "9.2.1",
+ "electron": "40.6.0",
+ "electron-builder": "26.8.1",
"node-fetch": "3.3.2",
"png2icons": "2.0.1",
- "sharp": "0.34.5"
+ "sharp": "0.34.5",
+ "wait-on": "9.0.4"
},
"engines": {
"node": ">=18.0.0"
@@ -45,6 +50,470 @@
"undici": "^5.25.4"
}
},
+ "node_modules/@develar/schema-utils": {
+ "version": "2.6.5",
+ "resolved": "https://registry.npmjs.org/@develar/schema-utils/-/schema-utils-2.6.5.tgz",
+ "integrity": "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^6.12.0",
+ "ajv-keywords": "^3.4.1"
+ },
+ "engines": {
+ "node": ">= 8.9.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/webpack"
+ }
+ },
+ "node_modules/@electron/asar": {
+ "version": "3.4.1",
+ "resolved": "https://registry.npmjs.org/@electron/asar/-/asar-3.4.1.tgz",
+ "integrity": "sha512-i4/rNPRS84t0vSRa2HorerGRXWyF4vThfHesw0dmcWHp+cspK743UanA0suA5Q5y8kzY2y6YKrvbIUn69BCAiA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "commander": "^5.0.0",
+ "glob": "^7.1.6",
+ "minimatch": "^3.0.4"
+ },
+ "bin": {
+ "asar": "bin/asar.js"
+ },
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/@electron/asar/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@electron/asar/node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/@electron/asar/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/@electron/fuses": {
+ "version": "1.8.0",
+ "resolved": "https://registry.npmjs.org/@electron/fuses/-/fuses-1.8.0.tgz",
+ "integrity": "sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.1.1",
+ "fs-extra": "^9.0.1",
+ "minimist": "^1.2.5"
+ },
+ "bin": {
+ "electron-fuses": "dist/bin.js"
+ }
+ },
+ "node_modules/@electron/fuses/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@electron/fuses/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@electron/fuses/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@electron/get": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@electron/get/-/get-2.0.3.tgz",
+ "integrity": "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "env-paths": "^2.2.0",
+ "fs-extra": "^8.1.0",
+ "got": "^11.8.5",
+ "progress": "^2.0.3",
+ "semver": "^6.2.0",
+ "sumchecker": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "optionalDependencies": {
+ "global-agent": "^3.0.0"
+ }
+ },
+ "node_modules/@electron/get/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/@electron/notarize": {
+ "version": "2.5.0",
+ "resolved": "https://registry.npmjs.org/@electron/notarize/-/notarize-2.5.0.tgz",
+ "integrity": "sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "fs-extra": "^9.0.1",
+ "promise-retry": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@electron/notarize/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@electron/notarize/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@electron/notarize/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@electron/osx-sign": {
+ "version": "1.3.3",
+ "resolved": "https://registry.npmjs.org/@electron/osx-sign/-/osx-sign-1.3.3.tgz",
+ "integrity": "sha512-KZ8mhXvWv2rIEgMbWZ4y33bDHyUKMXnx4M0sTyPNK/vcB81ImdeY9Ggdqy0SWbMDgmbqyQ+phgejh6V3R2QuSg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "compare-version": "^0.1.2",
+ "debug": "^4.3.4",
+ "fs-extra": "^10.0.0",
+ "isbinaryfile": "^4.0.8",
+ "minimist": "^1.2.6",
+ "plist": "^3.0.5"
+ },
+ "bin": {
+ "electron-osx-flat": "bin/electron-osx-flat.js",
+ "electron-osx-sign": "bin/electron-osx-sign.js"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/@electron/osx-sign/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@electron/osx-sign/node_modules/isbinaryfile": {
+ "version": "4.0.10",
+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-4.0.10.tgz",
+ "integrity": "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 8.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/gjtorikian/"
+ }
+ },
+ "node_modules/@electron/osx-sign/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@electron/osx-sign/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@electron/rebuild": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/@electron/rebuild/-/rebuild-4.0.3.tgz",
+ "integrity": "sha512-u9vpTHRMkOYCs/1FLiSVAFZ7FbjsXK+bQuzviJZa+lG7BHZl1nz52/IcGvwa3sk80/fc3llutBkbCq10Vh8WQA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@malept/cross-spawn-promise": "^2.0.0",
+ "debug": "^4.1.1",
+ "detect-libc": "^2.0.1",
+ "got": "^11.7.0",
+ "graceful-fs": "^4.2.11",
+ "node-abi": "^4.2.0",
+ "node-api-version": "^0.2.1",
+ "node-gyp": "^11.2.0",
+ "ora": "^5.1.0",
+ "read-binary-file-arch": "^1.0.6",
+ "semver": "^7.3.5",
+ "tar": "^7.5.6",
+ "yargs": "^17.0.1"
+ },
+ "bin": {
+ "electron-rebuild": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ }
+ },
+ "node_modules/@electron/universal": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/@electron/universal/-/universal-2.0.3.tgz",
+ "integrity": "sha512-Wn9sPYIVFRFl5HmwMJkARCCf7rqK/EurkfQ/rJZ14mHP3iYTjZSIOSVonEAnhWeAXwtw7zOekGRlc6yTtZ0t+g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@electron/asar": "^3.3.1",
+ "@malept/cross-spawn-promise": "^2.0.0",
+ "debug": "^4.3.1",
+ "dir-compare": "^4.2.0",
+ "fs-extra": "^11.1.1",
+ "minimatch": "^9.0.3",
+ "plist": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=16.4"
+ }
+ },
+ "node_modules/@electron/universal/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@electron/universal/node_modules/brace-expansion": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/@electron/universal/node_modules/fs-extra": {
+ "version": "11.3.3",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
+ "integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@electron/universal/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@electron/universal/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/@electron/universal/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@electron/windows-sign": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/@electron/windows-sign/-/windows-sign-1.2.2.tgz",
+ "integrity": "sha512-dfZeox66AvdPtb2lD8OsIIQh12Tp0GNCRUDfBHIKGpbmopZto2/A8nSpYYLoedPIHpqkeblZ/k8OV0Gy7PYuyQ==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "optional": true,
+ "peer": true,
+ "dependencies": {
+ "cross-dirname": "^0.1.0",
+ "debug": "^4.3.4",
+ "fs-extra": "^11.1.1",
+ "minimist": "^1.2.8",
+ "postject": "^1.0.0-alpha.6"
+ },
+ "bin": {
+ "electron-windows-sign": "bin/electron-windows-sign.js"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@electron/windows-sign/node_modules/fs-extra": {
+ "version": "11.3.3",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.3.tgz",
+ "integrity": "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/@electron/windows-sign/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@electron/windows-sign/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
"node_modules/@emnapi/runtime": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.8.1.tgz",
@@ -65,6 +534,60 @@
"node": ">=14"
}
},
+ "node_modules/@hapi/address": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/@hapi/address/-/address-5.1.1.tgz",
+ "integrity": "sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@hapi/hoek": "^11.0.2"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@hapi/formula": {
+ "version": "3.0.2",
+ "resolved": "https://registry.npmjs.org/@hapi/formula/-/formula-3.0.2.tgz",
+ "integrity": "sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/hoek": {
+ "version": "11.0.7",
+ "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.7.tgz",
+ "integrity": "sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/pinpoint": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.1.tgz",
+ "integrity": "sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q==",
+ "dev": true,
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/@hapi/tlds": {
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/@hapi/tlds/-/tlds-1.1.6.tgz",
+ "integrity": "sha512-xdi7A/4NZokvV0ewovme3aUO5kQhW9pQ2YD1hRqZGhhSi5rBv4usHYidVocXSi9eihYsznZxLtAiEYYUL6VBGw==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@hapi/topo": {
+ "version": "6.0.2",
+ "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-6.0.2.tgz",
+ "integrity": "sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@hapi/hoek": "^11.0.2"
+ }
+ },
"node_modules/@img/colour": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz",
@@ -555,6 +1078,237 @@
"url": "https://opencollective.com/libvips"
}
},
+ "node_modules/@isaacs/cliui": {
+ "version": "8.0.2",
+ "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
+ "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^5.1.2",
+ "string-width-cjs": "npm:string-width@^4.2.0",
+ "strip-ansi": "^7.0.1",
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
+ "wrap-ansi": "^8.1.0",
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-regex": {
+ "version": "6.2.2",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz",
+ "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/ansi-styles": {
+ "version": "6.2.3",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz",
+ "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/emoji-regex": {
+ "version": "9.2.2",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
+ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
+ "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "eastasianwidth": "^0.2.0",
+ "emoji-regex": "^9.2.2",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
+ "version": "7.1.2",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz",
+ "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
+ "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^6.1.0",
+ "string-width": "^5.0.1",
+ "strip-ansi": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/@isaacs/fs-minipass": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.4"
+ },
+ "engines": {
+ "node": ">=18.0.0"
+ }
+ },
+ "node_modules/@malept/cross-spawn-promise": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz",
+ "integrity": "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/malept"
+ },
+ {
+ "type": "tidelift",
+ "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
+ }
+ ],
+ "license": "Apache-2.0",
+ "dependencies": {
+ "cross-spawn": "^7.0.1"
+ },
+ "engines": {
+ "node": ">= 12.13.0"
+ }
+ },
+ "node_modules/@malept/flatpak-bundler": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz",
+ "integrity": "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "fs-extra": "^9.0.0",
+ "lodash": "^4.17.15",
+ "tmp-promise": "^3.0.2"
+ },
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@malept/flatpak-bundler/node_modules/fs-extra": {
+ "version": "9.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz",
+ "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "at-least-node": "^1.0.0",
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@malept/flatpak-bundler/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/@malept/flatpak-bundler/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/@npmcli/agent": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-3.0.0.tgz",
+ "integrity": "sha512-S79NdEgDQd/NGCay6TCoVzXSj74skRZIKJcpJjC5lOq34SZzyI6MqtiiWoiVWoVrTcGjNeC4ipbh1VIHlpfF5Q==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "agent-base": "^7.1.0",
+ "http-proxy-agent": "^7.0.0",
+ "https-proxy-agent": "^7.0.1",
+ "lru-cache": "^10.0.1",
+ "socks-proxy-agent": "^8.0.3"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/@npmcli/agent/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/@npmcli/fs": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-4.0.0.tgz",
+ "integrity": "sha512-/xGlezI6xfGO9NwuJlnwz/K14qD1kCSAGtacBHnGzeAIuJGazcp45KP5NuyARXoKb7cwulAGWVsbeSxdG/cb0Q==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
"node_modules/@octokit/auth-token": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz",
@@ -685,248 +1439,1208 @@
"@octokit/openapi-types": "^19.0.2"
}
},
- "node_modules/@tauri-apps/api": {
- "version": "2.10.1",
- "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.10.1.tgz",
- "integrity": "sha512-hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==",
- "license": "Apache-2.0 OR MIT",
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/tauri"
+ "node_modules/@pkgjs/parseargs": {
+ "version": "0.11.0",
+ "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
+ "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=14"
}
},
- "node_modules/@tauri-apps/cli": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.9.6.tgz",
- "integrity": "sha512-3xDdXL5omQ3sPfBfdC8fCtDKcnyV7OqyzQgfyT5P3+zY6lcPqIYKQBvUasNvppi21RSdfhy44ttvJmftb0PCDw==",
+ "node_modules/@sindresorhus/is": {
+ "version": "4.6.0",
+ "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz",
+ "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==",
"dev": true,
- "license": "Apache-2.0 OR MIT",
- "bin": {
- "tauri": "tauri.js"
- },
+ "license": "MIT",
"engines": {
- "node": ">= 10"
+ "node": ">=10"
},
"funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/tauri"
+ "url": "https://github.com/sindresorhus/is?sponsor=1"
+ }
+ },
+ "node_modules/@standard-schema/spec": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.1.0.tgz",
+ "integrity": "sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@szmarczak/http-timer": {
+ "version": "4.0.6",
+ "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-4.0.6.tgz",
+ "integrity": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "defer-to-connect": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/@types/cacheable-request": {
+ "version": "6.0.3",
+ "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz",
+ "integrity": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/http-cache-semantics": "*",
+ "@types/keyv": "^3.1.4",
+ "@types/node": "*",
+ "@types/responselike": "^1.0.0"
+ }
+ },
+ "node_modules/@types/debug": {
+ "version": "4.1.12",
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/ms": "*"
+ }
+ },
+ "node_modules/@types/fs-extra": {
+ "version": "9.0.13",
+ "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz",
+ "integrity": "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/http-cache-semantics": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
+ "integrity": "sha512-L3LgimLHXtGkWikKnsPg0/VFx9OGZaC+eN1u4r+OB1XRqH3meBIAVC2zr1WdMH+RHmnRkqliQAOHNJ/E0j/e0Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/keyv": {
+ "version": "3.1.4",
+ "resolved": "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz",
+ "integrity": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/ms": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/@types/node": {
+ "version": "24.10.13",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.13.tgz",
+ "integrity": "sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "undici-types": "~7.16.0"
+ }
+ },
+ "node_modules/@types/plist": {
+ "version": "3.0.5",
+ "resolved": "https://registry.npmjs.org/@types/plist/-/plist-3.0.5.tgz",
+ "integrity": "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*",
+ "xmlbuilder": ">=11.0.1"
+ }
+ },
+ "node_modules/@types/responselike": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/@types/responselike/-/responselike-1.0.3.tgz",
+ "integrity": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@types/verror": {
+ "version": "1.10.11",
+ "resolved": "https://registry.npmjs.org/@types/verror/-/verror-1.10.11.tgz",
+ "integrity": "sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/@types/yauzl": {
+ "version": "2.10.3",
+ "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
+ "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "@types/node": "*"
+ }
+ },
+ "node_modules/@xmldom/xmldom": {
+ "version": "0.8.11",
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.11.tgz",
+ "integrity": "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.0.0"
+ }
+ },
+ "node_modules/7zip-bin": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.2.0.tgz",
+ "integrity": "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/abbrev": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-3.0.1.tgz",
+ "integrity": "sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/agent-base": {
+ "version": "7.1.4",
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
+ "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/ajv": {
+ "version": "6.14.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz",
+ "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.1",
+ "fast-json-stable-stringify": "^2.0.0",
+ "json-schema-traverse": "^0.4.1",
+ "uri-js": "^4.2.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ajv-formats": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
+ "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependencies": {
+ "ajv": "^8.0.0"
+ },
+ "peerDependenciesMeta": {
+ "ajv": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/ajv-formats/node_modules/ajv": {
+ "version": "8.18.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
+ "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/ajv-formats/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "license": "MIT"
+ },
+ "node_modules/ajv-keywords": {
+ "version": "3.5.2",
+ "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
+ "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
+ "dev": true,
+ "license": "MIT",
+ "peerDependencies": {
+ "ajv": "^6.9.1"
+ }
+ },
+ "node_modules/ansi-regex": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/ansi-styles": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-convert": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
+ }
+ },
+ "node_modules/app-builder-bin": {
+ "version": "5.0.0-alpha.12",
+ "resolved": "https://registry.npmjs.org/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz",
+ "integrity": "sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/app-builder-lib": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/app-builder-lib/-/app-builder-lib-26.8.1.tgz",
+ "integrity": "sha512-p0Im/Dx5C4tmz8QEE1Yn4MkuPC8PrnlRneMhWJj7BBXQfNTJUshM/bp3lusdEsDbvvfJZpXWnYesgSLvwtM2Zw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@develar/schema-utils": "~2.6.5",
+ "@electron/asar": "3.4.1",
+ "@electron/fuses": "^1.8.0",
+ "@electron/get": "^3.0.0",
+ "@electron/notarize": "2.5.0",
+ "@electron/osx-sign": "1.3.3",
+ "@electron/rebuild": "^4.0.3",
+ "@electron/universal": "2.0.3",
+ "@malept/flatpak-bundler": "^0.4.0",
+ "@types/fs-extra": "9.0.13",
+ "async-exit-hook": "^2.0.1",
+ "builder-util": "26.8.1",
+ "builder-util-runtime": "9.5.1",
+ "chromium-pickle-js": "^0.2.0",
+ "ci-info": "4.3.1",
+ "debug": "^4.3.4",
+ "dotenv": "^16.4.5",
+ "dotenv-expand": "^11.0.6",
+ "ejs": "^3.1.8",
+ "electron-publish": "26.8.1",
+ "fs-extra": "^10.1.0",
+ "hosted-git-info": "^4.1.0",
+ "isbinaryfile": "^5.0.0",
+ "jiti": "^2.4.2",
+ "js-yaml": "^4.1.0",
+ "json5": "^2.2.3",
+ "lazy-val": "^1.0.5",
+ "minimatch": "^10.0.3",
+ "plist": "3.1.0",
+ "proper-lockfile": "^4.1.2",
+ "resedit": "^1.7.0",
+ "semver": "~7.7.3",
+ "tar": "^7.5.7",
+ "temp-file": "^3.4.0",
+ "tiny-async-pool": "1.3.0",
+ "which": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ },
+ "peerDependencies": {
+ "dmg-builder": "26.8.1",
+ "electron-builder-squirrel-windows": "26.8.1"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/@electron/get": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@electron/get/-/get-3.1.0.tgz",
+ "integrity": "sha512-F+nKc0xW+kVbBRhFzaMgPy3KwmuNTYX1fx6+FxxoSnNgwYX6LD7AKBTWkU0MQ6IBoe7dz069CNkR673sPAgkCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "env-paths": "^2.2.0",
+ "fs-extra": "^8.1.0",
+ "got": "^11.8.5",
+ "progress": "^2.0.3",
+ "semver": "^6.2.0",
+ "sumchecker": "^3.0.1"
+ },
+ "engines": {
+ "node": ">=14"
},
"optionalDependencies": {
- "@tauri-apps/cli-darwin-arm64": "2.9.6",
- "@tauri-apps/cli-darwin-x64": "2.9.6",
- "@tauri-apps/cli-linux-arm-gnueabihf": "2.9.6",
- "@tauri-apps/cli-linux-arm64-gnu": "2.9.6",
- "@tauri-apps/cli-linux-arm64-musl": "2.9.6",
- "@tauri-apps/cli-linux-riscv64-gnu": "2.9.6",
- "@tauri-apps/cli-linux-x64-gnu": "2.9.6",
- "@tauri-apps/cli-linux-x64-musl": "2.9.6",
- "@tauri-apps/cli-win32-arm64-msvc": "2.9.6",
- "@tauri-apps/cli-win32-ia32-msvc": "2.9.6",
- "@tauri-apps/cli-win32-x64-msvc": "2.9.6"
+ "global-agent": "^3.0.0"
}
},
- "node_modules/@tauri-apps/cli-darwin-arm64": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.9.6.tgz",
- "integrity": "sha512-gf5no6N9FCk1qMrti4lfwP77JHP5haASZgVbBgpZG7BUepB3fhiLCXGUK8LvuOjP36HivXewjg72LTnPDScnQQ==",
- "cpu": [
- "arm64"
- ],
+ "node_modules/app-builder-lib/node_modules/@electron/get/node_modules/fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
"dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-darwin-x64": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.9.6.tgz",
- "integrity": "sha512-oWh74WmqbERwwrwcueJyY6HYhgCksUc6NT7WKeXyrlY/FPmNgdyQAgcLuTSkhRFuQ6zh4Np1HZpOqCTpeZBDcw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.9.6.tgz",
- "integrity": "sha512-/zde3bFroFsNXOHN204DC2qUxAcAanUjVXXSdEGmhwMUZeAQalNj5cz2Qli2elsRjKN/hVbZOJj0gQ5zaYUjSg==",
- "cpu": [
- "arm"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-arm64-gnu": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.9.6.tgz",
- "integrity": "sha512-pvbljdhp9VOo4RnID5ywSxgBs7qiylTPlK56cTk7InR3kYSTJKYMqv/4Q/4rGo/mG8cVppesKIeBMH42fw6wjg==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-arm64-musl": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.9.6.tgz",
- "integrity": "sha512-02TKUndpodXBCR0oP//6dZWGYcc22Upf2eP27NvC6z0DIqvkBBFziQUcvi2n6SrwTRL0yGgQjkm9K5NIn8s6jw==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-riscv64-gnu": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-riscv64-gnu/-/cli-linux-riscv64-gnu-2.9.6.tgz",
- "integrity": "sha512-fmp1hnulbqzl1GkXl4aTX9fV+ubHw2LqlLH1PE3BxZ11EQk+l/TmiEongjnxF0ie4kV8DQfDNJ1KGiIdWe1GvQ==",
- "cpu": [
- "riscv64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-x64-gnu": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.9.6.tgz",
- "integrity": "sha512-vY0le8ad2KaV1PJr+jCd8fUF9VOjwwQP/uBuTJvhvKTloEwxYA/kAjKK9OpIslGA9m/zcnSo74czI6bBrm2sYA==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-linux-x64-musl": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.9.6.tgz",
- "integrity": "sha512-TOEuB8YCFZTWVDzsO2yW0+zGcoMiPPwcUgdnW1ODnmgfwccpnihDRoks+ABT1e3fHb1ol8QQWsHSCovb3o2ENQ==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-win32-arm64-msvc": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.9.6.tgz",
- "integrity": "sha512-ujmDGMRc4qRLAnj8nNG26Rlz9klJ0I0jmZs2BPpmNNf0gM/rcVHhqbEkAaHPTBVIrtUdf7bGvQAD2pyIiUrBHQ==",
- "cpu": [
- "arm64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-win32-ia32-msvc": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.9.6.tgz",
- "integrity": "sha512-S4pT0yAJgFX8QRCyKA1iKjZ9Q/oPjCZf66A/VlG5Yw54Nnr88J1uBpmenINbXxzyhduWrIXBaUbEY1K80ZbpMg==",
- "cpu": [
- "ia32"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/cli-win32-x64-msvc": {
- "version": "2.9.6",
- "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.9.6.tgz",
- "integrity": "sha512-ldWuWSSkWbKOPjQMJoYVj9wLHcOniv7diyI5UAJ4XsBdtaFB0pKHQsqw/ItUma0VXGC7vB4E9fZjivmxur60aw==",
- "cpu": [
- "x64"
- ],
- "dev": true,
- "license": "Apache-2.0 OR MIT",
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@tauri-apps/plugin-http": {
- "version": "2.5.7",
- "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-http/-/plugin-http-2.5.7.tgz",
- "integrity": "sha512-+F2lEH/c9b0zSsOXKq+5hZNcd9F4IIKCK1T17RqMwpCmVnx2aoqY8yIBccCd25HTYUb3j6NPVbRax/m00hKG8A==",
- "license": "MIT OR Apache-2.0",
+ "license": "MIT",
"dependencies": {
- "@tauri-apps/api": "^2.10.1"
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=6 <7 || >=8"
}
},
+ "node_modules/app-builder-lib/node_modules/@electron/get/node_modules/semver": {
+ "version": "6.3.1",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
+ "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver.js"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/ci-info": {
+ "version": "4.3.1",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.3.1.tgz",
+ "integrity": "sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/fs-extra/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/fs-extra/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/isexe": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.5.tgz",
+ "integrity": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/app-builder-lib/node_modules/which": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz",
+ "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^3.1.1"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/argparse": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
+ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
+ "license": "Python-2.0"
+ },
+ "node_modules/assert-plus": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
+ "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/astral-regex": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz",
+ "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/async": {
+ "version": "3.2.6",
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz",
+ "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/async-exit-hook": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz",
+ "integrity": "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.12.0"
+ }
+ },
+ "node_modules/asynckit": {
+ "version": "0.4.0",
+ "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
+ "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/at-least-node": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz",
+ "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/atomically": {
+ "version": "1.7.0",
+ "resolved": "https://registry.npmjs.org/atomically/-/atomically-1.7.0.tgz",
+ "integrity": "sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.12.0"
+ }
+ },
+ "node_modules/axios": {
+ "version": "1.13.5",
+ "resolved": "https://registry.npmjs.org/axios/-/axios-1.13.5.tgz",
+ "integrity": "sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "follow-redirects": "^1.15.11",
+ "form-data": "^4.0.5",
+ "proxy-from-env": "^1.1.0"
+ }
+ },
+ "node_modules/balanced-match": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.3.tgz",
+ "integrity": "sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/base64-js": {
+ "version": "1.5.1",
+ "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
+ "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
"node_modules/before-after-hook": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz",
"integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==",
"dev": true
},
+ "node_modules/bl": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz",
+ "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "buffer": "^5.5.0",
+ "inherits": "^2.0.4",
+ "readable-stream": "^3.4.0"
+ }
+ },
+ "node_modules/boolean": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz",
+ "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==",
+ "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/brace-expansion": {
+ "version": "5.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.2.tgz",
+ "integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^4.0.2"
+ },
+ "engines": {
+ "node": "20 || >=22"
+ }
+ },
+ "node_modules/buffer": {
+ "version": "5.7.1",
+ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
+ "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT",
+ "dependencies": {
+ "base64-js": "^1.3.1",
+ "ieee754": "^1.1.13"
+ }
+ },
+ "node_modules/buffer-crc32": {
+ "version": "0.2.13",
+ "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
+ "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/buffer-from": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
+ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/builder-util": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/builder-util/-/builder-util-26.8.1.tgz",
+ "integrity": "sha512-pm1lTYbGyc90DHgCDO7eo8Rl4EqKLciayNbZqGziqnH9jrlKe8ZANGdityLZU+pJh16dfzjAx2xQq9McuIPEtw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/debug": "^4.1.6",
+ "7zip-bin": "~5.2.0",
+ "app-builder-bin": "5.0.0-alpha.12",
+ "builder-util-runtime": "9.5.1",
+ "chalk": "^4.1.2",
+ "cross-spawn": "^7.0.6",
+ "debug": "^4.3.4",
+ "fs-extra": "^10.1.0",
+ "http-proxy-agent": "^7.0.0",
+ "https-proxy-agent": "^7.0.0",
+ "js-yaml": "^4.1.0",
+ "sanitize-filename": "^1.6.3",
+ "source-map-support": "^0.5.19",
+ "stat-mode": "^1.0.0",
+ "temp-file": "^3.4.0",
+ "tiny-async-pool": "1.3.0"
+ }
+ },
+ "node_modules/builder-util-runtime": {
+ "version": "9.5.1",
+ "resolved": "https://registry.npmjs.org/builder-util-runtime/-/builder-util-runtime-9.5.1.tgz",
+ "integrity": "sha512-qt41tMfgHTllhResqM5DcnHyDIWNgzHvuY2jDcYP9iaGpkWxTUzV6GQjDeLnlR1/DtdlcsWQbA7sByMpmJFTLQ==",
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.3.4",
+ "sax": "^1.2.4"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ }
+ },
+ "node_modules/builder-util/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/builder-util/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/builder-util/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/bundle-name": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz",
+ "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==",
+ "license": "MIT",
+ "dependencies": {
+ "run-applescript": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cacache": {
+ "version": "19.0.1",
+ "resolved": "https://registry.npmjs.org/cacache/-/cacache-19.0.1.tgz",
+ "integrity": "sha512-hdsUxulXCi5STId78vRVYEtDAjq99ICAUktLTeTYsLoTE6Z8dS0c8pWNCxwdrk9YfJeobDZc2Y186hD/5ZQgFQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/fs": "^4.0.0",
+ "fs-minipass": "^3.0.0",
+ "glob": "^10.2.2",
+ "lru-cache": "^10.0.1",
+ "minipass": "^7.0.3",
+ "minipass-collect": "^2.0.1",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.4",
+ "p-map": "^7.0.2",
+ "ssri": "^12.0.0",
+ "tar": "^7.4.3",
+ "unique-filename": "^4.0.0"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/cacache/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/cacache/node_modules/brace-expansion": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/cacache/node_modules/glob": {
+ "version": "10.5.0",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz",
+ "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==",
+ "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "foreground-child": "^3.1.0",
+ "jackspeak": "^3.1.2",
+ "minimatch": "^9.0.4",
+ "minipass": "^7.1.2",
+ "package-json-from-dist": "^1.0.0",
+ "path-scurry": "^1.11.1"
+ },
+ "bin": {
+ "glob": "dist/esm/bin.mjs"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/cacache/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/cacache/node_modules/minimatch": {
+ "version": "9.0.5",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/cacheable-lookup": {
+ "version": "5.0.4",
+ "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz",
+ "integrity": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10.6.0"
+ }
+ },
+ "node_modules/cacheable-request": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz",
+ "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "clone-response": "^1.0.2",
+ "get-stream": "^5.1.0",
+ "http-cache-semantics": "^4.0.0",
+ "keyv": "^4.0.0",
+ "lowercase-keys": "^2.0.0",
+ "normalize-url": "^6.0.1",
+ "responselike": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/call-bind-apply-helpers": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
+ "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/chalk": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.1.0",
+ "supports-color": "^7.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/chalk?sponsor=1"
+ }
+ },
+ "node_modules/chalk/node_modules/supports-color": {
+ "version": "7.2.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/chownr": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/chromium-pickle-js": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz",
+ "integrity": "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ci-info": {
+ "version": "4.4.0",
+ "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz",
+ "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/sibiraj-s"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cli-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz",
+ "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "restore-cursor": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/cli-spinners": {
+ "version": "2.9.2",
+ "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz",
+ "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cli-truncate": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz",
+ "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "slice-ansi": "^3.0.0",
+ "string-width": "^4.2.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/cliui": {
+ "version": "8.0.1",
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "string-width": "^4.2.0",
+ "strip-ansi": "^6.0.1",
+ "wrap-ansi": "^7.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/clone": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz",
+ "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8"
+ }
+ },
+ "node_modules/clone-response": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.3.tgz",
+ "integrity": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mimic-response": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/color-convert": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "color-name": "~1.1.4"
+ },
+ "engines": {
+ "node": ">=7.0.0"
+ }
+ },
+ "node_modules/color-name": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/combined-stream": {
+ "version": "1.0.8",
+ "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
+ "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "delayed-stream": "~1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.8"
+ }
+ },
+ "node_modules/commander": {
+ "version": "5.1.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz",
+ "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/compare-version": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/compare-version/-/compare-version-0.1.2.tgz",
+ "integrity": "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/concat-map": {
+ "version": "0.0.1",
+ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
+ "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/concurrently": {
+ "version": "9.2.1",
+ "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz",
+ "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "4.1.2",
+ "rxjs": "7.8.2",
+ "shell-quote": "1.8.3",
+ "supports-color": "8.1.1",
+ "tree-kill": "1.2.2",
+ "yargs": "17.7.2"
+ },
+ "bin": {
+ "conc": "dist/bin/concurrently.js",
+ "concurrently": "dist/bin/concurrently.js"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1"
+ }
+ },
+ "node_modules/conf": {
+ "version": "10.2.0",
+ "resolved": "https://registry.npmjs.org/conf/-/conf-10.2.0.tgz",
+ "integrity": "sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==",
+ "license": "MIT",
+ "dependencies": {
+ "ajv": "^8.6.3",
+ "ajv-formats": "^2.1.1",
+ "atomically": "^1.7.0",
+ "debounce-fn": "^4.0.0",
+ "dot-prop": "^6.0.1",
+ "env-paths": "^2.2.1",
+ "json-schema-typed": "^7.0.3",
+ "onetime": "^5.1.2",
+ "pkg-up": "^3.1.0",
+ "semver": "^7.3.5"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/conf/node_modules/ajv": {
+ "version": "8.18.0",
+ "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.18.0.tgz",
+ "integrity": "sha512-PlXPeEWMXMZ7sPYOHqmDyCJzcfNrUr3fGNKtezX14ykXOEIvyK81d+qydx89KY5O71FKMPaQ2vBfBFI5NHR63A==",
+ "license": "MIT",
+ "dependencies": {
+ "fast-deep-equal": "^3.1.3",
+ "fast-uri": "^3.0.1",
+ "json-schema-traverse": "^1.0.0",
+ "require-from-string": "^2.0.2"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/epoberezkin"
+ }
+ },
+ "node_modules/conf/node_modules/json-schema-traverse": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
+ "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
+ "license": "MIT"
+ },
+ "node_modules/core-util-is": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
+ "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/crc": {
+ "version": "3.8.0",
+ "resolved": "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz",
+ "integrity": "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "buffer": "^5.1.0"
+ }
+ },
+ "node_modules/cross-dirname": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/cross-dirname/-/cross-dirname-0.1.0.tgz",
+ "integrity": "sha512-+R08/oI0nl3vfPcqftZRpytksBXDzOUveBq/NBVx0sUp1axwzPQrKinNx5yd5sxPu8j1wIy8AfnVQ+5eFdha6Q==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true
+ },
+ "node_modules/cross-spawn": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
+ "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "path-key": "^3.1.0",
+ "shebang-command": "^2.0.0",
+ "which": "^2.0.1"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
"node_modules/data-uri-to-buffer": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz",
@@ -936,6 +2650,187 @@
"node": ">= 12"
}
},
+ "node_modules/debounce-fn": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/debounce-fn/-/debounce-fn-4.0.0.tgz",
+ "integrity": "sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==",
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/debounce-fn/node_modules/mimic-fn": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-3.1.0.tgz",
+ "integrity": "sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/debug": {
+ "version": "4.4.3",
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
+ "license": "MIT",
+ "dependencies": {
+ "ms": "^2.1.3"
+ },
+ "engines": {
+ "node": ">=6.0"
+ },
+ "peerDependenciesMeta": {
+ "supports-color": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/decompress-response": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz",
+ "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mimic-response": "^3.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/decompress-response/node_modules/mimic-response": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz",
+ "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/default-browser": {
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.5.0.tgz",
+ "integrity": "sha512-H9LMLr5zwIbSxrmvikGuI/5KGhZ8E2zH3stkMgM5LpOWDutGM2JZaj460Udnf1a+946zc7YBgrqEWwbk7zHvGw==",
+ "license": "MIT",
+ "dependencies": {
+ "bundle-name": "^4.1.0",
+ "default-browser-id": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/default-browser-id": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.1.tgz",
+ "integrity": "sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/defaults": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz",
+ "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "clone": "^1.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/defer-to-connect": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz",
+ "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/define-data-property": {
+ "version": "1.1.4",
+ "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
+ "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/define-lazy-prop": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
+ "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/define-properties": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
+ "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "define-data-property": "^1.0.1",
+ "has-property-descriptors": "^1.0.0",
+ "object-keys": "^1.1.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/delayed-stream": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
+ "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
"node_modules/deprecation": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz",
@@ -952,6 +2847,706 @@
"node": ">=8"
}
},
+ "node_modules/detect-node": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz",
+ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/dir-compare": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/dir-compare/-/dir-compare-4.2.0.tgz",
+ "integrity": "sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minimatch": "^3.0.5",
+ "p-limit": "^3.1.0 "
+ }
+ },
+ "node_modules/dir-compare/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/dir-compare/node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/dir-compare/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/dmg-builder": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/dmg-builder/-/dmg-builder-26.8.1.tgz",
+ "integrity": "sha512-glMJgnTreo8CFINujtAhCgN96QAqApDMZ8Vl1r8f0QT8QprvC1UCltV4CcWj20YoIyLZx6IUskaJZ0NV8fokcg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "app-builder-lib": "26.8.1",
+ "builder-util": "26.8.1",
+ "fs-extra": "^10.1.0",
+ "iconv-lite": "^0.6.2",
+ "js-yaml": "^4.1.0"
+ },
+ "optionalDependencies": {
+ "dmg-license": "^1.0.11"
+ }
+ },
+ "node_modules/dmg-builder/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/dmg-builder/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/dmg-builder/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/dmg-license": {
+ "version": "1.0.11",
+ "resolved": "https://registry.npmjs.org/dmg-license/-/dmg-license-1.0.11.tgz",
+ "integrity": "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "dependencies": {
+ "@types/plist": "^3.0.1",
+ "@types/verror": "^1.10.3",
+ "ajv": "^6.10.0",
+ "crc": "^3.8.0",
+ "iconv-corefoundation": "^1.1.7",
+ "plist": "^3.0.4",
+ "smart-buffer": "^4.0.2",
+ "verror": "^1.10.0"
+ },
+ "bin": {
+ "dmg-license": "bin/dmg-license.js"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/dot-prop": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz",
+ "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==",
+ "license": "MIT",
+ "dependencies": {
+ "is-obj": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/dotenv": {
+ "version": "16.6.1",
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dotenv-expand": {
+ "version": "11.0.7",
+ "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-11.0.7.tgz",
+ "integrity": "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "dotenv": "^16.4.5"
+ },
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://dotenvx.com"
+ }
+ },
+ "node_modules/dunder-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
+ "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "gopd": "^1.2.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/eastasianwidth": {
+ "version": "0.2.0",
+ "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
+ "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/ejs": {
+ "version": "3.1.10",
+ "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
+ "integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "jake": "^10.8.5"
+ },
+ "bin": {
+ "ejs": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/electron": {
+ "version": "40.6.0",
+ "resolved": "https://registry.npmjs.org/electron/-/electron-40.6.0.tgz",
+ "integrity": "sha512-ett8W+yOFGDuM0vhJMamYSkrbV3LoaffzJd9GfjI96zRAxyrNqUSKqBpf/WGbQCweDxX2pkUCUfrv4wwKpsFZA==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "dependencies": {
+ "@electron/get": "^2.0.0",
+ "@types/node": "^24.9.0",
+ "extract-zip": "^2.0.1"
+ },
+ "bin": {
+ "electron": "cli.js"
+ },
+ "engines": {
+ "node": ">= 12.20.55"
+ }
+ },
+ "node_modules/electron-builder": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/electron-builder/-/electron-builder-26.8.1.tgz",
+ "integrity": "sha512-uWhx1r74NGpCagG0ULs/P9Nqv2nsoo+7eo4fLUOB8L8MdWltq9odW/uuLXMFCDGnPafknYLZgjNX0ZIFRzOQAw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "app-builder-lib": "26.8.1",
+ "builder-util": "26.8.1",
+ "builder-util-runtime": "9.5.1",
+ "chalk": "^4.1.2",
+ "ci-info": "^4.2.0",
+ "dmg-builder": "26.8.1",
+ "fs-extra": "^10.1.0",
+ "lazy-val": "^1.0.5",
+ "simple-update-notifier": "2.0.0",
+ "yargs": "^17.6.2"
+ },
+ "bin": {
+ "electron-builder": "cli.js",
+ "install-app-deps": "install-app-deps.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/electron-builder-squirrel-windows": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.8.1.tgz",
+ "integrity": "sha512-o288fIdgPLHA76eDrFADHPoo7VyGkDCYbLV1GzndaMSAVBoZrGvM9m2IehdcVMzdAZJ2eV9bgyissQXHv5tGzA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "app-builder-lib": "26.8.1",
+ "builder-util": "26.8.1",
+ "electron-winstaller": "5.4.0"
+ }
+ },
+ "node_modules/electron-builder/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/electron-builder/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/electron-builder/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/electron-publish": {
+ "version": "26.8.1",
+ "resolved": "https://registry.npmjs.org/electron-publish/-/electron-publish-26.8.1.tgz",
+ "integrity": "sha512-q+jrSTIh/Cv4eGZa7oVR+grEJo/FoLMYBAnSL5GCtqwUpr1T+VgKB/dn1pnzxIxqD8S/jP1yilT9VrwCqINR4w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@types/fs-extra": "^9.0.11",
+ "builder-util": "26.8.1",
+ "builder-util-runtime": "9.5.1",
+ "chalk": "^4.1.2",
+ "form-data": "^4.0.5",
+ "fs-extra": "^10.1.0",
+ "lazy-val": "^1.0.5",
+ "mime": "^2.5.2"
+ }
+ },
+ "node_modules/electron-publish/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/electron-publish/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/electron-publish/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/electron-store": {
+ "version": "8.2.0",
+ "resolved": "https://registry.npmjs.org/electron-store/-/electron-store-8.2.0.tgz",
+ "integrity": "sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==",
+ "license": "MIT",
+ "dependencies": {
+ "conf": "^10.2.0",
+ "type-fest": "^2.17.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/electron-store/node_modules/type-fest": {
+ "version": "2.19.0",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz",
+ "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==",
+ "license": "(MIT OR CC0-1.0)",
+ "engines": {
+ "node": ">=12.20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/electron-updater": {
+ "version": "6.8.3",
+ "resolved": "https://registry.npmjs.org/electron-updater/-/electron-updater-6.8.3.tgz",
+ "integrity": "sha512-Z6sgw3jgbikWKXei1ENdqFOxBP0WlXg3TtKfz0rgw2vIZFJUyI4pD7ZN7jrkm7EoMK+tcm/qTnPUdqfZukBlBQ==",
+ "license": "MIT",
+ "dependencies": {
+ "builder-util-runtime": "9.5.1",
+ "fs-extra": "^10.1.0",
+ "js-yaml": "^4.1.0",
+ "lazy-val": "^1.0.5",
+ "lodash.escaperegexp": "^4.1.2",
+ "lodash.isequal": "^4.5.0",
+ "semver": "~7.7.3",
+ "tiny-typed-emitter": "^2.1.0"
+ }
+ },
+ "node_modules/electron-updater/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/electron-updater/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/electron-updater/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/electron-winstaller": {
+ "version": "5.4.0",
+ "resolved": "https://registry.npmjs.org/electron-winstaller/-/electron-winstaller-5.4.0.tgz",
+ "integrity": "sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==",
+ "dev": true,
+ "hasInstallScript": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "@electron/asar": "^3.2.1",
+ "debug": "^4.1.1",
+ "fs-extra": "^7.0.1",
+ "lodash": "^4.17.21",
+ "temp": "^0.9.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ },
+ "optionalDependencies": {
+ "@electron/windows-sign": "^1.1.2"
+ }
+ },
+ "node_modules/electron-winstaller/node_modules/fs-extra": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
+ "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "graceful-fs": "^4.1.2",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=6 <7 || >=8"
+ }
+ },
+ "node_modules/emoji-regex": {
+ "version": "8.0.0",
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/encoding": {
+ "version": "0.1.13",
+ "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz",
+ "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "iconv-lite": "^0.6.2"
+ }
+ },
+ "node_modules/end-of-stream": {
+ "version": "1.4.5",
+ "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz",
+ "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "once": "^1.4.0"
+ }
+ },
+ "node_modules/env-paths": {
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz",
+ "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/err-code": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz",
+ "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/es-define-property": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
+ "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-errors": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
+ "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-object-atoms": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
+ "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es-set-tostringtag": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
+ "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "es-errors": "^1.3.0",
+ "get-intrinsic": "^1.2.6",
+ "has-tostringtag": "^1.0.2",
+ "hasown": "^2.0.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/es6-error": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
+ "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/escalade": {
+ "version": "3.2.0",
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/escape-string-regexp": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
+ "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/exponential-backoff": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.3.tgz",
+ "integrity": "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==",
+ "dev": true,
+ "license": "Apache-2.0"
+ },
+ "node_modules/extract-zip": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
+ "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "debug": "^4.1.1",
+ "get-stream": "^5.1.0",
+ "yauzl": "^2.10.0"
+ },
+ "bin": {
+ "extract-zip": "cli.js"
+ },
+ "engines": {
+ "node": ">= 10.17.0"
+ },
+ "optionalDependencies": {
+ "@types/yauzl": "^2.9.1"
+ }
+ },
+ "node_modules/extsprintf": {
+ "version": "1.4.1",
+ "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.1.tgz",
+ "integrity": "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==",
+ "dev": true,
+ "engines": [
+ "node >=0.6.0"
+ ],
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/fast-deep-equal": {
+ "version": "3.1.3",
+ "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
+ "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
+ "license": "MIT"
+ },
+ "node_modules/fast-json-stable-stringify": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
+ "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/fast-uri": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz",
+ "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==",
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/fastify"
+ },
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/fastify"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/fd-slicer": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
+ "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "pend": "~1.2.0"
+ }
+ },
+ "node_modules/fdir": {
+ "version": "6.5.0",
+ "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
+ "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "peerDependencies": {
+ "picomatch": "^3 || ^4"
+ },
+ "peerDependenciesMeta": {
+ "picomatch": {
+ "optional": true
+ }
+ }
+ },
"node_modules/fetch-blob": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz",
@@ -975,6 +3570,126 @@
"node": "^12.20 || >= 14.13"
}
},
+ "node_modules/filelist": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz",
+ "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "minimatch": "^5.0.1"
+ }
+ },
+ "node_modules/filelist/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/filelist/node_modules/brace-expansion": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
+ "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0"
+ }
+ },
+ "node_modules/filelist/node_modules/minimatch": {
+ "version": "5.1.6",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
+ "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^2.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/find-up": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
+ "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
+ "license": "MIT",
+ "dependencies": {
+ "locate-path": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/follow-redirects": {
+ "version": "1.15.11",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.11.tgz",
+ "integrity": "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/RubenVerborgh"
+ }
+ ],
+ "license": "MIT",
+ "engines": {
+ "node": ">=4.0"
+ },
+ "peerDependenciesMeta": {
+ "debug": {
+ "optional": true
+ }
+ }
+ },
+ "node_modules/foreground-child": {
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
+ "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "cross-spawn": "^7.0.6",
+ "signal-exit": "^4.0.1"
+ },
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/foreground-child/node_modules/signal-exit": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
+ "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=14"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/form-data": {
+ "version": "4.0.5",
+ "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz",
+ "integrity": "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "asynckit": "^0.4.0",
+ "combined-stream": "^1.0.8",
+ "es-set-tostringtag": "^2.1.0",
+ "hasown": "^2.0.2",
+ "mime-types": "^2.1.12"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
"node_modules/formdata-polyfill": {
"version": "4.0.10",
"resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz",
@@ -987,6 +3702,544 @@
"node": ">=12.20.0"
}
},
+ "node_modules/fs-extra": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz",
+ "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^4.0.0",
+ "universalify": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=6 <7 || >=8"
+ }
+ },
+ "node_modules/fs-minipass": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz",
+ "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.3"
+ },
+ "engines": {
+ "node": "^14.17.0 || ^16.13.0 || >=18.0.0"
+ }
+ },
+ "node_modules/fs.realpath": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
+ "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/function-bind": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
+ "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-caller-file": {
+ "version": "2.0.5",
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "6.* || 8.* || >= 10.*"
+ }
+ },
+ "node_modules/get-intrinsic": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
+ "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "call-bind-apply-helpers": "^1.0.2",
+ "es-define-property": "^1.0.1",
+ "es-errors": "^1.3.0",
+ "es-object-atoms": "^1.1.1",
+ "function-bind": "^1.1.2",
+ "get-proto": "^1.0.1",
+ "gopd": "^1.2.0",
+ "has-symbols": "^1.1.0",
+ "hasown": "^2.0.2",
+ "math-intrinsics": "^1.1.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/get-proto": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
+ "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "dunder-proto": "^1.0.1",
+ "es-object-atoms": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/get-stream": {
+ "version": "5.2.0",
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "pump": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/glob/node_modules/balanced-match": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
+ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/glob/node_modules/brace-expansion": {
+ "version": "1.1.12",
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
+ "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "balanced-match": "^1.0.0",
+ "concat-map": "0.0.1"
+ }
+ },
+ "node_modules/glob/node_modules/minimatch": {
+ "version": "3.1.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
+ "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "brace-expansion": "^1.1.7"
+ },
+ "engines": {
+ "node": "*"
+ }
+ },
+ "node_modules/global-agent": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/global-agent/-/global-agent-3.0.0.tgz",
+ "integrity": "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "optional": true,
+ "dependencies": {
+ "boolean": "^3.0.1",
+ "es6-error": "^4.1.1",
+ "matcher": "^3.0.0",
+ "roarr": "^2.15.3",
+ "semver": "^7.3.2",
+ "serialize-error": "^7.0.1"
+ },
+ "engines": {
+ "node": ">=10.0"
+ }
+ },
+ "node_modules/globalthis": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
+ "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "define-properties": "^1.2.1",
+ "gopd": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/gopd": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
+ "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/got": {
+ "version": "11.8.6",
+ "resolved": "https://registry.npmjs.org/got/-/got-11.8.6.tgz",
+ "integrity": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@sindresorhus/is": "^4.0.0",
+ "@szmarczak/http-timer": "^4.0.5",
+ "@types/cacheable-request": "^6.0.1",
+ "@types/responselike": "^1.0.0",
+ "cacheable-lookup": "^5.0.3",
+ "cacheable-request": "^7.0.2",
+ "decompress-response": "^6.0.0",
+ "http2-wrapper": "^1.0.0-beta.5.2",
+ "lowercase-keys": "^2.0.0",
+ "p-cancelable": "^2.0.0",
+ "responselike": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=10.19.0"
+ },
+ "funding": {
+ "url": "https://github.com/sindresorhus/got?sponsor=1"
+ }
+ },
+ "node_modules/graceful-fs": {
+ "version": "4.2.11",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
+ "license": "ISC"
+ },
+ "node_modules/has-flag": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/has-property-descriptors": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
+ "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "es-define-property": "^1.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-symbols": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
+ "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/has-tostringtag": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
+ "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-symbols": "^1.0.3"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/hasown": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
+ "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "function-bind": "^1.1.2"
+ },
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/hosted-git-info": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz",
+ "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "lru-cache": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/http-cache-semantics": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz",
+ "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==",
+ "dev": true,
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/http-proxy-agent": {
+ "version": "7.0.2",
+ "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
+ "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^7.1.0",
+ "debug": "^4.3.4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/http2-wrapper": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-1.0.3.tgz",
+ "integrity": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "quick-lru": "^5.1.1",
+ "resolve-alpn": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=10.19.0"
+ }
+ },
+ "node_modules/https-proxy-agent": {
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^7.1.2",
+ "debug": "4"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/iconv-corefoundation": {
+ "version": "1.1.7",
+ "resolved": "https://registry.npmjs.org/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz",
+ "integrity": "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "dependencies": {
+ "cli-truncate": "^2.1.0",
+ "node-addon-api": "^1.6.3"
+ },
+ "engines": {
+ "node": "^8.11.2 || >=10"
+ }
+ },
+ "node_modules/iconv-lite": {
+ "version": "0.6.3",
+ "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
+ "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safer-buffer": ">= 2.1.2 < 3.0.0"
+ },
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/ieee754": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz",
+ "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "BSD-3-Clause"
+ },
+ "node_modules/imurmurhash": {
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
+ "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.8.19"
+ }
+ },
+ "node_modules/inflight": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
+ "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
+ "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "once": "^1.3.0",
+ "wrappy": "1"
+ }
+ },
+ "node_modules/inherits": {
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
+ "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/ip-address": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz",
+ "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 12"
+ }
+ },
+ "node_modules/is-docker": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
+ "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
+ "license": "MIT",
+ "bin": {
+ "is-docker": "cli.js"
+ },
+ "engines": {
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-fullwidth-code-point": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-in-ssh": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-in-ssh/-/is-in-ssh-1.0.0.tgz",
+ "integrity": "sha512-jYa6Q9rH90kR1vKB6NM7qqd1mge3Fx4Dhw5TVlK1MUBqhEOuCagrEHMevNuCcbECmXZ0ThXkRm+Ymr51HwEPAw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-inside-container": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
+ "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
+ "license": "MIT",
+ "dependencies": {
+ "is-docker": "^3.0.0"
+ },
+ "bin": {
+ "is-inside-container": "cli.js"
+ },
+ "engines": {
+ "node": ">=14.16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-interactive": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz",
+ "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/is-obj": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz",
+ "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
"node_modules/is-plain-object": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz",
@@ -996,6 +4249,590 @@
"node": ">=0.10.0"
}
},
+ "node_modules/is-unicode-supported": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
+ "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/is-wsl": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.1.tgz",
+ "integrity": "sha512-e6rvdUCiQCAuumZslxRJWR/Doq4VpPR82kqclvcS0efgt430SlGIk05vdCN58+VrzgtIcfNODjozVielycD4Sw==",
+ "license": "MIT",
+ "dependencies": {
+ "is-inside-container": "^1.0.0"
+ },
+ "engines": {
+ "node": ">=16"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/isbinaryfile": {
+ "version": "5.0.7",
+ "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.7.tgz",
+ "integrity": "sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 18.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/gjtorikian/"
+ }
+ },
+ "node_modules/isexe": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
+ "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/jackspeak": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/cliui": "^8.0.2"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ },
+ "optionalDependencies": {
+ "@pkgjs/parseargs": "^0.11.0"
+ }
+ },
+ "node_modules/jake": {
+ "version": "10.9.4",
+ "resolved": "https://registry.npmjs.org/jake/-/jake-10.9.4.tgz",
+ "integrity": "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "async": "^3.2.6",
+ "filelist": "^1.0.4",
+ "picocolors": "^1.1.1"
+ },
+ "bin": {
+ "jake": "bin/cli.js"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/jiti": {
+ "version": "2.6.1",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "jiti": "lib/jiti-cli.mjs"
+ }
+ },
+ "node_modules/joi": {
+ "version": "18.0.2",
+ "resolved": "https://registry.npmjs.org/joi/-/joi-18.0.2.tgz",
+ "integrity": "sha512-RuCOQMIt78LWnktPoeBL0GErkNaJPTBGcYuyaBvUOQSpcpcLfWrHPPihYdOGbV5pam9VTWbeoF7TsGiHugcjGA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "dependencies": {
+ "@hapi/address": "^5.1.1",
+ "@hapi/formula": "^3.0.2",
+ "@hapi/hoek": "^11.0.7",
+ "@hapi/pinpoint": "^2.0.1",
+ "@hapi/tlds": "^1.1.1",
+ "@hapi/topo": "^6.0.2",
+ "@standard-schema/spec": "^1.0.0"
+ },
+ "engines": {
+ "node": ">= 20"
+ }
+ },
+ "node_modules/js-yaml": {
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz",
+ "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==",
+ "license": "MIT",
+ "dependencies": {
+ "argparse": "^2.0.1"
+ },
+ "bin": {
+ "js-yaml": "bin/js-yaml.js"
+ }
+ },
+ "node_modules/json-buffer": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
+ "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-schema-traverse": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
+ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/json-schema-typed": {
+ "version": "7.0.3",
+ "resolved": "https://registry.npmjs.org/json-schema-typed/-/json-schema-typed-7.0.3.tgz",
+ "integrity": "sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==",
+ "license": "BSD-2-Clause"
+ },
+ "node_modules/json-stringify-safe": {
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
+ "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
+ "dev": true,
+ "license": "ISC",
+ "optional": true
+ },
+ "node_modules/json5": {
+ "version": "2.2.3",
+ "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
+ "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "json5": "lib/cli.js"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/jsonfile": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
+ "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==",
+ "dev": true,
+ "license": "MIT",
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/keyv": {
+ "version": "4.5.4",
+ "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
+ "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "json-buffer": "3.0.1"
+ }
+ },
+ "node_modules/lazy-val": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/lazy-val/-/lazy-val-1.0.5.tgz",
+ "integrity": "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==",
+ "license": "MIT"
+ },
+ "node_modules/locate-path": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
+ "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
+ "license": "MIT",
+ "dependencies": {
+ "p-locate": "^3.0.0",
+ "path-exists": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/lodash": {
+ "version": "4.17.23",
+ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz",
+ "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/lodash.escaperegexp": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz",
+ "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==",
+ "license": "MIT"
+ },
+ "node_modules/lodash.isequal": {
+ "version": "4.5.0",
+ "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz",
+ "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==",
+ "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.",
+ "license": "MIT"
+ },
+ "node_modules/log-symbols": {
+ "version": "4.1.0",
+ "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
+ "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "chalk": "^4.1.0",
+ "is-unicode-supported": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/lowercase-keys": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-2.0.0.tgz",
+ "integrity": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/lru-cache": {
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
+ "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/make-fetch-happen": {
+ "version": "14.0.3",
+ "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-14.0.3.tgz",
+ "integrity": "sha512-QMjGbFTP0blj97EeidG5hk/QhKQ3T4ICckQGLgz38QF7Vgbk6e6FTARN8KhKxyBbWn8R0HU+bnw8aSoFPD4qtQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "@npmcli/agent": "^3.0.0",
+ "cacache": "^19.0.1",
+ "http-cache-semantics": "^4.1.1",
+ "minipass": "^7.0.2",
+ "minipass-fetch": "^4.0.0",
+ "minipass-flush": "^1.0.5",
+ "minipass-pipeline": "^1.2.4",
+ "negotiator": "^1.0.0",
+ "proc-log": "^5.0.0",
+ "promise-retry": "^2.0.1",
+ "ssri": "^12.0.0"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/matcher": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/matcher/-/matcher-3.0.0.tgz",
+ "integrity": "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "escape-string-regexp": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/math-intrinsics": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
+ "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
+ "node_modules/mime": {
+ "version": "2.6.0",
+ "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz",
+ "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "mime": "cli.js"
+ },
+ "engines": {
+ "node": ">=4.0.0"
+ }
+ },
+ "node_modules/mime-db": {
+ "version": "1.52.0",
+ "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
+ "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mime-types": {
+ "version": "2.1.35",
+ "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
+ "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "mime-db": "1.52.0"
+ },
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/mimic-fn": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
+ "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/mimic-response": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz",
+ "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/minimatch": {
+ "version": "10.2.2",
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.2.tgz",
+ "integrity": "sha512-+G4CpNBxa5MprY+04MbgOw1v7So6n5JY166pFi9KfYwT78fxScCeSNQSNzp6dpPSW2rONOps6Ocam1wFhCgoVw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "brace-expansion": "^5.0.2"
+ },
+ "engines": {
+ "node": "18 || 20 || >=22"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/minimist": {
+ "version": "1.2.8",
+ "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
+ "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
+ "dev": true,
+ "license": "MIT",
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/minipass": {
+ "version": "7.1.3",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz",
+ "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/minipass-collect": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz",
+ "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.3"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.17"
+ }
+ },
+ "node_modules/minipass-fetch": {
+ "version": "4.0.1",
+ "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-4.0.1.tgz",
+ "integrity": "sha512-j7U11C5HXigVuutxebFadoYBbd7VSdZWggSe64NVdvWNBqGAiXPL2QVCehjmw7lY1oF9gOllYbORh+hiNgfPgQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minipass": "^7.0.3",
+ "minipass-sized": "^1.0.3",
+ "minizlib": "^3.0.1"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ },
+ "optionalDependencies": {
+ "encoding": "^0.1.13"
+ }
+ },
+ "node_modules/minipass-flush": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz",
+ "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/minipass-flush/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minipass-pipeline": {
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz",
+ "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minipass-pipeline/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minipass-sized": {
+ "version": "1.0.3",
+ "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz",
+ "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minipass-sized/node_modules/minipass": {
+ "version": "3.3.6",
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz",
+ "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "yallist": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/minizlib": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
+ "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "minipass": "^7.1.2"
+ },
+ "engines": {
+ "node": ">= 18"
+ }
+ },
+ "node_modules/mkdirp": {
+ "version": "0.5.6",
+ "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
+ "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "minimist": "^1.2.6"
+ },
+ "bin": {
+ "mkdirp": "bin/cmd.js"
+ }
+ },
+ "node_modules/ms": {
+ "version": "2.1.3",
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
+ "license": "MIT"
+ },
+ "node_modules/negotiator": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
+ "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.6"
+ }
+ },
+ "node_modules/node-abi": {
+ "version": "4.26.0",
+ "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-4.26.0.tgz",
+ "integrity": "sha512-8QwIZqikRvDIkXS2S93LjzhsSPJuIbfaMETWH+Bx8oOT9Sa9UsUtBFQlc3gBNd1+QINjaTloitXr1W3dQLi9Iw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.6.3"
+ },
+ "engines": {
+ "node": ">=22.12.0"
+ }
+ },
+ "node_modules/node-addon-api": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-1.7.2.tgz",
+ "integrity": "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/node-api-version": {
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/node-api-version/-/node-api-version-0.2.1.tgz",
+ "integrity": "sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.3.5"
+ }
+ },
"node_modules/node-domexception": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz",
@@ -1033,6 +4870,97 @@
"url": "https://opencollective.com/node-fetch"
}
},
+ "node_modules/node-gyp": {
+ "version": "11.5.0",
+ "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-11.5.0.tgz",
+ "integrity": "sha512-ra7Kvlhxn5V9Slyus0ygMa2h+UqExPqUIkfk7Pc8QTLT956JLSy51uWFwHtIYy0vI8cB4BDhc/S03+880My/LQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "env-paths": "^2.2.0",
+ "exponential-backoff": "^3.1.1",
+ "graceful-fs": "^4.2.6",
+ "make-fetch-happen": "^14.0.3",
+ "nopt": "^8.0.0",
+ "proc-log": "^5.0.0",
+ "semver": "^7.3.5",
+ "tar": "^7.4.3",
+ "tinyglobby": "^0.2.12",
+ "which": "^5.0.0"
+ },
+ "bin": {
+ "node-gyp": "bin/node-gyp.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/node-gyp/node_modules/isexe": {
+ "version": "3.1.5",
+ "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.5.tgz",
+ "integrity": "sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/node-gyp/node_modules/which": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/which/-/which-5.0.0.tgz",
+ "integrity": "sha512-JEdGzHwwkrbWoGOlIHqQ5gtprKGOenpDHpxE9zVR1bWbOtYRyPPHMe9FaP6x61CmNaTThSkb0DAJte5jD+DmzQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^3.1.1"
+ },
+ "bin": {
+ "node-which": "bin/which.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/nopt": {
+ "version": "8.1.0",
+ "resolved": "https://registry.npmjs.org/nopt/-/nopt-8.1.0.tgz",
+ "integrity": "sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "abbrev": "^3.0.0"
+ },
+ "bin": {
+ "nopt": "bin/nopt.js"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/normalize-url": {
+ "version": "6.1.0",
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz",
+ "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/object-keys": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
+ "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "engines": {
+ "node": ">= 0.4"
+ }
+ },
"node_modules/once": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
@@ -1042,6 +4970,269 @@
"wrappy": "1"
}
},
+ "node_modules/onetime": {
+ "version": "5.1.2",
+ "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
+ "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
+ "license": "MIT",
+ "dependencies": {
+ "mimic-fn": "^2.1.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/open": {
+ "version": "11.0.0",
+ "resolved": "https://registry.npmjs.org/open/-/open-11.0.0.tgz",
+ "integrity": "sha512-smsWv2LzFjP03xmvFoJ331ss6h+jixfA4UUV/Bsiyuu4YJPfN+FIQGOIiv4w9/+MoHkfkJ22UIaQWRVFRfH6Vw==",
+ "license": "MIT",
+ "dependencies": {
+ "default-browser": "^5.4.0",
+ "define-lazy-prop": "^3.0.0",
+ "is-in-ssh": "^1.0.0",
+ "is-inside-container": "^1.0.0",
+ "powershell-utils": "^0.1.0",
+ "wsl-utils": "^0.3.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/ora": {
+ "version": "5.4.1",
+ "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz",
+ "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "bl": "^4.1.0",
+ "chalk": "^4.1.0",
+ "cli-cursor": "^3.1.0",
+ "cli-spinners": "^2.5.0",
+ "is-interactive": "^1.0.0",
+ "is-unicode-supported": "^0.1.0",
+ "log-symbols": "^4.1.0",
+ "strip-ansi": "^6.0.0",
+ "wcwidth": "^1.0.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-cancelable": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-2.1.1.tgz",
+ "integrity": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/p-limit": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
+ "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "yocto-queue": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-locate": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
+ "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
+ "license": "MIT",
+ "dependencies": {
+ "p-limit": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/p-locate/node_modules/p-limit": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
+ "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
+ "license": "MIT",
+ "dependencies": {
+ "p-try": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=6"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-map": {
+ "version": "7.0.4",
+ "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.4.tgz",
+ "integrity": "sha512-tkAQEw8ysMzmkhgw8k+1U/iPhWNhykKnSk4Rd5zLoPJCuJaGRPo6YposrZgaxHKzDHdDWWZvE/Sk7hsL2X/CpQ==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/p-try": {
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
+ "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/package-json-from-dist": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
+ "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0"
+ },
+ "node_modules/path-exists": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
+ "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=4"
+ }
+ },
+ "node_modules/path-is-absolute": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
+ "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/path-key": {
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
+ "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/path-scurry": {
+ "version": "1.11.1",
+ "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
+ "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "lru-cache": "^10.2.0",
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
+ },
+ "engines": {
+ "node": ">=16 || 14 >=14.18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
+ "node_modules/path-scurry/node_modules/lru-cache": {
+ "version": "10.4.3",
+ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
+ "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/pe-library": {
+ "version": "0.4.1",
+ "resolved": "https://registry.npmjs.org/pe-library/-/pe-library-0.4.1.tgz",
+ "integrity": "sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12",
+ "npm": ">=6"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/jet2jet"
+ }
+ },
+ "node_modules/pend": {
+ "version": "1.2.0",
+ "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/picocolors": {
+ "version": "1.1.1",
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/picomatch": {
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
+ "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=12"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/jonschlinkert"
+ }
+ },
+ "node_modules/pkg-up": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz",
+ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==",
+ "license": "MIT",
+ "dependencies": {
+ "find-up": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/plist": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/plist/-/plist-3.1.0.tgz",
+ "integrity": "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "@xmldom/xmldom": "^0.8.8",
+ "base64-js": "^1.5.1",
+ "xmlbuilder": "^15.1.1"
+ },
+ "engines": {
+ "node": ">=10.4.0"
+ }
+ },
"node_modules/png2icons": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/png2icons/-/png2icons-2.0.1.tgz",
@@ -1052,11 +5243,351 @@
"png2icons": "png2icons-cli.js"
}
},
+ "node_modules/postject": {
+ "version": "1.0.0-alpha.6",
+ "resolved": "https://registry.npmjs.org/postject/-/postject-1.0.0-alpha.6.tgz",
+ "integrity": "sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "dependencies": {
+ "commander": "^9.4.0"
+ },
+ "bin": {
+ "postject": "dist/cli.js"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/postject/node_modules/commander": {
+ "version": "9.5.0",
+ "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz",
+ "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "peer": true,
+ "engines": {
+ "node": "^12.20.0 || >=14"
+ }
+ },
+ "node_modules/powershell-utils": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/powershell-utils/-/powershell-utils-0.1.0.tgz",
+ "integrity": "sha512-dM0jVuXJPsDN6DvRpea484tCUaMiXWjuCn++HGTqUWzGDjv5tZkEZldAJ/UMlqRYGFrD/etByo4/xOuC/snX2A==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/proc-log": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-5.0.0.tgz",
+ "integrity": "sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/progress": {
+ "version": "2.0.3",
+ "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
+ "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.4.0"
+ }
+ },
+ "node_modules/promise-retry": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz",
+ "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "err-code": "^2.0.2",
+ "retry": "^0.12.0"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/proper-lockfile": {
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz",
+ "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.4",
+ "retry": "^0.12.0",
+ "signal-exit": "^3.0.2"
+ }
+ },
+ "node_modules/proxy-from-env": {
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/pump": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz",
+ "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "end-of-stream": "^1.1.0",
+ "once": "^1.3.1"
+ }
+ },
+ "node_modules/punycode": {
+ "version": "2.3.1",
+ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
+ "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=6"
+ }
+ },
+ "node_modules/quick-lru": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz",
+ "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/read-binary-file-arch": {
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz",
+ "integrity": "sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "debug": "^4.3.4"
+ },
+ "bin": {
+ "read-binary-file-arch": "cli.js"
+ }
+ },
+ "node_modules/readable-stream": {
+ "version": "3.6.2",
+ "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz",
+ "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "inherits": "^2.0.3",
+ "string_decoder": "^1.1.1",
+ "util-deprecate": "^1.0.1"
+ },
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/require-directory": {
+ "version": "2.1.1",
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/require-from-string": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
+ "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/resedit": {
+ "version": "1.7.2",
+ "resolved": "https://registry.npmjs.org/resedit/-/resedit-1.7.2.tgz",
+ "integrity": "sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "pe-library": "^0.4.1"
+ },
+ "engines": {
+ "node": ">=12",
+ "npm": ">=6"
+ },
+ "funding": {
+ "type": "github",
+ "url": "https://github.com/sponsors/jet2jet"
+ }
+ },
+ "node_modules/resolve-alpn": {
+ "version": "1.2.1",
+ "resolved": "https://registry.npmjs.org/resolve-alpn/-/resolve-alpn-1.2.1.tgz",
+ "integrity": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/responselike": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/responselike/-/responselike-2.0.1.tgz",
+ "integrity": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "lowercase-keys": "^2.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/restore-cursor": {
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz",
+ "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "onetime": "^5.1.0",
+ "signal-exit": "^3.0.2"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/retry": {
+ "version": "0.12.0",
+ "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz",
+ "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4"
+ }
+ },
+ "node_modules/rimraf": {
+ "version": "2.6.3",
+ "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
+ "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
+ "deprecated": "Rimraf versions prior to v4 are no longer supported",
+ "dev": true,
+ "license": "ISC",
+ "peer": true,
+ "dependencies": {
+ "glob": "^7.1.3"
+ },
+ "bin": {
+ "rimraf": "bin.js"
+ }
+ },
+ "node_modules/roarr": {
+ "version": "2.15.4",
+ "resolved": "https://registry.npmjs.org/roarr/-/roarr-2.15.4.tgz",
+ "integrity": "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "optional": true,
+ "dependencies": {
+ "boolean": "^3.0.1",
+ "detect-node": "^2.0.4",
+ "globalthis": "^1.0.1",
+ "json-stringify-safe": "^5.0.1",
+ "semver-compare": "^1.0.0",
+ "sprintf-js": "^1.1.2"
+ },
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/run-applescript": {
+ "version": "7.1.0",
+ "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.1.0.tgz",
+ "integrity": "sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==",
+ "license": "MIT",
+ "engines": {
+ "node": ">=18"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/rxjs": {
+ "version": "7.8.2",
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
+ "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "tslib": "^2.1.0"
+ }
+ },
+ "node_modules/safe-buffer": {
+ "version": "5.2.1",
+ "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
+ "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
+ "dev": true,
+ "funding": [
+ {
+ "type": "github",
+ "url": "https://github.com/sponsors/feross"
+ },
+ {
+ "type": "patreon",
+ "url": "https://www.patreon.com/feross"
+ },
+ {
+ "type": "consulting",
+ "url": "https://feross.org/support"
+ }
+ ],
+ "license": "MIT"
+ },
+ "node_modules/safer-buffer": {
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
+ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/sanitize-filename": {
+ "version": "1.6.3",
+ "resolved": "https://registry.npmjs.org/sanitize-filename/-/sanitize-filename-1.6.3.tgz",
+ "integrity": "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==",
+ "dev": true,
+ "license": "WTFPL OR ISC",
+ "dependencies": {
+ "truncate-utf8-bytes": "^1.0.0"
+ }
+ },
+ "node_modules/sax": {
+ "version": "1.4.4",
+ "resolved": "https://registry.npmjs.org/sax/-/sax-1.4.4.tgz",
+ "integrity": "sha512-1n3r/tGXO6b6VXMdFT54SHzT9ytu9yr7TaELowdYpMqY/Ao7EnlQGmAQ1+RatX7Tkkdm6hONI2owqNx2aZj5Sw==",
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=11.0.0"
+ }
+ },
"node_modules/semver": {
"version": "7.7.3",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz",
"integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==",
- "dev": true,
"license": "ISC",
"bin": {
"semver": "bin/semver.js"
@@ -1065,6 +5596,31 @@
"node": ">=10"
}
},
+ "node_modules/semver-compare": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz",
+ "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true
+ },
+ "node_modules/serialize-error": {
+ "version": "7.0.1",
+ "resolved": "https://registry.npmjs.org/serialize-error/-/serialize-error-7.0.1.tgz",
+ "integrity": "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "type-fest": "^0.13.1"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/sharp": {
"version": "0.34.5",
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
@@ -1110,13 +5666,448 @@
"@img/sharp-win32-x64": "0.34.5"
}
},
+ "node_modules/shebang-command": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
+ "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "shebang-regex": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shebang-regex": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
+ "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/shell-quote": {
+ "version": "1.8.3",
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz",
+ "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 0.4"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/ljharb"
+ }
+ },
+ "node_modules/signal-exit": {
+ "version": "3.0.7",
+ "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
+ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/simple-update-notifier": {
+ "version": "2.0.0",
+ "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
+ "integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^7.5.3"
+ },
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/slice-ansi": {
+ "version": "3.0.0",
+ "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz",
+ "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "astral-regex": "^2.0.0",
+ "is-fullwidth-code-point": "^3.0.0"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/smart-buffer": {
+ "version": "4.2.0",
+ "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
+ "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6.0.0",
+ "npm": ">= 3.0.0"
+ }
+ },
+ "node_modules/socks": {
+ "version": "2.8.7",
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz",
+ "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ip-address": "^10.0.1",
+ "smart-buffer": "^4.2.0"
+ },
+ "engines": {
+ "node": ">= 10.0.0",
+ "npm": ">= 3.0.0"
+ }
+ },
+ "node_modules/socks-proxy-agent": {
+ "version": "8.0.5",
+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
+ "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "agent-base": "^7.1.2",
+ "debug": "^4.3.4",
+ "socks": "^2.8.3"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+ },
+ "node_modules/source-map": {
+ "version": "0.6.1",
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
+ "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "engines": {
+ "node": ">=0.10.0"
+ }
+ },
+ "node_modules/source-map-support": {
+ "version": "0.5.21",
+ "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
+ "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "buffer-from": "^1.0.0",
+ "source-map": "^0.6.0"
+ }
+ },
+ "node_modules/sprintf-js": {
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
+ "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
+ "dev": true,
+ "license": "BSD-3-Clause",
+ "optional": true
+ },
+ "node_modules/ssri": {
+ "version": "12.0.0",
+ "resolved": "https://registry.npmjs.org/ssri/-/ssri-12.0.0.tgz",
+ "integrity": "sha512-S7iGNosepx9RadX82oimUkvr0Ct7IjJbEbs4mJcTxst8um95J3sDYU1RBEOvdu6oL1Wek2ODI5i4MAw+dZ6cAQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "minipass": "^7.0.3"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/stat-mode": {
+ "version": "1.0.0",
+ "resolved": "https://registry.npmjs.org/stat-mode/-/stat-mode-1.0.0.tgz",
+ "integrity": "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 6"
+ }
+ },
+ "node_modules/string_decoder": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz",
+ "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "safe-buffer": "~5.2.0"
+ }
+ },
+ "node_modules/string-width": {
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/string-width-cjs": {
+ "name": "string-width",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "emoji-regex": "^8.0.0",
+ "is-fullwidth-code-point": "^3.0.0",
+ "strip-ansi": "^6.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi": {
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/strip-ansi-cjs": {
+ "name": "strip-ansi",
+ "version": "6.0.1",
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-regex": "^5.0.1"
+ },
+ "engines": {
+ "node": ">=8"
+ }
+ },
+ "node_modules/sumchecker": {
+ "version": "3.0.1",
+ "resolved": "https://registry.npmjs.org/sumchecker/-/sumchecker-3.0.1.tgz",
+ "integrity": "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==",
+ "dev": true,
+ "license": "Apache-2.0",
+ "dependencies": {
+ "debug": "^4.1.0"
+ },
+ "engines": {
+ "node": ">= 8.0"
+ }
+ },
+ "node_modules/supports-color": {
+ "version": "8.1.1",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "has-flag": "^4.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
+ }
+ },
+ "node_modules/tar": {
+ "version": "7.5.9",
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.9.tgz",
+ "integrity": "sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "dependencies": {
+ "@isaacs/fs-minipass": "^4.0.0",
+ "chownr": "^3.0.0",
+ "minipass": "^7.1.2",
+ "minizlib": "^3.1.0",
+ "yallist": "^5.0.0"
+ },
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/tar/node_modules/yallist": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
+ "dev": true,
+ "license": "BlueOak-1.0.0",
+ "engines": {
+ "node": ">=18"
+ }
+ },
+ "node_modules/temp": {
+ "version": "0.9.4",
+ "resolved": "https://registry.npmjs.org/temp/-/temp-0.9.4.tgz",
+ "integrity": "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==",
+ "dev": true,
+ "license": "MIT",
+ "peer": true,
+ "dependencies": {
+ "mkdirp": "^0.5.1",
+ "rimraf": "~2.6.2"
+ },
+ "engines": {
+ "node": ">=6.0.0"
+ }
+ },
+ "node_modules/temp-file": {
+ "version": "3.4.0",
+ "resolved": "https://registry.npmjs.org/temp-file/-/temp-file-3.4.0.tgz",
+ "integrity": "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "async-exit-hook": "^2.0.1",
+ "fs-extra": "^10.0.0"
+ }
+ },
+ "node_modules/temp-file/node_modules/fs-extra": {
+ "version": "10.1.0",
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
+ "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "graceful-fs": "^4.2.0",
+ "jsonfile": "^6.0.1",
+ "universalify": "^2.0.0"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/temp-file/node_modules/jsonfile": {
+ "version": "6.2.0",
+ "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.0.tgz",
+ "integrity": "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "universalify": "^2.0.0"
+ },
+ "optionalDependencies": {
+ "graceful-fs": "^4.1.6"
+ }
+ },
+ "node_modules/temp-file/node_modules/universalify": {
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
+ "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 10.0.0"
+ }
+ },
+ "node_modules/tiny-async-pool": {
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz",
+ "integrity": "sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "semver": "^5.5.0"
+ }
+ },
+ "node_modules/tiny-async-pool/node_modules/semver": {
+ "version": "5.7.2",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
+ "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
+ "dev": true,
+ "license": "ISC",
+ "bin": {
+ "semver": "bin/semver"
+ }
+ },
+ "node_modules/tiny-typed-emitter": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/tiny-typed-emitter/-/tiny-typed-emitter-2.1.0.tgz",
+ "integrity": "sha512-qVtvMxeXbVej0cQWKqVSSAHmKZEHAvxdF8HEUBFWts8h+xEo5m/lEiPakuyZ3BnCBjOD8i24kzNOiOLLgsSxhA==",
+ "license": "MIT"
+ },
+ "node_modules/tinyglobby": {
+ "version": "0.2.15",
+ "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
+ "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "fdir": "^6.5.0",
+ "picomatch": "^4.0.3"
+ },
+ "engines": {
+ "node": ">=12.0.0"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/SuperchupuDev"
+ }
+ },
+ "node_modules/tmp": {
+ "version": "0.2.5",
+ "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz",
+ "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=14.14"
+ }
+ },
+ "node_modules/tmp-promise": {
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/tmp-promise/-/tmp-promise-3.0.3.tgz",
+ "integrity": "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "tmp": "^0.2.0"
+ }
+ },
+ "node_modules/tree-kill": {
+ "version": "1.2.2",
+ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
+ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
+ "dev": true,
+ "license": "MIT",
+ "bin": {
+ "tree-kill": "cli.js"
+ }
+ },
+ "node_modules/truncate-utf8-bytes": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz",
+ "integrity": "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==",
+ "dev": true,
+ "license": "WTFPL",
+ "dependencies": {
+ "utf8-byte-length": "^1.0.1"
+ }
+ },
"node_modules/tslib": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
"integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
"dev": true,
- "license": "0BSD",
- "optional": true
+ "license": "0BSD"
},
"node_modules/tunnel": {
"version": "0.0.6",
@@ -1127,6 +6118,20 @@
"node": ">=0.6.11 <=0.7.0 || >=0.7.3"
}
},
+ "node_modules/type-fest": {
+ "version": "0.13.1",
+ "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz",
+ "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==",
+ "dev": true,
+ "license": "(MIT OR CC0-1.0)",
+ "optional": true,
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
"node_modules/undici": {
"version": "5.27.2",
"resolved": "https://registry.npmjs.org/undici/-/undici-5.27.2.tgz",
@@ -1139,12 +6144,125 @@
"node": ">=14.0"
}
},
+ "node_modules/undici-types": {
+ "version": "7.16.0",
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz",
+ "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/unique-filename": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-4.0.0.tgz",
+ "integrity": "sha512-XSnEewXmQ+veP7xX2dS5Q4yZAvO40cBN2MWkJ7D/6sW4Dg6wYBNwM1Vrnz1FhH5AdeLIlUXRI9e28z1YZi71NQ==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "unique-slug": "^5.0.0"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
+ "node_modules/unique-slug": {
+ "version": "5.0.0",
+ "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-5.0.0.tgz",
+ "integrity": "sha512-9OdaqO5kwqR+1kVgHAhsp5vPNU0hnxRa26rBFNfNgM7M6pNtgzeBn3s/xbyCQL3dcjzOatcef6UUHpB/6MaETg==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "imurmurhash": "^0.1.4"
+ },
+ "engines": {
+ "node": "^18.17.0 || >=20.5.0"
+ }
+ },
"node_modules/universal-user-agent": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz",
"integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==",
"dev": true
},
+ "node_modules/universalify": {
+ "version": "0.1.2",
+ "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
+ "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">= 4.0.0"
+ }
+ },
+ "node_modules/uri-js": {
+ "version": "4.4.1",
+ "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
+ "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
+ "dev": true,
+ "license": "BSD-2-Clause",
+ "dependencies": {
+ "punycode": "^2.1.0"
+ }
+ },
+ "node_modules/utf8-byte-length": {
+ "version": "1.0.5",
+ "resolved": "https://registry.npmjs.org/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz",
+ "integrity": "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==",
+ "dev": true,
+ "license": "(WTFPL OR MIT)"
+ },
+ "node_modules/util-deprecate": {
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
+ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
+ "dev": true,
+ "license": "MIT"
+ },
+ "node_modules/verror": {
+ "version": "1.10.1",
+ "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.1.tgz",
+ "integrity": "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==",
+ "dev": true,
+ "license": "MIT",
+ "optional": true,
+ "dependencies": {
+ "assert-plus": "^1.0.0",
+ "core-util-is": "1.0.2",
+ "extsprintf": "^1.2.0"
+ },
+ "engines": {
+ "node": ">=0.6.0"
+ }
+ },
+ "node_modules/wait-on": {
+ "version": "9.0.4",
+ "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-9.0.4.tgz",
+ "integrity": "sha512-k8qrgfwrPVJXTeFY8tl6BxVHiclK11u72DVKhpybHfUL/K6KM4bdyK9EhIVYGytB5MJe/3lq4Tf0hrjM+pvJZQ==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "axios": "^1.13.5",
+ "joi": "^18.0.2",
+ "lodash": "^4.17.23",
+ "minimist": "^1.2.8",
+ "rxjs": "^7.8.2"
+ },
+ "bin": {
+ "wait-on": "bin/wait-on"
+ },
+ "engines": {
+ "node": ">=20.0.0"
+ }
+ },
+ "node_modules/wcwidth": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz",
+ "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "defaults": "^1.0.3"
+ }
+ },
"node_modules/web-streams-polyfill": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz",
@@ -1154,11 +6272,160 @@
"node": ">= 8"
}
},
+ "node_modules/which": {
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
+ "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
+ "dev": true,
+ "license": "ISC",
+ "dependencies": {
+ "isexe": "^2.0.0"
+ },
+ "bin": {
+ "node-which": "bin/node-which"
+ },
+ "engines": {
+ "node": ">= 8"
+ }
+ },
+ "node_modules/wrap-ansi": {
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
+ "node_modules/wrap-ansi-cjs": {
+ "name": "wrap-ansi",
+ "version": "7.0.0",
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "ansi-styles": "^4.0.0",
+ "string-width": "^4.1.0",
+ "strip-ansi": "^6.0.0"
+ },
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
+ }
+ },
"node_modules/wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
"integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
"dev": true
+ },
+ "node_modules/wsl-utils": {
+ "version": "0.3.1",
+ "resolved": "https://registry.npmjs.org/wsl-utils/-/wsl-utils-0.3.1.tgz",
+ "integrity": "sha512-g/eziiSUNBSsdDJtCLB8bdYEUMj4jR7AGeUo96p/3dTafgjHhpF4RiCFPiRILwjQoDXx5MqkBr4fwWtR3Ky4Wg==",
+ "license": "MIT",
+ "dependencies": {
+ "is-wsl": "^3.1.0",
+ "powershell-utils": "^0.1.0"
+ },
+ "engines": {
+ "node": ">=20"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
+ },
+ "node_modules/xmlbuilder": {
+ "version": "15.1.1",
+ "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-15.1.1.tgz",
+ "integrity": "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=8.0"
+ }
+ },
+ "node_modules/y18n": {
+ "version": "5.0.8",
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=10"
+ }
+ },
+ "node_modules/yallist": {
+ "version": "4.0.0",
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
+ "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
+ "dev": true,
+ "license": "ISC"
+ },
+ "node_modules/yargs": {
+ "version": "17.7.2",
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "cliui": "^8.0.1",
+ "escalade": "^3.1.1",
+ "get-caller-file": "^2.0.5",
+ "require-directory": "^2.1.1",
+ "string-width": "^4.2.3",
+ "y18n": "^5.0.5",
+ "yargs-parser": "^21.1.1"
+ },
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yargs-parser": {
+ "version": "21.1.1",
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
+ "dev": true,
+ "license": "ISC",
+ "engines": {
+ "node": ">=12"
+ }
+ },
+ "node_modules/yauzl": {
+ "version": "2.10.0",
+ "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
+ "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
+ "dev": true,
+ "license": "MIT",
+ "dependencies": {
+ "buffer-crc32": "~0.2.3",
+ "fd-slicer": "~1.1.0"
+ }
+ },
+ "node_modules/yocto-queue": {
+ "version": "0.1.0",
+ "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
+ "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
+ "dev": true,
+ "license": "MIT",
+ "engines": {
+ "node": ">=10"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/sindresorhus"
+ }
}
}
}
diff --git a/package.json b/package.json
index a47f399..9c90966 100644
--- a/package.json
+++ b/package.json
@@ -2,26 +2,36 @@
"name": "paarrot",
"version": "4.10.2",
"description": "Yet another matrix client",
- "main": "index.js",
+ "main": "electron/main.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
- "tauri": "node -e \"require('fs').copyFileSync('config.json', 'cinny/config.json')\" && tauri",
- "release": "node scripts/release.mjs"
+ "dev": "concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
+ "dev:vite": "cd cinny && npm start",
+ "dev:electron": "wait-on http://localhost:8080 && NODE_ENV=development electron .",
+ "build": "node -e \"require('fs').copyFileSync('config.json', 'cinny/config.json')\" && cd cinny && npm run build && cd .. && electron-builder",
+ "build:linux": "npm run build -- --linux",
+ "build:win": "npm run build -- --win",
+ "build:mac": "npm run build -- --mac"
},
"keywords": [],
"author": "Ajay Bura",
"license": "AGPL-3.0-only",
"dependencies": {
- "@tauri-apps/api": "^2.0.0",
- "@tauri-apps/plugin-http": "2.5.7"
+ "electron-store": "^8.2.0",
+ "electron-updater": "^6.3.9",
+ "open": "11.0.0"
},
"devDependencies": {
"@actions/github": "6.0.0",
- "@tauri-apps/cli": "^2.0.0",
+ "@electron/rebuild": "4.0.3",
+ "concurrently": "9.2.1",
+ "electron": "40.6.0",
+ "electron-builder": "26.8.1",
"node-fetch": "3.3.2",
"png2icons": "2.0.1",
- "sharp": "0.34.5"
+ "sharp": "0.34.5",
+ "wait-on": "9.0.4"
}
}
diff --git a/scripts/generate-icons.mjs b/scripts/generate-icons.mjs
index cd56975..965e96f 100644
--- a/scripts/generate-icons.mjs
+++ b/scripts/generate-icons.mjs
@@ -2,51 +2,33 @@ import sharp from 'sharp';
import { promises as fs } from 'fs';
import path from 'path';
import { fileURLToPath } from 'url';
+import png2icons from 'png2icons';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const rootDir = path.resolve(__dirname, '..');
const sourceIcon = path.join(rootDir, 'appicon-square.png');
-// Tauri desktop icons
-const tauriIcons = [
+// Electron desktop icons
+const electronIcons = [
+ { name: '16x16.png', size: 16 },
+ { name: '24x24.png', size: 24 },
{ name: '32x32.png', size: 32 },
+ { name: '48x48.png', size: 48 },
+ { name: '64x64.png', size: 64 },
{ name: '128x128.png', size: 128 },
- { name: '128x128@2x.png', size: 256 },
+ { name: '256x256.png', size: 256 },
+ { name: '512x512.png', size: 512 },
+ { name: '1024x1024.png', size: 1024 },
{ name: 'icon.png', size: 512 },
- { name: 'Square30x30Logo.png', size: 30 },
- { name: 'Square44x44Logo.png', size: 44 },
- { name: 'Square71x71Logo.png', size: 71 },
- { name: 'Square89x89Logo.png', size: 89 },
- { name: 'Square107x107Logo.png', size: 107 },
- { name: 'Square142x142Logo.png', size: 142 },
- { name: 'Square150x150Logo.png', size: 150 },
- { name: 'Square284x284Logo.png', size: 284 },
- { name: 'Square310x310Logo.png', size: 310 },
- { name: 'StoreLogo.png', size: 50 },
];
-// Android mipmap sizes
-const androidMipmaps = [
- { folder: 'mipmap-mdpi', size: 48 },
- { folder: 'mipmap-hdpi', size: 72 },
- { folder: 'mipmap-xhdpi', size: 96 },
- { folder: 'mipmap-xxhdpi', size: 144 },
- { folder: 'mipmap-xxxhdpi', size: 192 },
-];
-
-// Android adaptive icon foreground sizes (with padding for safe zone)
-const androidForegroundSizes = [
- { folder: 'mipmap-mdpi', size: 108 },
- { folder: 'mipmap-hdpi', size: 162 },
- { folder: 'mipmap-xhdpi', size: 216 },
- { folder: 'mipmap-xxhdpi', size: 324 },
- { folder: 'mipmap-xxxhdpi', size: 432 },
-];
-
-async function generateTauriIcons() {
- const iconsDir = path.join(rootDir, 'src-tauri', 'icons');
+async function generateElectronIcons() {
+ const iconsDir = path.join(rootDir, 'icons');
- for (const icon of tauriIcons) {
+ // Ensure icons directory exists
+ await fs.mkdir(iconsDir, { recursive: true });
+
+ for (const icon of electronIcons) {
const outputPath = path.join(iconsDir, icon.name);
await sharp(sourceIcon)
.resize(icon.size, icon.size)
@@ -56,97 +38,26 @@ async function generateTauriIcons() {
}
// Generate ICO file (Windows)
- const icoPath = path.join(iconsDir, 'icon.ico');
- const sizes = [16, 24, 32, 48, 64, 128, 256];
- const icoBuffers = await Promise.all(
- sizes.map(size =>
- sharp(sourceIcon)
- .resize(size, size)
- .png()
- .toBuffer()
- )
- );
- // For ICO, we'll just use the 256x256 as the main icon
- await sharp(sourceIcon)
- .resize(256, 256)
- .png()
- .toFile(icoPath.replace('.ico', '.ico.png'));
- // Copy as ico (sharp doesn't support ico directly, need to use png2ico or similar)
- console.log('Note: ICO file needs manual conversion or use png2ico tool');
-
- // Generate ICNS file (macOS) - sharp doesn't support icns directly
- console.log('Note: ICNS file needs manual conversion or use iconutil on macOS');
-}
+ const sourceBuffer = await fs.readFile(sourceIcon);
+ const icoBuffer = png2icons.createICO(sourceBuffer, png2icons.BEZIER, 0, true, true);
+ await fs.writeFile(path.join(iconsDir, 'icon.ico'), icoBuffer);
+ console.log('Generated: icon.ico');
-async function generateAndroidIcons() {
- const androidResDir = path.join(rootDir, 'src-tauri', 'gen', 'android', 'app', 'src', 'main', 'res');
-
- for (const mipmap of androidMipmaps) {
- const outputDir = path.join(androidResDir, mipmap.folder);
-
- // Standard launcher icon
- await sharp(sourceIcon)
- .resize(mipmap.size, mipmap.size)
- .png()
- .toFile(path.join(outputDir, 'ic_launcher.png'));
- console.log(`Generated: ${mipmap.folder}/ic_launcher.png`);
-
- // Round launcher icon
- const roundSize = mipmap.size;
- const roundIcon = await sharp(sourceIcon)
- .resize(roundSize, roundSize)
- .png()
- .toBuffer();
-
- // Create circular mask
- const circleMask = Buffer.from(
- ``
- );
-
- await sharp(roundIcon)
- .composite([{
- input: circleMask,
- blend: 'dest-in'
- }])
- .png()
- .toFile(path.join(outputDir, 'ic_launcher_round.png'));
- console.log(`Generated: ${mipmap.folder}/ic_launcher_round.png`);
- }
-
- // Generate adaptive icon foregrounds
- for (const fg of androidForegroundSizes) {
- const outputDir = path.join(androidResDir, fg.folder);
- const iconSize = Math.floor(fg.size * 0.66); // Icon should be ~66% of the foreground
- const padding = Math.floor((fg.size - iconSize) / 2);
-
- await sharp(sourceIcon)
- .resize(iconSize, iconSize)
- .extend({
- top: padding,
- bottom: fg.size - iconSize - padding,
- left: padding,
- right: fg.size - iconSize - padding,
- background: { r: 0, g: 0, b: 0, alpha: 0 }
- })
- .png()
- .toFile(path.join(outputDir, 'ic_launcher_foreground.png'));
- console.log(`Generated: ${fg.folder}/ic_launcher_foreground.png`);
- }
+ // Generate ICNS file (macOS)
+ const icnsBuffer = png2icons.createICNS(sourceBuffer, png2icons.BEZIER, 0);
+ await fs.writeFile(path.join(iconsDir, 'icon.icns'), icnsBuffer);
+ console.log('Generated: icon.icns');
}
async function main() {
console.log('Generating icons from:', sourceIcon);
console.log('');
- console.log('=== Tauri Desktop Icons ===');
- await generateTauriIcons();
+ console.log('=== Electron Desktop Icons ===');
+ await generateElectronIcons();
console.log('');
- console.log('=== Android Icons ===');
- await generateAndroidIcons();
- console.log('');
-
- console.log('Done! Note: ICO and ICNS files may need manual conversion.');
+ console.log('Done!');
}
main().catch(console.error);
diff --git a/scripts/release.mjs b/scripts/release.mjs
deleted file mode 100644
index 47a9cec..0000000
--- a/scripts/release.mjs
+++ /dev/null
@@ -1,108 +0,0 @@
-import fetch from "node-fetch";
-import { getOctokit, context } from "@actions/github";
-
-async function getAssetSign(url) {
- const response = await fetch(url, {
- method: "GET",
- headers: {
- "Content-Type": "application/octet-stream",
- },
- });
-
- return response.text();
-}
-
-async function createTauriRelease() {
- if (process.env.GITHUB_TOKEN === undefined) {
- throw new Error("GITHUB_TOKEN is not found!");
- }
-
- const github = getOctokit(process.env.GITHUB_TOKEN);
- const { repos } = github.rest;
- const repoMetaData = {
- owner: context.repo.owner,
- repo: context.repo.repo,
- };
-
- const tagsResult = await repos.listTags({ ...repoMetaData, per_page: 10, page: 1 });
- const latestTag = tagsResult.data.find((tag) => tag.name.startsWith("v"));
- console.log(latestTag);
-
- const latestRelease = await repos.getReleaseByTag({ ...repoMetaData, tag: latestTag.name });
- const latestAssets = latestRelease.data.assets;
-
- const windowsX86_64 = {};
- const linuxX86_64 = {};
- const darwinX86_64 = {};
- const darwinAarch64 = {};
-
- const promises = latestAssets.map(async (asset) => {
- const { name, browser_download_url } = asset;
-
- if (/\.msi\.zip$/.test(name)) {
- windowsX86_64.url = browser_download_url;
- }
- if (/\.msi\.zip\.sig$/.test(name)) {
- windowsX86_64.signature = await getAssetSign(browser_download_url);
- }
-
- if (/\.AppImage\.tar\.gz$/.test(name)) {
- linuxX86_64.url = browser_download_url;
- }
- if (/\.AppImage\.tar\.gz\.sig$/.test(name)) {
- linuxX86_64.signature = await getAssetSign(browser_download_url);
- }
-
- if (/universal\.app\.tar\.gz$/.test(name)) {
- darwinX86_64.url = browser_download_url;
- }
- if (/universal\.app\.tar\.gz\.sig$/.test(name)) {
- darwinX86_64.signature = await getAssetSign(browser_download_url);
- }
-
- if (/universal\.app\.tar\.gz$/.test(name)) {
- darwinAarch64.url = browser_download_url;
- }
- if (/universal\.app\.tar\.gz\.sig$/.test(name)) {
- darwinAarch64.signature = await getAssetSign(browser_download_url);
- }
- });
-
- await Promise.allSettled(promises);
-
- const releaseData = {
- name: latestTag.name,
- notes: `https://github.com/${repoMetaData.owner}/${repoMetaData.repo}/releases/tag/${latestTag.name}`,
- pub_date: new Date().toISOString(),
- platforms: {},
- };
-
- if (windowsX86_64.url) releaseData.platforms["windows-x86_64"] = windowsX86_64;
- else console.error('Failed to get release for windowsX86_64');
-
- if (linuxX86_64.url) releaseData.platforms["linux-x86_64"] = linuxX86_64;
- else console.error('Failed to get release for linuxX86_64');
-
- if (darwinX86_64.url) releaseData.platforms["darwin-x86_64"] = darwinX86_64;
- else console.error('Failed to get release for darwinX86_64');
-
- if (darwinAarch64.url) releaseData.platforms["darwin-aarch64"] = darwinAarch64;
- else console.error('Failed to get release for darwinAarch64');
-
- const releaseResult = await repos.getReleaseByTag({ ...repoMetaData, tag: 'tauri' });
- const tauriRelease = releaseResult.data;
-
- const prevReleaseAsset = tauriRelease.assets.find((asset) => asset.name === 'release.json');
- if (prevReleaseAsset) {
- await repos.deleteReleaseAsset({ ...repoMetaData, asset_id: prevReleaseAsset.id });
- }
-
- console.log(releaseData);
- await repos.uploadReleaseAsset({
- ...repoMetaData,
- release_id: tauriRelease.id,
- name: 'release.json',
- data: JSON.stringify(releaseData, null, 2),
- });
-}
-createTauriRelease();
\ No newline at end of file
diff --git a/src-tauri/.cargo/config.toml b/src-tauri/.cargo/config.toml
deleted file mode 100644
index 86ac4da..0000000
--- a/src-tauri/.cargo/config.toml
+++ /dev/null
@@ -1,9 +0,0 @@
-[target.x86_64-pc-windows-msvc]
-linker = "rust-lld.exe"
-rustflags = ["-C", "link-arg=-fuse-ld=lld"]
-
-[target.x86_64-unknown-linux-gnu]
-rustflags = ["-C", "link-arg=-fuse-ld=lld"]
-
-[target.aarch64-linux-android]
-rustflags = ["-C", "link-arg=-fuse-ld=lld"]
diff --git a/src-tauri/.gitignore b/src-tauri/.gitignore
deleted file mode 100644
index 929e7d5..0000000
--- a/src-tauri/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-# Generated by Cargo
-# will have compiled files and executables
-/target/
-WixTools
-
-.tauri-private.key
diff --git a/src-tauri/.tauri-private.key.pub b/src-tauri/.tauri-private.key.pub
deleted file mode 100644
index 0283b07..0000000
--- a/src-tauri/.tauri-private.key.pub
+++ /dev/null
@@ -1 +0,0 @@
-dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDExREU1NkVBMDY4MzcxMjAKUldRZ2NZTUc2bGJlRVNaQldnMXpJcHlocVpCWUNNaUdicjBGMVRsck1GQXhvTnJiOUNhVVRHSzQK
\ No newline at end of file
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
deleted file mode 100644
index 1f326fb..0000000
--- a/src-tauri/Cargo.lock
+++ /dev/null
@@ -1,8276 +0,0 @@
-# This file is automatically @generated by Cargo.
-# It is not intended for manual editing.
-version = 3
-
-[[package]]
-name = "accessory"
-version = "1.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "87537f9ae7cfa78d5b8ebd1a1db25959f5e737126be4d8eb44a5452fc4b63cde"
-dependencies = [
- "macroific",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "adler2"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
-
-[[package]]
-name = "aead"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
-dependencies = [
- "crypto-common",
- "generic-array",
-]
-
-[[package]]
-name = "aes"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
-dependencies = [
- "cfg-if",
- "cipher",
- "cpufeatures",
-]
-
-[[package]]
-name = "ahash"
-version = "0.8.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
-dependencies = [
- "cfg-if",
- "once_cell",
- "version_check",
- "zerocopy 0.8.33",
-]
-
-[[package]]
-name = "aho-corasick"
-version = "1.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "alloc-no-stdlib"
-version = "2.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
-
-[[package]]
-name = "alloc-stdlib"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
-dependencies = [
- "alloc-no-stdlib",
-]
-
-[[package]]
-name = "allocator-api2"
-version = "0.2.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
-
-[[package]]
-name = "android_system_properties"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "anyhow"
-version = "1.0.100"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
-
-[[package]]
-name = "anymap2"
-version = "0.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c"
-
-[[package]]
-name = "aquamarine"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "21cc1548309245035eb18aa7f0967da6bc65587005170c56e6ef2788a4cf3f4e"
-dependencies = [
- "include_dir",
- "itertools 0.10.5",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "arbitrary"
-version = "1.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
-dependencies = [
- "derive_arbitrary",
-]
-
-[[package]]
-name = "arboard"
-version = "3.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
-dependencies = [
- "clipboard-win",
- "image",
- "log",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-core-graphics",
- "objc2-foundation",
- "parking_lot",
- "percent-encoding",
- "windows-sys 0.60.2",
- "wl-clipboard-rs",
- "x11rb",
-]
-
-[[package]]
-name = "arrayref"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
-
-[[package]]
-name = "arrayvec"
-version = "0.7.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "as_variant"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9dbc3a507a82b17ba0d98f6ce8fd6954ea0c8152e98009d36a40d8dcc8ce078a"
-
-[[package]]
-name = "ascii"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
-
-[[package]]
-name = "assign"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f093eed78becd229346bf859eec0aa4dd7ddde0757287b2b4107a1f09c80002"
-
-[[package]]
-name = "async-broadcast"
-version = "0.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
-dependencies = [
- "event-listener 5.4.1",
- "event-listener-strategy",
- "futures-core",
- "pin-project-lite",
-]
-
-[[package]]
-name = "async-channel"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
-dependencies = [
- "concurrent-queue",
- "event-listener-strategy",
- "futures-core",
- "pin-project-lite",
-]
-
-[[package]]
-name = "async-executor"
-version = "1.13.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
-dependencies = [
- "async-task",
- "concurrent-queue",
- "fastrand",
- "futures-lite",
- "pin-project-lite",
- "slab",
-]
-
-[[package]]
-name = "async-io"
-version = "2.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
-dependencies = [
- "autocfg",
- "cfg-if",
- "concurrent-queue",
- "futures-io",
- "futures-lite",
- "parking",
- "polling",
- "rustix",
- "slab",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "async-lock"
-version = "3.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
-dependencies = [
- "event-listener 5.4.1",
- "event-listener-strategy",
- "pin-project-lite",
-]
-
-[[package]]
-name = "async-process"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
-dependencies = [
- "async-channel",
- "async-io",
- "async-lock",
- "async-signal",
- "async-task",
- "blocking",
- "cfg-if",
- "event-listener 5.4.1",
- "futures-lite",
- "rustix",
-]
-
-[[package]]
-name = "async-recursion"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "async-signal"
-version = "0.2.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
-dependencies = [
- "async-io",
- "async-lock",
- "atomic-waker",
- "cfg-if",
- "futures-core",
- "futures-io",
- "rustix",
- "signal-hook-registry",
- "slab",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "async-stream"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
-dependencies = [
- "async-stream-impl",
- "futures-core",
- "pin-project-lite",
-]
-
-[[package]]
-name = "async-stream-impl"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "async-task"
-version = "4.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
-
-[[package]]
-name = "async-trait"
-version = "0.1.89"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "atk"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b"
-dependencies = [
- "atk-sys",
- "glib",
- "libc",
-]
-
-[[package]]
-name = "atk-sys"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086"
-dependencies = [
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "atomic-waker"
-version = "1.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
-
-[[package]]
-name = "auto-launch"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f012b8cc0c850f34117ec8252a44418f2e34a2cf501de89e29b241ae5f79471"
-dependencies = [
- "dirs 4.0.0",
- "thiserror 1.0.69",
- "winreg 0.10.1",
-]
-
-[[package]]
-name = "autocfg"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
-
-[[package]]
-name = "backoff"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b62ddb9cb1ec0a098ad4bbf9344d0713fa193ae1a80af55febcff2627b6a00c1"
-dependencies = [
- "futures-core",
- "getrandom 0.2.17",
- "instant",
- "pin-project-lite",
- "rand 0.8.5",
- "tokio",
-]
-
-[[package]]
-name = "base64"
-version = "0.21.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
-
-[[package]]
-name = "base64"
-version = "0.22.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
-
-[[package]]
-name = "base64ct"
-version = "1.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
-
-[[package]]
-name = "bitflags"
-version = "1.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-[[package]]
-name = "bitflags"
-version = "2.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
-dependencies = [
- "serde_core",
-]
-
-[[package]]
-name = "bitmaps"
-version = "3.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1d084b0137aaa901caf9f1e8b21daa6aa24d41cd806e111335541eff9683bd6"
-
-[[package]]
-name = "blake3"
-version = "1.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
-dependencies = [
- "arrayref",
- "arrayvec",
- "cc",
- "cfg-if",
- "constant_time_eq",
- "cpufeatures",
-]
-
-[[package]]
-name = "block-buffer"
-version = "0.10.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
-dependencies = [
- "generic-array",
-]
-
-[[package]]
-name = "block-padding"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
-dependencies = [
- "generic-array",
-]
-
-[[package]]
-name = "block2"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
-dependencies = [
- "objc2",
-]
-
-[[package]]
-name = "blocking"
-version = "1.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
-dependencies = [
- "async-channel",
- "async-task",
- "futures-io",
- "futures-lite",
- "piper",
-]
-
-[[package]]
-name = "brotli"
-version = "8.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
-dependencies = [
- "alloc-no-stdlib",
- "alloc-stdlib",
- "brotli-decompressor",
-]
-
-[[package]]
-name = "brotli-decompressor"
-version = "5.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
-dependencies = [
- "alloc-no-stdlib",
- "alloc-stdlib",
-]
-
-[[package]]
-name = "bs58"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf88ba1141d185c399bee5288d850d63b8369520c1eafc32a0430b5b6c287bf4"
-dependencies = [
- "tinyvec",
-]
-
-[[package]]
-name = "bumpalo"
-version = "3.19.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
-
-[[package]]
-name = "bytemuck"
-version = "1.24.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
-
-[[package]]
-name = "byteorder"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
-
-[[package]]
-name = "byteorder-lite"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
-
-[[package]]
-name = "bytes"
-version = "1.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "bytesize"
-version = "1.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659"
-
-[[package]]
-name = "cairo-rs"
-version = "0.18.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2"
-dependencies = [
- "bitflags 2.10.0",
- "cairo-sys-rs",
- "glib",
- "libc",
- "once_cell",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "cairo-sys-rs"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51"
-dependencies = [
- "glib-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "camino"
-version = "1.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
-dependencies = [
- "serde_core",
-]
-
-[[package]]
-name = "cargo-platform"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "cargo_metadata"
-version = "0.19.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba"
-dependencies = [
- "camino",
- "cargo-platform",
- "semver",
- "serde",
- "serde_json",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "cargo_toml"
-version = "0.22.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77"
-dependencies = [
- "serde",
- "toml 0.9.11+spec-1.1.0",
-]
-
-[[package]]
-name = "cbc"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
-dependencies = [
- "cipher",
-]
-
-[[package]]
-name = "cc"
-version = "1.2.54"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
-dependencies = [
- "find-msvc-tools",
- "shlex",
-]
-
-[[package]]
-name = "cesu8"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
-
-[[package]]
-name = "cfb"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f"
-dependencies = [
- "byteorder",
- "fnv",
- "uuid",
-]
-
-[[package]]
-name = "cfg-expr"
-version = "0.15.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
-dependencies = [
- "smallvec",
- "target-lexicon",
-]
-
-[[package]]
-name = "cfg-if"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
-
-[[package]]
-name = "cfg-vis"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3a2c3bf5fc10fe2ca157564fbe08a4cb2b0a7d2ff3fe2f9683e65d5e7c7859c"
-dependencies = [
- "proc-macro-crate 1.3.1",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "cfg_aliases"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
-
-[[package]]
-name = "chacha20"
-version = "0.9.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
-dependencies = [
- "cfg-if",
- "cipher",
- "cpufeatures",
-]
-
-[[package]]
-name = "chacha20poly1305"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
-dependencies = [
- "aead",
- "chacha20",
- "cipher",
- "poly1305",
- "zeroize",
-]
-
-[[package]]
-name = "chrono"
-version = "0.4.43"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
-dependencies = [
- "iana-time-zone",
- "num-traits",
- "serde",
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "chunked_transfer"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
-
-[[package]]
-name = "cipher"
-version = "0.4.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
-dependencies = [
- "crypto-common",
- "inout",
- "zeroize",
-]
-
-[[package]]
-name = "clipboard-win"
-version = "5.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
-dependencies = [
- "error-code",
-]
-
-[[package]]
-name = "combine"
-version = "4.6.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
-dependencies = [
- "bytes",
- "memchr",
-]
-
-[[package]]
-name = "concurrent-queue"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
-dependencies = [
- "crossbeam-utils",
-]
-
-[[package]]
-name = "const-oid"
-version = "0.9.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
-
-[[package]]
-name = "const-random"
-version = "0.1.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
-dependencies = [
- "const-random-macro",
-]
-
-[[package]]
-name = "const-random-macro"
-version = "0.1.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
-dependencies = [
- "getrandom 0.2.17",
- "once_cell",
- "tiny-keccak",
-]
-
-[[package]]
-name = "const_panic"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652"
-dependencies = [
- "typewit",
-]
-
-[[package]]
-name = "constant_time_eq"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
-
-[[package]]
-name = "convert_case"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
-
-[[package]]
-name = "cookie"
-version = "0.18.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
-dependencies = [
- "percent-encoding",
- "time",
- "version_check",
-]
-
-[[package]]
-name = "cookie_store"
-version = "0.21.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2eac901828f88a5241ee0600950ab981148a18f2f756900ffba1b125ca6a3ef9"
-dependencies = [
- "cookie",
- "document-features",
- "idna",
- "log",
- "publicsuffix",
- "serde",
- "serde_derive",
- "serde_json",
- "time",
- "url",
-]
-
-[[package]]
-name = "cookie_store"
-version = "0.22.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fc4bff745c9b4c7fb1e97b25d13153da2bc7796260141df62378998d070207f"
-dependencies = [
- "cookie",
- "document-features",
- "idna",
- "log",
- "publicsuffix",
- "serde",
- "serde_derive",
- "serde_json",
- "time",
- "url",
-]
-
-[[package]]
-name = "core-foundation"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
-[[package]]
-name = "core-foundation"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
-[[package]]
-name = "core-foundation-sys"
-version = "0.8.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
-
-[[package]]
-name = "core-graphics"
-version = "0.24.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1"
-dependencies = [
- "bitflags 2.10.0",
- "core-foundation 0.10.1",
- "core-graphics-types",
- "foreign-types",
- "libc",
-]
-
-[[package]]
-name = "core-graphics-types"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
-dependencies = [
- "bitflags 2.10.0",
- "core-foundation 0.10.1",
- "libc",
-]
-
-[[package]]
-name = "cpufeatures"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
-dependencies = [
- "libc",
-]
-
-[[package]]
-name = "crc32fast"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
-dependencies = [
- "cfg-if",
-]
-
-[[package]]
-name = "crossbeam-channel"
-version = "0.5.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
-dependencies = [
- "crossbeam-utils",
-]
-
-[[package]]
-name = "crossbeam-utils"
-version = "0.8.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
-
-[[package]]
-name = "crunchy"
-version = "0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
-
-[[package]]
-name = "crypto-common"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
-dependencies = [
- "generic-array",
- "rand_core 0.6.4",
- "typenum",
-]
-
-[[package]]
-name = "cssparser"
-version = "0.29.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
-dependencies = [
- "cssparser-macros",
- "dtoa-short",
- "itoa",
- "matches",
- "phf 0.10.1",
- "proc-macro2",
- "quote",
- "smallvec",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "cssparser-macros"
-version = "0.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
-dependencies = [
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "ctor"
-version = "0.2.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
-dependencies = [
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "ctr"
-version = "0.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
-dependencies = [
- "cipher",
-]
-
-[[package]]
-name = "curve25519-dalek"
-version = "4.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
-dependencies = [
- "cfg-if",
- "cpufeatures",
- "curve25519-dalek-derive",
- "digest",
- "fiat-crypto",
- "rustc_version",
- "serde",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "curve25519-dalek-derive"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "darling"
-version = "0.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
-dependencies = [
- "darling_core",
- "darling_macro",
-]
-
-[[package]]
-name = "darling_core"
-version = "0.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
-dependencies = [
- "fnv",
- "ident_case",
- "proc-macro2",
- "quote",
- "strsim",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "darling_macro"
-version = "0.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
-dependencies = [
- "darling_core",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "data-url"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
-
-[[package]]
-name = "deadpool"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fb84100978c1c7b37f09ed3ce3e5f843af02c2a2c431bae5b19230dad2c1b490"
-dependencies = [
- "async-trait",
- "deadpool-runtime",
- "num_cpus",
- "tokio",
-]
-
-[[package]]
-name = "deadpool-runtime"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
-dependencies = [
- "tokio",
-]
-
-[[package]]
-name = "deadpool-sqlite"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8010e36e12f3be22543a5e478b4af20aeead9a700dd69581a5e050a070fc22c"
-dependencies = [
- "deadpool",
- "deadpool-sync",
- "rusqlite",
-]
-
-[[package]]
-name = "deadpool-sync"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "524bc3df0d57e98ecd022e21ba31166c2625e7d3e5bcc4510efaeeab4abcab04"
-dependencies = [
- "deadpool-runtime",
-]
-
-[[package]]
-name = "delegate-display"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "98a85201f233142ac819bbf6226e36d0b5e129a47bd325084674261c82d4cd66"
-dependencies = [
- "macroific",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "der"
-version = "0.7.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
-dependencies = [
- "const-oid",
- "der_derive",
- "flagset",
- "zeroize",
-]
-
-[[package]]
-name = "der_derive"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8034092389675178f570469e6c3b0465d3d30b4505c294a6550db47f3c17ad18"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "deranged"
-version = "0.5.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
-dependencies = [
- "powerfmt",
- "serde_core",
-]
-
-[[package]]
-name = "derive_arbitrary"
-version = "1.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "derive_more"
-version = "0.99.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
-dependencies = [
- "convert_case",
- "proc-macro2",
- "quote",
- "rustc_version",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "digest"
-version = "0.10.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
-dependencies = [
- "block-buffer",
- "crypto-common",
- "subtle",
-]
-
-[[package]]
-name = "dirs"
-version = "4.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
-dependencies = [
- "dirs-sys 0.3.7",
-]
-
-[[package]]
-name = "dirs"
-version = "6.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
-dependencies = [
- "dirs-sys 0.5.0",
-]
-
-[[package]]
-name = "dirs-sys"
-version = "0.3.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
-dependencies = [
- "libc",
- "redox_users 0.4.6",
- "winapi",
-]
-
-[[package]]
-name = "dirs-sys"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
-dependencies = [
- "libc",
- "option-ext",
- "redox_users 0.5.2",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "dispatch"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
-
-[[package]]
-name = "dispatch2"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
-dependencies = [
- "bitflags 2.10.0",
- "block2",
- "libc",
- "objc2",
-]
-
-[[package]]
-name = "displaydoc"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "dlopen2"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4"
-dependencies = [
- "dlopen2_derive",
- "libc",
- "once_cell",
- "winapi",
-]
-
-[[package]]
-name = "dlopen2_derive"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "dlv-list"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "442039f5147480ba31067cb00ada1adae6892028e40e45fc5de7b7df6dcc1b5f"
-dependencies = [
- "const-random",
-]
-
-[[package]]
-name = "document-features"
-version = "0.2.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
-dependencies = [
- "litrs",
-]
-
-[[package]]
-name = "downcast-rs"
-version = "1.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
-
-[[package]]
-name = "dpi"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "dtoa"
-version = "1.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
-
-[[package]]
-name = "dtoa-short"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
-dependencies = [
- "dtoa",
-]
-
-[[package]]
-name = "dunce"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
-
-[[package]]
-name = "dyn-clone"
-version = "1.0.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
-
-[[package]]
-name = "ed25519"
-version = "2.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
-dependencies = [
- "pkcs8",
- "serde",
- "signature",
-]
-
-[[package]]
-name = "ed25519-dalek"
-version = "2.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
-dependencies = [
- "curve25519-dalek",
- "ed25519",
- "rand_core 0.6.4",
- "serde",
- "sha2",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "either"
-version = "1.15.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
-
-[[package]]
-name = "embed-resource"
-version = "3.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e"
-dependencies = [
- "cc",
- "memchr",
- "rustc_version",
- "toml 0.9.11+spec-1.1.0",
- "vswhom",
- "winreg 0.55.0",
-]
-
-[[package]]
-name = "embed_plist"
-version = "1.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7"
-
-[[package]]
-name = "encoding_rs"
-version = "0.8.35"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
-dependencies = [
- "cfg-if",
-]
-
-[[package]]
-name = "endi"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
-
-[[package]]
-name = "enumflags2"
-version = "0.7.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
-dependencies = [
- "enumflags2_derive",
- "serde",
-]
-
-[[package]]
-name = "enumflags2_derive"
-version = "0.7.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "equivalent"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
-
-[[package]]
-name = "erased-serde"
-version = "0.4.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
-dependencies = [
- "serde",
- "serde_core",
- "typeid",
-]
-
-[[package]]
-name = "errno"
-version = "0.3.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
-dependencies = [
- "libc",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "error-code"
-version = "3.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
-
-[[package]]
-name = "event-listener"
-version = "4.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67b215c49b2b248c855fb73579eb1f4f26c38ffdc12973e20e07b91d78d5646e"
-dependencies = [
- "concurrent-queue",
- "parking",
- "pin-project-lite",
-]
-
-[[package]]
-name = "event-listener"
-version = "5.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
-dependencies = [
- "concurrent-queue",
- "parking",
- "pin-project-lite",
-]
-
-[[package]]
-name = "event-listener-strategy"
-version = "0.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
-dependencies = [
- "event-listener 5.4.1",
- "pin-project-lite",
-]
-
-[[package]]
-name = "eyeball"
-version = "0.8.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d93bd0ebf93d61d6332d3c09a96e97975968a44e19a64c947bde06e6baff383f"
-dependencies = [
- "futures-core",
- "readlock",
- "tracing",
-]
-
-[[package]]
-name = "eyeball-im"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9326c8d9f6d59d18935412608b4514cc661e4e068011bb2f523f6c8b1cfa3bd4"
-dependencies = [
- "futures-core",
- "imbl",
- "tokio",
- "tokio-util",
- "tracing",
-]
-
-[[package]]
-name = "fallible-iterator"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
-
-[[package]]
-name = "fallible-streaming-iterator"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
-
-[[package]]
-name = "fancy_constructor"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "07b19d0e43eae2bfbafe4931b5e79c73fb1a849ca15cd41a761a7b8587f9a1a2"
-dependencies = [
- "macroific",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "fastrand"
-version = "2.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
-
-[[package]]
-name = "fax"
-version = "0.2.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
-dependencies = [
- "fax_derive",
-]
-
-[[package]]
-name = "fax_derive"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "fdeflate"
-version = "0.3.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
-dependencies = [
- "simd-adler32",
-]
-
-[[package]]
-name = "fiat-crypto"
-version = "0.2.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
-
-[[package]]
-name = "field-offset"
-version = "0.3.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
-dependencies = [
- "memoffset",
- "rustc_version",
-]
-
-[[package]]
-name = "filetime"
-version = "0.2.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f98844151eee8917efc50bd9e8318cb963ae8b297431495d3f758616ea5c57db"
-dependencies = [
- "cfg-if",
- "libc",
- "libredox",
-]
-
-[[package]]
-name = "find-msvc-tools"
-version = "0.1.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
-
-[[package]]
-name = "fixedbitset"
-version = "0.5.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
-
-[[package]]
-name = "flagset"
-version = "0.4.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7ac824320a75a52197e8f2d787f6a38b6718bb6897a35142d749af3c0e8f4fe"
-
-[[package]]
-name = "flate2"
-version = "1.1.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
-dependencies = [
- "crc32fast",
- "miniz_oxide",
-]
-
-[[package]]
-name = "fnv"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-[[package]]
-name = "foldhash"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
-
-[[package]]
-name = "foreign-types"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
-dependencies = [
- "foreign-types-macros",
- "foreign-types-shared",
-]
-
-[[package]]
-name = "foreign-types-macros"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "foreign-types-shared"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
-
-[[package]]
-name = "form_urlencoded"
-version = "1.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
-dependencies = [
- "percent-encoding",
-]
-
-[[package]]
-name = "futf"
-version = "0.1.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
-dependencies = [
- "mac",
- "new_debug_unreachable",
-]
-
-[[package]]
-name = "futures-channel"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
-dependencies = [
- "futures-core",
-]
-
-[[package]]
-name = "futures-core"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
-
-[[package]]
-name = "futures-executor"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
-dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
-]
-
-[[package]]
-name = "futures-io"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
-
-[[package]]
-name = "futures-lite"
-version = "2.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
-dependencies = [
- "fastrand",
- "futures-core",
- "futures-io",
- "parking",
- "pin-project-lite",
-]
-
-[[package]]
-name = "futures-macro"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "futures-sink"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
-
-[[package]]
-name = "futures-task"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
-
-[[package]]
-name = "futures-util"
-version = "0.3.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "futures-task",
- "memchr",
- "pin-project-lite",
- "pin-utils",
- "slab",
-]
-
-[[package]]
-name = "fxhash"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
-dependencies = [
- "byteorder",
-]
-
-[[package]]
-name = "gdk"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691"
-dependencies = [
- "cairo-rs",
- "gdk-pixbuf",
- "gdk-sys",
- "gio",
- "glib",
- "libc",
- "pango",
-]
-
-[[package]]
-name = "gdk-pixbuf"
-version = "0.18.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec"
-dependencies = [
- "gdk-pixbuf-sys",
- "gio",
- "glib",
- "libc",
- "once_cell",
-]
-
-[[package]]
-name = "gdk-pixbuf-sys"
-version = "0.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7"
-dependencies = [
- "gio-sys",
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "gdk-sys"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7"
-dependencies = [
- "cairo-sys-rs",
- "gdk-pixbuf-sys",
- "gio-sys",
- "glib-sys",
- "gobject-sys",
- "libc",
- "pango-sys",
- "pkg-config",
- "system-deps",
-]
-
-[[package]]
-name = "gdkwayland-sys"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69"
-dependencies = [
- "gdk-sys",
- "glib-sys",
- "gobject-sys",
- "libc",
- "pkg-config",
- "system-deps",
-]
-
-[[package]]
-name = "gdkx11"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe"
-dependencies = [
- "gdk",
- "gdkx11-sys",
- "gio",
- "glib",
- "libc",
- "x11",
-]
-
-[[package]]
-name = "gdkx11-sys"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d"
-dependencies = [
- "gdk-sys",
- "glib-sys",
- "libc",
- "system-deps",
- "x11",
-]
-
-[[package]]
-name = "generic-array"
-version = "0.14.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
-dependencies = [
- "typenum",
- "version_check",
-]
-
-[[package]]
-name = "gethostname"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
-dependencies = [
- "rustix",
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.1.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
-dependencies = [
- "cfg-if",
- "libc",
- "wasi 0.9.0+wasi-snapshot-preview1",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.2.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
-dependencies = [
- "cfg-if",
- "js-sys",
- "libc",
- "wasi 0.11.1+wasi-snapshot-preview1",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "getrandom"
-version = "0.3.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
-dependencies = [
- "cfg-if",
- "js-sys",
- "libc",
- "r-efi",
- "wasip2",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "gio"
-version = "0.18.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73"
-dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-util",
- "gio-sys",
- "glib",
- "libc",
- "once_cell",
- "pin-project-lite",
- "smallvec",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "gio-sys"
-version = "0.18.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2"
-dependencies = [
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
- "winapi",
-]
-
-[[package]]
-name = "glib"
-version = "0.18.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5"
-dependencies = [
- "bitflags 2.10.0",
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-task",
- "futures-util",
- "gio-sys",
- "glib-macros",
- "glib-sys",
- "gobject-sys",
- "libc",
- "memchr",
- "once_cell",
- "smallvec",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "glib-macros"
-version = "0.18.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc"
-dependencies = [
- "heck 0.4.1",
- "proc-macro-crate 2.0.2",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "glib-sys"
-version = "0.18.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898"
-dependencies = [
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "glob"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
-
-[[package]]
-name = "gloo-timers"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
-dependencies = [
- "futures-channel",
- "futures-core",
- "js-sys",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "gloo-utils"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
-dependencies = [
- "js-sys",
- "serde",
- "serde_json",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "gobject-sys"
-version = "0.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44"
-dependencies = [
- "glib-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "gtk"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a"
-dependencies = [
- "atk",
- "cairo-rs",
- "field-offset",
- "futures-channel",
- "gdk",
- "gdk-pixbuf",
- "gio",
- "glib",
- "gtk-sys",
- "gtk3-macros",
- "libc",
- "pango",
- "pkg-config",
-]
-
-[[package]]
-name = "gtk-sys"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414"
-dependencies = [
- "atk-sys",
- "cairo-sys-rs",
- "gdk-pixbuf-sys",
- "gdk-sys",
- "gio-sys",
- "glib-sys",
- "gobject-sys",
- "libc",
- "pango-sys",
- "system-deps",
-]
-
-[[package]]
-name = "gtk3-macros"
-version = "0.18.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d"
-dependencies = [
- "proc-macro-crate 1.3.1",
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "h2"
-version = "0.3.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
-dependencies = [
- "bytes",
- "fnv",
- "futures-core",
- "futures-sink",
- "futures-util",
- "http 0.2.12",
- "indexmap 2.13.0",
- "slab",
- "tokio",
- "tokio-util",
- "tracing",
-]
-
-[[package]]
-name = "h2"
-version = "0.4.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
-dependencies = [
- "atomic-waker",
- "bytes",
- "fnv",
- "futures-core",
- "futures-sink",
- "http 1.4.0",
- "indexmap 2.13.0",
- "slab",
- "tokio",
- "tokio-util",
- "tracing",
-]
-
-[[package]]
-name = "half"
-version = "2.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
-dependencies = [
- "cfg-if",
- "crunchy",
- "zerocopy 0.8.33",
-]
-
-[[package]]
-name = "hashbrown"
-version = "0.12.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-
-[[package]]
-name = "hashbrown"
-version = "0.14.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
-dependencies = [
- "ahash",
- "allocator-api2",
-]
-
-[[package]]
-name = "hashbrown"
-version = "0.15.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
-dependencies = [
- "foldhash",
-]
-
-[[package]]
-name = "hashbrown"
-version = "0.16.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
-
-[[package]]
-name = "hashlink"
-version = "0.8.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
-dependencies = [
- "hashbrown 0.14.5",
-]
-
-[[package]]
-name = "heck"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
-[[package]]
-name = "heck"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
-
-[[package]]
-name = "hermit-abi"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
-
-[[package]]
-name = "hex"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
-
-[[package]]
-name = "hkdf"
-version = "0.12.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
-dependencies = [
- "hmac",
-]
-
-[[package]]
-name = "hmac"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
-dependencies = [
- "digest",
-]
-
-[[package]]
-name = "html5ever"
-version = "0.29.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
-dependencies = [
- "log",
- "mac",
- "markup5ever",
- "match_token",
-]
-
-[[package]]
-name = "http"
-version = "0.2.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
-dependencies = [
- "bytes",
- "fnv",
- "itoa",
-]
-
-[[package]]
-name = "http"
-version = "1.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
-dependencies = [
- "bytes",
- "itoa",
-]
-
-[[package]]
-name = "http-body"
-version = "0.4.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
-dependencies = [
- "bytes",
- "http 0.2.12",
- "pin-project-lite",
-]
-
-[[package]]
-name = "http-body"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
-dependencies = [
- "bytes",
- "http 1.4.0",
-]
-
-[[package]]
-name = "http-body-util"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
-dependencies = [
- "bytes",
- "futures-core",
- "http 1.4.0",
- "http-body 1.0.1",
- "pin-project-lite",
-]
-
-[[package]]
-name = "httparse"
-version = "1.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
-
-[[package]]
-name = "httpdate"
-version = "1.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
-
-[[package]]
-name = "hyper"
-version = "0.14.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
-dependencies = [
- "bytes",
- "futures-channel",
- "futures-core",
- "futures-util",
- "h2 0.3.27",
- "http 0.2.12",
- "http-body 0.4.6",
- "httparse",
- "httpdate",
- "itoa",
- "pin-project-lite",
- "socket2 0.5.10",
- "tokio",
- "tower-service",
- "tracing",
- "want",
-]
-
-[[package]]
-name = "hyper"
-version = "1.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
-dependencies = [
- "atomic-waker",
- "bytes",
- "futures-channel",
- "futures-core",
- "h2 0.4.13",
- "http 1.4.0",
- "http-body 1.0.1",
- "httparse",
- "itoa",
- "pin-project-lite",
- "pin-utils",
- "smallvec",
- "tokio",
- "want",
-]
-
-[[package]]
-name = "hyper-rustls"
-version = "0.24.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
-dependencies = [
- "futures-util",
- "http 0.2.12",
- "hyper 0.14.32",
- "rustls 0.21.12",
- "tokio",
- "tokio-rustls 0.24.1",
-]
-
-[[package]]
-name = "hyper-rustls"
-version = "0.27.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
-dependencies = [
- "http 1.4.0",
- "hyper 1.8.1",
- "hyper-util",
- "rustls 0.23.36",
- "rustls-pki-types",
- "tokio",
- "tokio-rustls 0.26.4",
- "tower-service",
- "webpki-roots 1.0.5",
-]
-
-[[package]]
-name = "hyper-util"
-version = "0.1.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
-dependencies = [
- "base64 0.22.1",
- "bytes",
- "futures-channel",
- "futures-core",
- "futures-util",
- "http 1.4.0",
- "http-body 1.0.1",
- "hyper 1.8.1",
- "ipnet",
- "libc",
- "percent-encoding",
- "pin-project-lite",
- "socket2 0.5.10",
- "system-configuration",
- "tokio",
- "tower-service",
- "tracing",
- "windows-registry",
-]
-
-[[package]]
-name = "iana-time-zone"
-version = "0.1.64"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
-dependencies = [
- "android_system_properties",
- "core-foundation-sys",
- "iana-time-zone-haiku",
- "js-sys",
- "log",
- "wasm-bindgen",
- "windows-core 0.62.2",
-]
-
-[[package]]
-name = "iana-time-zone-haiku"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
-dependencies = [
- "cc",
-]
-
-[[package]]
-name = "ico"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371"
-dependencies = [
- "byteorder",
- "png 0.17.16",
-]
-
-[[package]]
-name = "icu_collections"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
-dependencies = [
- "displaydoc",
- "potential_utf",
- "yoke",
- "zerofrom",
- "zerovec",
-]
-
-[[package]]
-name = "icu_locale_core"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
-dependencies = [
- "displaydoc",
- "litemap",
- "tinystr",
- "writeable",
- "zerovec",
-]
-
-[[package]]
-name = "icu_normalizer"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
-dependencies = [
- "icu_collections",
- "icu_normalizer_data",
- "icu_properties",
- "icu_provider",
- "smallvec",
- "zerovec",
-]
-
-[[package]]
-name = "icu_normalizer_data"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
-
-[[package]]
-name = "icu_properties"
-version = "2.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
-dependencies = [
- "icu_collections",
- "icu_locale_core",
- "icu_properties_data",
- "icu_provider",
- "zerotrie",
- "zerovec",
-]
-
-[[package]]
-name = "icu_properties_data"
-version = "2.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
-
-[[package]]
-name = "icu_provider"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
-dependencies = [
- "displaydoc",
- "icu_locale_core",
- "writeable",
- "yoke",
- "zerofrom",
- "zerotrie",
- "zerovec",
-]
-
-[[package]]
-name = "ident_case"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
-
-[[package]]
-name = "idna"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
-dependencies = [
- "idna_adapter",
- "smallvec",
- "utf8_iter",
-]
-
-[[package]]
-name = "idna_adapter"
-version = "1.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
-dependencies = [
- "icu_normalizer",
- "icu_properties",
-]
-
-[[package]]
-name = "image"
-version = "0.25.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
-dependencies = [
- "bytemuck",
- "byteorder-lite",
- "moxcms",
- "num-traits",
- "png 0.18.0",
- "tiff",
-]
-
-[[package]]
-name = "imbl"
-version = "2.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "978d142c8028edf52095703af2fad11d6f611af1246685725d6b850634647085"
-dependencies = [
- "bitmaps",
- "imbl-sized-chunks",
- "rand_core 0.6.4",
- "rand_xoshiro",
- "serde",
- "version_check",
-]
-
-[[package]]
-name = "imbl-sized-chunks"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f4241005618a62f8d57b2febd02510fb96e0137304728543dfc5fd6f052c22d"
-dependencies = [
- "bitmaps",
-]
-
-[[package]]
-name = "include_dir"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "923d117408f1e49d914f1a379a309cffe4f18c05cf4e3d12e613a15fc81bd0dd"
-dependencies = [
- "include_dir_macros",
-]
-
-[[package]]
-name = "include_dir_macros"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7cab85a7ed0bd5f0e76d93846e0147172bed2e2d3f859bcc33a8d9699cad1a75"
-dependencies = [
- "proc-macro2",
- "quote",
-]
-
-[[package]]
-name = "indexed_db_futures"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0704b71f13f81b5933d791abf2de26b33c40935143985220299a357721166706"
-dependencies = [
- "accessory",
- "cfg-if",
- "delegate-display",
- "fancy_constructor",
- "js-sys",
- "uuid",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "indexmap"
-version = "1.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
-dependencies = [
- "autocfg",
- "hashbrown 0.12.3",
- "serde",
-]
-
-[[package]]
-name = "indexmap"
-version = "2.13.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
-dependencies = [
- "equivalent",
- "hashbrown 0.16.1",
- "serde",
- "serde_core",
-]
-
-[[package]]
-name = "infer"
-version = "0.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7"
-dependencies = [
- "cfb",
-]
-
-[[package]]
-name = "inout"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
-dependencies = [
- "block-padding",
- "generic-array",
-]
-
-[[package]]
-name = "instant"
-version = "0.1.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
-dependencies = [
- "cfg-if",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "ipnet"
-version = "2.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
-
-[[package]]
-name = "iri-string"
-version = "0.7.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
-dependencies = [
- "memchr",
- "serde",
-]
-
-[[package]]
-name = "is-docker"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
-dependencies = [
- "once_cell",
-]
-
-[[package]]
-name = "is-wsl"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
-dependencies = [
- "is-docker",
- "once_cell",
-]
-
-[[package]]
-name = "itertools"
-version = "0.10.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itertools"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itertools"
-version = "0.14.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itoa"
-version = "1.0.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
-
-[[package]]
-name = "javascriptcore-rs"
-version = "1.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc"
-dependencies = [
- "bitflags 1.3.2",
- "glib",
- "javascriptcore-rs-sys",
-]
-
-[[package]]
-name = "javascriptcore-rs-sys"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124"
-dependencies = [
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "jni"
-version = "0.21.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
-dependencies = [
- "cesu8",
- "cfg-if",
- "combine",
- "jni-sys",
- "log",
- "thiserror 1.0.69",
- "walkdir",
- "windows-sys 0.45.0",
-]
-
-[[package]]
-name = "jni-sys"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
-
-[[package]]
-name = "js-sys"
-version = "0.3.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
-dependencies = [
- "once_cell",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "js_int"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d937f95470b270ce8b8950207715d71aa8e153c0d44c6684d59397ed4949160a"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "js_option"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68421373957a1593a767013698dbf206e2b221eefe97a44d98d18672ff38423c"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "json-patch"
-version = "3.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08"
-dependencies = [
- "jsonptr",
- "serde",
- "serde_json",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "jsonptr"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70"
-dependencies = [
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "keyboard-types"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a"
-dependencies = [
- "bitflags 2.10.0",
- "serde",
- "unicode-segmentation",
-]
-
-[[package]]
-name = "konst"
-version = "0.3.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4381b9b00c55f251f2ebe9473aef7c117e96828def1a7cb3bd3f0f903c6894e9"
-dependencies = [
- "const_panic",
- "konst_kernel",
- "typewit",
-]
-
-[[package]]
-name = "konst_kernel"
-version = "0.3.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e4b1eb7788f3824c629b1116a7a9060d6e898c358ebff59070093d51103dcc3c"
-dependencies = [
- "typewit",
-]
-
-[[package]]
-name = "kuchikiki"
-version = "0.8.8-speedreader"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2"
-dependencies = [
- "cssparser",
- "html5ever",
- "indexmap 2.13.0",
- "selectors",
-]
-
-[[package]]
-name = "lazy_static"
-version = "1.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
-
-[[package]]
-name = "libappindicator"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a"
-dependencies = [
- "glib",
- "gtk",
- "gtk-sys",
- "libappindicator-sys",
- "log",
-]
-
-[[package]]
-name = "libappindicator-sys"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf"
-dependencies = [
- "gtk-sys",
- "libloading",
- "once_cell",
-]
-
-[[package]]
-name = "libc"
-version = "0.2.180"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
-
-[[package]]
-name = "libloading"
-version = "0.7.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
-dependencies = [
- "cfg-if",
- "winapi",
-]
-
-[[package]]
-name = "libredox"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
-dependencies = [
- "bitflags 2.10.0",
- "libc",
- "redox_syscall 0.7.0",
-]
-
-[[package]]
-name = "libsqlite3-sys"
-version = "0.27.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716"
-dependencies = [
- "pkg-config",
- "vcpkg",
-]
-
-[[package]]
-name = "linux-raw-sys"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
-
-[[package]]
-name = "litemap"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
-
-[[package]]
-name = "litrs"
-version = "1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
-
-[[package]]
-name = "lock_api"
-version = "0.4.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
-dependencies = [
- "scopeguard",
-]
-
-[[package]]
-name = "log"
-version = "0.4.29"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
-
-[[package]]
-name = "lru-slab"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
-
-[[package]]
-name = "mac"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
-
-[[package]]
-name = "mac-notification-sys"
-version = "0.6.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "65fd3f75411f4725061682ed91f131946e912859d0044d39c4ec0aac818d7621"
-dependencies = [
- "cc",
- "objc2",
- "objc2-foundation",
- "time",
-]
-
-[[package]]
-name = "macroific"
-version = "1.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f05c00ac596022625d01047c421a0d97d7f09a18e429187b341c201cb631b9dd"
-dependencies = [
- "macroific_attr_parse",
- "macroific_core",
- "macroific_macro",
-]
-
-[[package]]
-name = "macroific_attr_parse"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fd94d5da95b30ae6e10621ad02340909346ad91661f3f8c0f2b62345e46a2f67"
-dependencies = [
- "cfg-if",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "macroific_core"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13198c120864097a565ccb3ff947672d969932b7975ebd4085732c9f09435e55"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "macroific_macro"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b0c9853143cbed7f1e41dc39fee95f9b361bec65c8dc2a01bf609be01b61f5ae"
-dependencies = [
- "macroific_attr_parse",
- "macroific_core",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "maplit"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
-
-[[package]]
-name = "markup5ever"
-version = "0.14.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
-dependencies = [
- "log",
- "phf 0.11.3",
- "phf_codegen 0.11.3",
- "string_cache",
- "string_cache_codegen",
- "tendril",
-]
-
-[[package]]
-name = "match_token"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "matches"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
-
-[[package]]
-name = "matrix-pickle"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c34e6db65145740459f2ca56623b40cd4e6000ffae2a7d91515fa82aa935dbf"
-dependencies = [
- "matrix-pickle-derive",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "matrix-pickle-derive"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a962fc9981f823f6555416dcb2ae9ae67ca412d767ee21ecab5150113ee6285b"
-dependencies = [
- "proc-macro-crate 3.4.0",
- "proc-macro-error2",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "matrix-sdk"
-version = "0.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "336687e5fc8b33661a31681e988a67e9a3090c7fb1a8323a7f71eeaabad642ec"
-dependencies = [
- "anymap2",
- "aquamarine",
- "as_variant",
- "async-channel",
- "async-stream",
- "async-trait",
- "backoff",
- "bytes",
- "bytesize",
- "cfg-vis",
- "event-listener 4.0.3",
- "eyeball",
- "eyeball-im",
- "futures-core",
- "futures-util",
- "gloo-timers",
- "http 0.2.12",
- "imbl",
- "indexmap 2.13.0",
- "matrix-sdk-base",
- "matrix-sdk-common",
- "matrix-sdk-indexeddb",
- "matrix-sdk-sqlite",
- "mime",
- "mime2ext",
- "reqwest 0.11.27",
- "ruma",
- "serde",
- "serde_html_form",
- "serde_json",
- "tempfile",
- "thiserror 1.0.69",
- "tokio",
- "tokio-stream",
- "tokio-util",
- "tracing",
- "url",
- "urlencoding",
- "zeroize",
-]
-
-[[package]]
-name = "matrix-sdk-base"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "00891954d0826a94f1d130f46cbca64176003a234c1be5d9d282970d31cf0c87"
-dependencies = [
- "as_variant",
- "async-trait",
- "bitflags 2.10.0",
- "eyeball",
- "eyeball-im",
- "futures-util",
- "matrix-sdk-common",
- "matrix-sdk-crypto",
- "matrix-sdk-store-encryption",
- "once_cell",
- "ruma",
- "serde",
- "serde_json",
- "thiserror 1.0.69",
- "tokio",
- "tracing",
-]
-
-[[package]]
-name = "matrix-sdk-common"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb365a626ab6f6c6a2422cfe2565522f19accb06706c6d04bca8f0f71df29c9f"
-dependencies = [
- "async-trait",
- "futures-core",
- "futures-util",
- "gloo-timers",
- "instant",
- "ruma",
- "serde",
- "serde_json",
- "thiserror 1.0.69",
- "tokio",
- "tracing",
- "tracing-subscriber",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "matrix-sdk-crypto"
-version = "0.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e03a64d12a83ebe33bb55de9b77faef4ce27006f946f8468c3311f311f39ab8b"
-dependencies = [
- "aes",
- "as_variant",
- "async-trait",
- "bs58",
- "byteorder",
- "cbc",
- "cfg-if",
- "ctr",
- "eyeball",
- "futures-core",
- "futures-util",
- "hkdf",
- "hmac",
- "itertools 0.12.1",
- "matrix-sdk-common",
- "pbkdf2",
- "rand 0.8.5",
- "rmp-serde",
- "ruma",
- "serde",
- "serde_json",
- "sha2",
- "subtle",
- "thiserror 1.0.69",
- "tokio",
- "tokio-stream",
- "tracing",
- "ulid",
- "vodozemac",
- "zeroize",
-]
-
-[[package]]
-name = "matrix-sdk-indexeddb"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ad388005c5d4ed2ff38f405d52aa7fa606f4e1ab51baf5f2504721124ed4a58b"
-dependencies = [
- "anyhow",
- "async-trait",
- "base64 0.21.7",
- "getrandom 0.2.17",
- "gloo-utils",
- "indexed_db_futures",
- "js-sys",
- "matrix-sdk-base",
- "matrix-sdk-crypto",
- "matrix-sdk-store-encryption",
- "ruma",
- "serde",
- "serde-wasm-bindgen",
- "serde_json",
- "thiserror 1.0.69",
- "tokio",
- "tracing",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "matrix-sdk-sqlite"
-version = "0.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77a98d034dd5aa85b4da6500e60c7d5b9328a37632cf40ba38bbe2c77cea3f14"
-dependencies = [
- "async-trait",
- "deadpool-sqlite",
- "itertools 0.12.1",
- "matrix-sdk-base",
- "matrix-sdk-crypto",
- "matrix-sdk-store-encryption",
- "rmp-serde",
- "ruma",
- "rusqlite",
- "serde",
- "serde_json",
- "thiserror 1.0.69",
- "tokio",
- "tracing",
- "vodozemac",
-]
-
-[[package]]
-name = "matrix-sdk-store-encryption"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a7e3162e9f982a4c57ab46df01a4775f697dec8899738bf62d7e97b63faa61c"
-dependencies = [
- "blake3",
- "chacha20poly1305",
- "displaydoc",
- "getrandom 0.2.17",
- "hmac",
- "pbkdf2",
- "rand 0.8.5",
- "rmp-serde",
- "serde",
- "serde_json",
- "sha2",
- "thiserror 1.0.69",
- "zeroize",
-]
-
-[[package]]
-name = "memchr"
-version = "2.7.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
-
-[[package]]
-name = "memoffset"
-version = "0.9.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "mime"
-version = "0.3.17"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
-
-[[package]]
-name = "mime2ext"
-version = "0.1.54"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbf6f36070878c42c5233846cd3de24cf9016828fd47bc22957a687298bb21fc"
-
-[[package]]
-name = "minisign-verify"
-version = "0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e856fdd13623a2f5f2f54676a4ee49502a96a80ef4a62bcedd23d52427c44d43"
-
-[[package]]
-name = "miniz_oxide"
-version = "0.8.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
-dependencies = [
- "adler2",
- "simd-adler32",
-]
-
-[[package]]
-name = "mio"
-version = "1.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
-dependencies = [
- "libc",
- "wasi 0.11.1+wasi-snapshot-preview1",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "moxcms"
-version = "0.7.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
-dependencies = [
- "num-traits",
- "pxfm",
-]
-
-[[package]]
-name = "muda"
-version = "0.17.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a"
-dependencies = [
- "crossbeam-channel",
- "dpi",
- "gtk",
- "keyboard-types",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-foundation",
- "once_cell",
- "png 0.17.16",
- "serde",
- "thiserror 2.0.18",
- "windows-sys 0.60.2",
-]
-
-[[package]]
-name = "ndk"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
-dependencies = [
- "bitflags 2.10.0",
- "jni-sys",
- "log",
- "ndk-sys",
- "num_enum",
- "raw-window-handle",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "ndk-context"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
-
-[[package]]
-name = "ndk-sys"
-version = "0.6.0+11769913"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
-dependencies = [
- "jni-sys",
-]
-
-[[package]]
-name = "new_debug_unreachable"
-version = "1.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
-
-[[package]]
-name = "nodrop"
-version = "0.1.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb"
-
-[[package]]
-name = "nom"
-version = "8.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "notify-rust"
-version = "4.11.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6442248665a5aa2514e794af3b39661a8e73033b1cc5e59899e1276117ee4400"
-dependencies = [
- "futures-lite",
- "log",
- "mac-notification-sys",
- "serde",
- "tauri-winrt-notification",
- "zbus",
-]
-
-[[package]]
-name = "nu-ansi-term"
-version = "0.50.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
-dependencies = [
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "num-conv"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
-
-[[package]]
-name = "num-traits"
-version = "0.2.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
-dependencies = [
- "autocfg",
-]
-
-[[package]]
-name = "num_cpus"
-version = "1.17.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
-dependencies = [
- "hermit-abi",
- "libc",
-]
-
-[[package]]
-name = "num_enum"
-version = "0.7.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
-dependencies = [
- "num_enum_derive",
- "rustversion",
-]
-
-[[package]]
-name = "num_enum_derive"
-version = "0.7.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
-dependencies = [
- "proc-macro-crate 3.4.0",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "objc2"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
-dependencies = [
- "objc2-encode",
- "objc2-exception-helper",
-]
-
-[[package]]
-name = "objc2-app-kit"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
-dependencies = [
- "bitflags 2.10.0",
- "block2",
- "libc",
- "objc2",
- "objc2-cloud-kit",
- "objc2-core-data",
- "objc2-core-foundation",
- "objc2-core-graphics",
- "objc2-core-image",
- "objc2-core-text",
- "objc2-core-video",
- "objc2-foundation",
- "objc2-quartz-core",
-]
-
-[[package]]
-name = "objc2-cloud-kit"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "73ad74d880bb43877038da939b7427bba67e9dd42004a18b809ba7d87cee241c"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-core-data"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b402a653efbb5e82ce4df10683b6b28027616a2715e90009947d50b8dd298fa"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-core-foundation"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
-dependencies = [
- "bitflags 2.10.0",
- "dispatch2",
- "objc2",
-]
-
-[[package]]
-name = "objc2-core-graphics"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
-dependencies = [
- "bitflags 2.10.0",
- "dispatch2",
- "objc2",
- "objc2-core-foundation",
- "objc2-io-surface",
-]
-
-[[package]]
-name = "objc2-core-image"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e5d563b38d2b97209f8e861173de434bd0214cf020e3423a52624cd1d989f006"
-dependencies = [
- "objc2",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-core-text"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0cde0dfb48d25d2b4862161a4d5fcc0e3c24367869ad306b0c9ec0073bfed92d"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
- "objc2-core-graphics",
-]
-
-[[package]]
-name = "objc2-core-video"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d425caf1df73233f29fd8a5c3e5edbc30d2d4307870f802d18f00d83dc5141a6"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
- "objc2-core-graphics",
- "objc2-io-surface",
-]
-
-[[package]]
-name = "objc2-encode"
-version = "4.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
-
-[[package]]
-name = "objc2-exception-helper"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a"
-dependencies = [
- "cc",
-]
-
-[[package]]
-name = "objc2-foundation"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
-dependencies = [
- "bitflags 2.10.0",
- "block2",
- "libc",
- "objc2",
- "objc2-core-foundation",
-]
-
-[[package]]
-name = "objc2-io-surface"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
-]
-
-[[package]]
-name = "objc2-javascript-core"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a1e6550c4caed348956ce3370c9ffeca70bb1dbed4fa96112e7c6170e074586"
-dependencies = [
- "objc2",
- "objc2-core-foundation",
-]
-
-[[package]]
-name = "objc2-osa-kit"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f112d1746737b0da274ef79a23aac283376f335f4095a083a267a082f21db0c0"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-quartz-core"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-security"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
-]
-
-[[package]]
-name = "objc2-ui-kit"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22"
-dependencies = [
- "bitflags 2.10.0",
- "objc2",
- "objc2-core-foundation",
- "objc2-foundation",
-]
-
-[[package]]
-name = "objc2-web-kit"
-version = "0.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f"
-dependencies = [
- "bitflags 2.10.0",
- "block2",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-foundation",
- "objc2-javascript-core",
- "objc2-security",
-]
-
-[[package]]
-name = "once_cell"
-version = "1.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
-
-[[package]]
-name = "opaque-debug"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
-
-[[package]]
-name = "open"
-version = "5.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "43bb73a7fa3799b198970490a51174027ba0d4ec504b03cd08caf513d40024bc"
-dependencies = [
- "dunce",
- "is-wsl",
- "libc",
- "pathdiff",
-]
-
-[[package]]
-name = "option-ext"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
-
-[[package]]
-name = "ordered-multimap"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49203cdcae0030493bad186b28da2fa25645fa276a51b6fec8010d281e02ef79"
-dependencies = [
- "dlv-list",
- "hashbrown 0.14.5",
-]
-
-[[package]]
-name = "ordered-stream"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
-dependencies = [
- "futures-core",
- "pin-project-lite",
-]
-
-[[package]]
-name = "os_pipe"
-version = "1.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7d8fae84b431384b68627d0f9b3b1245fcf9f46f6c0e3dc902e9dce64edd1967"
-dependencies = [
- "libc",
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "osakit"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b"
-dependencies = [
- "objc2",
- "objc2-foundation",
- "objc2-osa-kit",
- "serde",
- "serde_json",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "paarrot"
-version = "4.10.2"
-dependencies = [
- "arboard",
- "base64 0.22.1",
- "gtk",
- "log",
- "matrix-sdk",
- "open",
- "png 0.17.16",
- "ppv-lite86",
- "serde",
- "serde_json",
- "tauri",
- "tauri-build",
- "tauri-plugin-autostart",
- "tauri-plugin-deep-link",
- "tauri-plugin-dialog",
- "tauri-plugin-http",
- "tauri-plugin-localhost",
- "tauri-plugin-notification",
- "tauri-plugin-opener",
- "tauri-plugin-process",
- "tauri-plugin-single-instance",
- "tauri-plugin-updater",
- "tauri-plugin-window-state",
- "tokio",
- "webkit2gtk",
-]
-
-[[package]]
-name = "pango"
-version = "0.18.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4"
-dependencies = [
- "gio",
- "glib",
- "libc",
- "once_cell",
- "pango-sys",
-]
-
-[[package]]
-name = "pango-sys"
-version = "0.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5"
-dependencies = [
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "parking"
-version = "2.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
-
-[[package]]
-name = "parking_lot"
-version = "0.12.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
-dependencies = [
- "lock_api",
- "parking_lot_core",
-]
-
-[[package]]
-name = "parking_lot_core"
-version = "0.9.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
-dependencies = [
- "cfg-if",
- "libc",
- "redox_syscall 0.5.18",
- "smallvec",
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "pathdiff"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
-
-[[package]]
-name = "pbkdf2"
-version = "0.12.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
-dependencies = [
- "digest",
- "hmac",
-]
-
-[[package]]
-name = "percent-encoding"
-version = "2.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
-
-[[package]]
-name = "petgraph"
-version = "0.8.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
-dependencies = [
- "fixedbitset",
- "hashbrown 0.15.5",
- "indexmap 2.13.0",
-]
-
-[[package]]
-name = "phf"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
-dependencies = [
- "phf_shared 0.8.0",
-]
-
-[[package]]
-name = "phf"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
-dependencies = [
- "phf_macros 0.10.0",
- "phf_shared 0.10.0",
- "proc-macro-hack",
-]
-
-[[package]]
-name = "phf"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
-dependencies = [
- "phf_macros 0.11.3",
- "phf_shared 0.11.3",
-]
-
-[[package]]
-name = "phf_codegen"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
-dependencies = [
- "phf_generator 0.8.0",
- "phf_shared 0.8.0",
-]
-
-[[package]]
-name = "phf_codegen"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
-dependencies = [
- "phf_generator 0.11.3",
- "phf_shared 0.11.3",
-]
-
-[[package]]
-name = "phf_generator"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
-dependencies = [
- "phf_shared 0.8.0",
- "rand 0.7.3",
-]
-
-[[package]]
-name = "phf_generator"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
-dependencies = [
- "phf_shared 0.10.0",
- "rand 0.8.5",
-]
-
-[[package]]
-name = "phf_generator"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
-dependencies = [
- "phf_shared 0.11.3",
- "rand 0.8.5",
-]
-
-[[package]]
-name = "phf_macros"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
-dependencies = [
- "phf_generator 0.10.0",
- "phf_shared 0.10.0",
- "proc-macro-hack",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
-]
-
-[[package]]
-name = "phf_macros"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
-dependencies = [
- "phf_generator 0.11.3",
- "phf_shared 0.11.3",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "phf_shared"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
-dependencies = [
- "siphasher 0.3.11",
-]
-
-[[package]]
-name = "phf_shared"
-version = "0.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
-dependencies = [
- "siphasher 0.3.11",
-]
-
-[[package]]
-name = "phf_shared"
-version = "0.11.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
-dependencies = [
- "siphasher 1.0.1",
-]
-
-[[package]]
-name = "pin-project-lite"
-version = "0.2.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
-
-[[package]]
-name = "pin-utils"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-[[package]]
-name = "piper"
-version = "0.2.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
-dependencies = [
- "atomic-waker",
- "fastrand",
- "futures-io",
-]
-
-[[package]]
-name = "pkcs7"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d79178be066405e0602bf3035946edef6b11b3f9dde46dfe5f8bfd7dea4b77e7"
-dependencies = [
- "der",
- "spki",
- "x509-cert",
-]
-
-[[package]]
-name = "pkcs8"
-version = "0.10.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
-dependencies = [
- "der",
- "spki",
-]
-
-[[package]]
-name = "pkg-config"
-version = "0.3.32"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
-
-[[package]]
-name = "plist"
-version = "1.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
-dependencies = [
- "base64 0.22.1",
- "indexmap 2.13.0",
- "quick-xml 0.38.4",
- "serde",
- "time",
-]
-
-[[package]]
-name = "png"
-version = "0.17.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
-dependencies = [
- "bitflags 1.3.2",
- "crc32fast",
- "fdeflate",
- "flate2",
- "miniz_oxide",
-]
-
-[[package]]
-name = "png"
-version = "0.18.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
-dependencies = [
- "bitflags 2.10.0",
- "crc32fast",
- "fdeflate",
- "flate2",
- "miniz_oxide",
-]
-
-[[package]]
-name = "polling"
-version = "3.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
-dependencies = [
- "cfg-if",
- "concurrent-queue",
- "hermit-abi",
- "pin-project-lite",
- "rustix",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "poly1305"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
-dependencies = [
- "cpufeatures",
- "opaque-debug",
- "universal-hash",
-]
-
-[[package]]
-name = "potential_utf"
-version = "0.1.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
-dependencies = [
- "zerovec",
-]
-
-[[package]]
-name = "powerfmt"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
-
-[[package]]
-name = "ppv-lite86"
-version = "0.2.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
-dependencies = [
- "zerocopy 0.7.35",
-]
-
-[[package]]
-name = "precomputed-hash"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
-
-[[package]]
-name = "proc-macro-crate"
-version = "1.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
-dependencies = [
- "once_cell",
- "toml_edit 0.19.15",
-]
-
-[[package]]
-name = "proc-macro-crate"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24"
-dependencies = [
- "toml_datetime 0.6.3",
- "toml_edit 0.20.2",
-]
-
-[[package]]
-name = "proc-macro-crate"
-version = "3.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
-dependencies = [
- "toml_edit 0.23.10+spec-1.0.0",
-]
-
-[[package]]
-name = "proc-macro-error"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-dependencies = [
- "proc-macro-error-attr",
- "proc-macro2",
- "quote",
- "syn 1.0.109",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro-error-attr"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-dependencies = [
- "proc-macro2",
- "quote",
- "version_check",
-]
-
-[[package]]
-name = "proc-macro-error-attr2"
-version = "2.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
-dependencies = [
- "proc-macro2",
- "quote",
-]
-
-[[package]]
-name = "proc-macro-error2"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
-dependencies = [
- "proc-macro-error-attr2",
- "proc-macro2",
- "quote",
-]
-
-[[package]]
-name = "proc-macro-hack"
-version = "0.5.20+deprecated"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
-
-[[package]]
-name = "proc-macro2"
-version = "1.0.106"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "prost"
-version = "0.13.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
-dependencies = [
- "bytes",
- "prost-derive",
-]
-
-[[package]]
-name = "prost-derive"
-version = "0.13.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
-dependencies = [
- "anyhow",
- "itertools 0.14.0",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "psl-types"
-version = "2.0.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
-
-[[package]]
-name = "publicsuffix"
-version = "2.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6f42ea446cab60335f76979ec15e12619a2165b5ae2c12166bef27d283a9fadf"
-dependencies = [
- "idna",
- "psl-types",
-]
-
-[[package]]
-name = "pxfm"
-version = "0.1.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "quick-error"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
-
-[[package]]
-name = "quick-xml"
-version = "0.37.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "quick-xml"
-version = "0.38.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "quinn"
-version = "0.11.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
-dependencies = [
- "bytes",
- "cfg_aliases",
- "pin-project-lite",
- "quinn-proto",
- "quinn-udp",
- "rustc-hash",
- "rustls 0.23.36",
- "socket2 0.5.10",
- "thiserror 2.0.18",
- "tokio",
- "tracing",
- "web-time",
-]
-
-[[package]]
-name = "quinn-proto"
-version = "0.11.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
-dependencies = [
- "bytes",
- "getrandom 0.3.4",
- "lru-slab",
- "rand 0.9.2",
- "ring",
- "rustc-hash",
- "rustls 0.23.36",
- "rustls-pki-types",
- "slab",
- "thiserror 2.0.18",
- "tinyvec",
- "tracing",
- "web-time",
-]
-
-[[package]]
-name = "quinn-udp"
-version = "0.5.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
-dependencies = [
- "cfg_aliases",
- "libc",
- "once_cell",
- "socket2 0.5.10",
- "tracing",
- "windows-sys 0.60.2",
-]
-
-[[package]]
-name = "quote"
-version = "1.0.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
-dependencies = [
- "proc-macro2",
-]
-
-[[package]]
-name = "r-efi"
-version = "5.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
-
-[[package]]
-name = "rand"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-dependencies = [
- "getrandom 0.1.16",
- "libc",
- "rand_chacha 0.2.2",
- "rand_core 0.5.1",
- "rand_hc",
- "rand_pcg",
-]
-
-[[package]]
-name = "rand"
-version = "0.8.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-dependencies = [
- "libc",
- "rand_chacha 0.3.1",
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "rand"
-version = "0.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
-dependencies = [
- "rand_chacha 0.9.0",
- "rand_core 0.9.5",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "rand_chacha"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
-dependencies = [
- "ppv-lite86",
- "rand_core 0.9.5",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-dependencies = [
- "getrandom 0.1.16",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.6.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-dependencies = [
- "getrandom 0.2.17",
-]
-
-[[package]]
-name = "rand_core"
-version = "0.9.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
-dependencies = [
- "getrandom 0.3.4",
-]
-
-[[package]]
-name = "rand_hc"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-dependencies = [
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_pcg"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
-dependencies = [
- "rand_core 0.5.1",
-]
-
-[[package]]
-name = "rand_xoshiro"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
-dependencies = [
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "raw-window-handle"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
-
-[[package]]
-name = "readlock"
-version = "0.1.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6961798ceb493ecff2e50d3d9a6a9108124ee8298f81484d0ff623b6c32469e9"
-
-[[package]]
-name = "redox_syscall"
-version = "0.5.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
-dependencies = [
- "bitflags 2.10.0",
-]
-
-[[package]]
-name = "redox_syscall"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
-dependencies = [
- "bitflags 2.10.0",
-]
-
-[[package]]
-name = "redox_users"
-version = "0.4.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
-dependencies = [
- "getrandom 0.2.17",
- "libredox",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "redox_users"
-version = "0.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
-dependencies = [
- "getrandom 0.2.17",
- "libredox",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "ref-cast"
-version = "1.0.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
-dependencies = [
- "ref-cast-impl",
-]
-
-[[package]]
-name = "ref-cast-impl"
-version = "1.0.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "regex"
-version = "1.12.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
-dependencies = [
- "aho-corasick",
- "memchr",
- "regex-automata",
- "regex-syntax",
-]
-
-[[package]]
-name = "regex-automata"
-version = "0.4.13"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
-dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
-]
-
-[[package]]
-name = "regex-syntax"
-version = "0.8.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
-
-[[package]]
-name = "reqwest"
-version = "0.11.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
-dependencies = [
- "base64 0.21.7",
- "bytes",
- "encoding_rs",
- "futures-core",
- "futures-util",
- "h2 0.3.27",
- "http 0.2.12",
- "http-body 0.4.6",
- "hyper 0.14.32",
- "hyper-rustls 0.24.2",
- "ipnet",
- "js-sys",
- "log",
- "mime",
- "once_cell",
- "percent-encoding",
- "pin-project-lite",
- "rustls 0.21.12",
- "rustls-pemfile",
- "serde",
- "serde_json",
- "serde_urlencoded",
- "sync_wrapper 0.1.2",
- "system-configuration",
- "tokio",
- "tokio-rustls 0.24.1",
- "tokio-util",
- "tower-service",
- "url",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-streams 0.4.2",
- "web-sys",
- "webpki-roots 0.25.4",
- "winreg 0.50.0",
-]
-
-[[package]]
-name = "reqwest"
-version = "0.12.28"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
-dependencies = [
- "base64 0.22.1",
- "bytes",
- "cookie",
- "cookie_store 0.22.0",
- "encoding_rs",
- "futures-core",
- "futures-util",
- "h2 0.4.13",
- "http 1.4.0",
- "http-body 1.0.1",
- "http-body-util",
- "hyper 1.8.1",
- "hyper-rustls 0.27.7",
- "hyper-util",
- "js-sys",
- "log",
- "mime",
- "percent-encoding",
- "pin-project-lite",
- "quinn",
- "rustls 0.23.36",
- "rustls-pki-types",
- "serde",
- "serde_json",
- "serde_urlencoded",
- "sync_wrapper 1.0.2",
- "tokio",
- "tokio-rustls 0.26.4",
- "tokio-util",
- "tower",
- "tower-http",
- "tower-service",
- "url",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-streams 0.4.2",
- "web-sys",
- "webpki-roots 1.0.5",
-]
-
-[[package]]
-name = "reqwest"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
-dependencies = [
- "base64 0.22.1",
- "bytes",
- "futures-core",
- "futures-util",
- "http 1.4.0",
- "http-body 1.0.1",
- "http-body-util",
- "hyper 1.8.1",
- "hyper-util",
- "js-sys",
- "log",
- "percent-encoding",
- "pin-project-lite",
- "serde",
- "serde_json",
- "sync_wrapper 1.0.2",
- "tokio",
- "tokio-util",
- "tower",
- "tower-http",
- "tower-service",
- "url",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-streams 0.5.0",
- "web-sys",
-]
-
-[[package]]
-name = "rfd"
-version = "0.16.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672"
-dependencies = [
- "block2",
- "dispatch2",
- "glib-sys",
- "gobject-sys",
- "gtk-sys",
- "js-sys",
- "log",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-foundation",
- "raw-window-handle",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- "windows-sys 0.60.2",
-]
-
-[[package]]
-name = "ring"
-version = "0.17.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
-dependencies = [
- "cc",
- "cfg-if",
- "getrandom 0.2.17",
- "libc",
- "untrusted",
- "windows-sys 0.52.0",
-]
-
-[[package]]
-name = "rmp"
-version = "0.8.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
-dependencies = [
- "num-traits",
-]
-
-[[package]]
-name = "rmp-serde"
-version = "1.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
-dependencies = [
- "rmp",
- "serde",
-]
-
-[[package]]
-name = "ruma"
-version = "0.9.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2779c38df072964c63476259d9300efb07d0d1a7178c6469893636ce0c547a36"
-dependencies = [
- "assign",
- "js_int",
- "js_option",
- "ruma-client-api",
- "ruma-common",
- "ruma-events",
- "ruma-federation-api",
-]
-
-[[package]]
-name = "ruma-client-api"
-version = "0.17.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "641837258fa214a70823477514954ef0f5d3bc6ae8e1d5d85081856a33103386"
-dependencies = [
- "assign",
- "bytes",
- "http 0.2.12",
- "js_int",
- "js_option",
- "maplit",
- "ruma-common",
- "ruma-events",
- "serde",
- "serde_html_form",
- "serde_json",
-]
-
-[[package]]
-name = "ruma-common"
-version = "0.12.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3bca4c33c50e47b4cdceeac71bdef0c04153b0e29aa992d9030ec14a62323e85"
-dependencies = [
- "as_variant",
- "base64 0.21.7",
- "bytes",
- "form_urlencoded",
- "getrandom 0.2.17",
- "http 0.2.12",
- "indexmap 2.13.0",
- "js-sys",
- "js_int",
- "konst",
- "percent-encoding",
- "rand 0.8.5",
- "regex",
- "ruma-identifiers-validation",
- "ruma-macros",
- "serde",
- "serde_html_form",
- "serde_json",
- "thiserror 1.0.69",
- "tracing",
- "url",
- "uuid",
- "wildmatch",
-]
-
-[[package]]
-name = "ruma-events"
-version = "0.27.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d20a52770e5a9fb30b7a1c14ba8b3dcf76dadc01674e58e40094f78e6bd5e3f1"
-dependencies = [
- "as_variant",
- "indexmap 2.13.0",
- "js_int",
- "js_option",
- "percent-encoding",
- "regex",
- "ruma-common",
- "ruma-identifiers-validation",
- "ruma-macros",
- "serde",
- "serde_json",
- "thiserror 1.0.69",
- "tracing",
- "url",
- "wildmatch",
-]
-
-[[package]]
-name = "ruma-federation-api"
-version = "0.8.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e1901c1f27bc327652d58af2a130c73acef3198abeccd24cee97f7267fdf3fe7"
-dependencies = [
- "js_int",
- "ruma-common",
- "ruma-events",
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "ruma-identifiers-validation"
-version = "0.9.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9fa38974f5901ed4e00e10aec57b9ad3b4d6d6c1a1ae683c51b88700b9f4ffba"
-dependencies = [
- "js_int",
- "thiserror 1.0.69",
-]
-
-[[package]]
-name = "ruma-macros"
-version = "0.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0280534a4b3e34416f883285fac4f9c408cd0b737890ae66f3e7a7056d14be80"
-dependencies = [
- "once_cell",
- "proc-macro-crate 2.0.2",
- "proc-macro2",
- "quote",
- "ruma-identifiers-validation",
- "serde",
- "syn 2.0.114",
- "toml 0.8.2",
-]
-
-[[package]]
-name = "rusqlite"
-version = "0.30.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d"
-dependencies = [
- "bitflags 2.10.0",
- "fallible-iterator",
- "fallible-streaming-iterator",
- "hashlink",
- "libsqlite3-sys",
- "smallvec",
-]
-
-[[package]]
-name = "rust-ini"
-version = "0.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "796e8d2b6696392a43bea58116b667fb4c29727dc5abd27d6acf338bb4f688c7"
-dependencies = [
- "cfg-if",
- "ordered-multimap",
-]
-
-[[package]]
-name = "rustc-hash"
-version = "2.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
-
-[[package]]
-name = "rustc_version"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
-dependencies = [
- "semver",
-]
-
-[[package]]
-name = "rustix"
-version = "1.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
-dependencies = [
- "bitflags 2.10.0",
- "errno",
- "libc",
- "linux-raw-sys",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "rustls"
-version = "0.21.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
-dependencies = [
- "log",
- "ring",
- "rustls-webpki 0.101.7",
- "sct",
-]
-
-[[package]]
-name = "rustls"
-version = "0.23.36"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
-dependencies = [
- "once_cell",
- "ring",
- "rustls-pki-types",
- "rustls-webpki 0.103.9",
- "subtle",
- "zeroize",
-]
-
-[[package]]
-name = "rustls-pemfile"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
-dependencies = [
- "base64 0.21.7",
-]
-
-[[package]]
-name = "rustls-pki-types"
-version = "1.14.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
-dependencies = [
- "web-time",
- "zeroize",
-]
-
-[[package]]
-name = "rustls-webpki"
-version = "0.101.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
-dependencies = [
- "ring",
- "untrusted",
-]
-
-[[package]]
-name = "rustls-webpki"
-version = "0.103.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
-dependencies = [
- "ring",
- "rustls-pki-types",
- "untrusted",
-]
-
-[[package]]
-name = "rustversion"
-version = "1.0.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
-
-[[package]]
-name = "ryu"
-version = "1.0.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
-
-[[package]]
-name = "same-file"
-version = "1.0.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
-dependencies = [
- "winapi-util",
-]
-
-[[package]]
-name = "schemars"
-version = "0.8.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
-dependencies = [
- "dyn-clone",
- "indexmap 1.9.3",
- "schemars_derive",
- "serde",
- "serde_json",
- "url",
- "uuid",
-]
-
-[[package]]
-name = "schemars"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
-dependencies = [
- "dyn-clone",
- "ref-cast",
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "schemars"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2"
-dependencies = [
- "dyn-clone",
- "ref-cast",
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "schemars_derive"
-version = "0.8.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
-dependencies = [
- "proc-macro2",
- "quote",
- "serde_derive_internals",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "scopeguard"
-version = "1.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
-
-[[package]]
-name = "sct"
-version = "0.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
-dependencies = [
- "ring",
- "untrusted",
-]
-
-[[package]]
-name = "selectors"
-version = "0.24.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416"
-dependencies = [
- "bitflags 1.3.2",
- "cssparser",
- "derive_more",
- "fxhash",
- "log",
- "phf 0.8.0",
- "phf_codegen 0.8.0",
- "precomputed-hash",
- "servo_arc",
- "smallvec",
-]
-
-[[package]]
-name = "semver"
-version = "1.0.27"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
-dependencies = [
- "serde",
- "serde_core",
-]
-
-[[package]]
-name = "serde"
-version = "1.0.228"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
-dependencies = [
- "serde_core",
- "serde_derive",
-]
-
-[[package]]
-name = "serde-untagged"
-version = "0.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058"
-dependencies = [
- "erased-serde",
- "serde",
- "serde_core",
- "typeid",
-]
-
-[[package]]
-name = "serde-wasm-bindgen"
-version = "0.6.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
-dependencies = [
- "js-sys",
- "serde",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "serde_bytes"
-version = "0.11.19"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
-dependencies = [
- "serde",
- "serde_core",
-]
-
-[[package]]
-name = "serde_core"
-version = "1.0.228"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
-dependencies = [
- "serde_derive",
-]
-
-[[package]]
-name = "serde_derive"
-version = "1.0.228"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "serde_derive_internals"
-version = "0.29.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "serde_html_form"
-version = "0.2.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
-dependencies = [
- "form_urlencoded",
- "indexmap 2.13.0",
- "itoa",
- "ryu",
- "serde_core",
-]
-
-[[package]]
-name = "serde_json"
-version = "1.0.149"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
-dependencies = [
- "itoa",
- "memchr",
- "serde",
- "serde_core",
- "zmij",
-]
-
-[[package]]
-name = "serde_repr"
-version = "0.1.20"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "serde_spanned"
-version = "0.6.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "serde_spanned"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
-dependencies = [
- "serde_core",
-]
-
-[[package]]
-name = "serde_urlencoded"
-version = "0.7.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
-dependencies = [
- "form_urlencoded",
- "itoa",
- "ryu",
- "serde",
-]
-
-[[package]]
-name = "serde_with"
-version = "3.16.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
-dependencies = [
- "base64 0.22.1",
- "chrono",
- "hex",
- "indexmap 1.9.3",
- "indexmap 2.13.0",
- "schemars 0.9.0",
- "schemars 1.2.0",
- "serde_core",
- "serde_json",
- "serde_with_macros",
- "time",
-]
-
-[[package]]
-name = "serde_with_macros"
-version = "3.16.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
-dependencies = [
- "darling",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "serialize-to-javascript"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5"
-dependencies = [
- "serde",
- "serde_json",
- "serialize-to-javascript-impl",
-]
-
-[[package]]
-name = "serialize-to-javascript-impl"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "servo_arc"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741"
-dependencies = [
- "nodrop",
- "stable_deref_trait",
-]
-
-[[package]]
-name = "sha2"
-version = "0.10.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
-dependencies = [
- "cfg-if",
- "cpufeatures",
- "digest",
-]
-
-[[package]]
-name = "sharded-slab"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
-dependencies = [
- "lazy_static",
-]
-
-[[package]]
-name = "shlex"
-version = "1.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
-
-[[package]]
-name = "signal-hook-registry"
-version = "1.4.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
-dependencies = [
- "errno",
- "libc",
-]
-
-[[package]]
-name = "signature"
-version = "2.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
-dependencies = [
- "rand_core 0.6.4",
-]
-
-[[package]]
-name = "simd-adler32"
-version = "0.3.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
-
-[[package]]
-name = "siphasher"
-version = "0.3.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
-
-[[package]]
-name = "siphasher"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
-
-[[package]]
-name = "slab"
-version = "0.4.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
-
-[[package]]
-name = "smallvec"
-version = "1.15.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
-
-[[package]]
-name = "socket2"
-version = "0.5.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
-dependencies = [
- "libc",
- "windows-sys 0.52.0",
-]
-
-[[package]]
-name = "socket2"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
-dependencies = [
- "libc",
- "windows-sys 0.60.2",
-]
-
-[[package]]
-name = "softbuffer"
-version = "0.4.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3"
-dependencies = [
- "bytemuck",
- "js-sys",
- "ndk",
- "objc2",
- "objc2-core-foundation",
- "objc2-core-graphics",
- "objc2-foundation",
- "objc2-quartz-core",
- "raw-window-handle",
- "redox_syscall 0.5.18",
- "tracing",
- "wasm-bindgen",
- "web-sys",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "soup3"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f"
-dependencies = [
- "futures-channel",
- "gio",
- "glib",
- "libc",
- "soup3-sys",
-]
-
-[[package]]
-name = "soup3-sys"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27"
-dependencies = [
- "gio-sys",
- "glib-sys",
- "gobject-sys",
- "libc",
- "system-deps",
-]
-
-[[package]]
-name = "spki"
-version = "0.7.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
-dependencies = [
- "base64ct",
- "der",
-]
-
-[[package]]
-name = "stable_deref_trait"
-version = "1.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
-
-[[package]]
-name = "string_cache"
-version = "0.8.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
-dependencies = [
- "new_debug_unreachable",
- "parking_lot",
- "phf_shared 0.11.3",
- "precomputed-hash",
- "serde",
-]
-
-[[package]]
-name = "string_cache_codegen"
-version = "0.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
-dependencies = [
- "phf_generator 0.11.3",
- "phf_shared 0.11.3",
- "proc-macro2",
- "quote",
-]
-
-[[package]]
-name = "strsim"
-version = "0.11.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
-
-[[package]]
-name = "subtle"
-version = "2.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
-
-[[package]]
-name = "swift-rs"
-version = "1.0.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7"
-dependencies = [
- "base64 0.21.7",
- "serde",
- "serde_json",
-]
-
-[[package]]
-name = "syn"
-version = "1.0.109"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "syn"
-version = "2.0.114"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
-dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
-]
-
-[[package]]
-name = "sync_wrapper"
-version = "0.1.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
-
-[[package]]
-name = "sync_wrapper"
-version = "1.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
-dependencies = [
- "futures-core",
-]
-
-[[package]]
-name = "synstructure"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "system-configuration"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
-dependencies = [
- "bitflags 1.3.2",
- "core-foundation 0.9.4",
- "system-configuration-sys",
-]
-
-[[package]]
-name = "system-configuration-sys"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
-dependencies = [
- "core-foundation-sys",
- "libc",
-]
-
-[[package]]
-name = "system-deps"
-version = "6.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
-dependencies = [
- "cfg-expr",
- "heck 0.5.0",
- "pkg-config",
- "toml 0.8.2",
- "version-compare",
-]
-
-[[package]]
-name = "tao"
-version = "0.34.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3a753bdc39c07b192151523a3f77cd0394aa75413802c883a0f6f6a0e5ee2e7"
-dependencies = [
- "bitflags 2.10.0",
- "block2",
- "core-foundation 0.10.1",
- "core-graphics",
- "crossbeam-channel",
- "dispatch",
- "dlopen2",
- "dpi",
- "gdkwayland-sys",
- "gdkx11-sys",
- "gtk",
- "jni",
- "lazy_static",
- "libc",
- "log",
- "ndk",
- "ndk-context",
- "ndk-sys",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
- "once_cell",
- "parking_lot",
- "raw-window-handle",
- "scopeguard",
- "tao-macros",
- "unicode-segmentation",
- "url",
- "windows",
- "windows-core 0.61.2",
- "windows-version",
- "x11-dl",
-]
-
-[[package]]
-name = "tao-macros"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "tar"
-version = "0.4.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a"
-dependencies = [
- "filetime",
- "libc",
- "xattr",
-]
-
-[[package]]
-name = "target-lexicon"
-version = "0.12.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
-
-[[package]]
-name = "tauri"
-version = "2.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1025aa560c1eaa14ef96de5540cbe13ed6be1933ebe4398338c96bc370b807c6"
-dependencies = [
- "anyhow",
- "bytes",
- "cookie",
- "dirs 6.0.0",
- "dunce",
- "embed_plist",
- "getrandom 0.3.4",
- "glob",
- "gtk",
- "heck 0.5.0",
- "http 1.4.0",
- "image",
- "jni",
- "libc",
- "log",
- "mime",
- "muda",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
- "objc2-ui-kit",
- "objc2-web-kit",
- "percent-encoding",
- "plist",
- "raw-window-handle",
- "reqwest 0.13.2",
- "serde",
- "serde_json",
- "serde_repr",
- "serialize-to-javascript",
- "swift-rs",
- "tauri-build",
- "tauri-macros",
- "tauri-runtime",
- "tauri-runtime-wry",
- "tauri-utils",
- "thiserror 2.0.18",
- "tokio",
- "tray-icon",
- "url",
- "webkit2gtk",
- "webview2-com",
- "window-vibrancy",
- "windows",
-]
-
-[[package]]
-name = "tauri-build"
-version = "2.5.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ca7bd893329425df750813e95bd2b643d5369d929438da96d5bbb7cc2c918f74"
-dependencies = [
- "anyhow",
- "cargo_toml",
- "dirs 6.0.0",
- "glob",
- "heck 0.5.0",
- "json-patch",
- "schemars 0.8.22",
- "semver",
- "serde",
- "serde_json",
- "tauri-utils",
- "tauri-winres",
- "toml 0.9.11+spec-1.1.0",
- "walkdir",
-]
-
-[[package]]
-name = "tauri-codegen"
-version = "2.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "aac423e5859d9f9ccdd32e3cf6a5866a15bedbf25aa6630bcb2acde9468f6ae3"
-dependencies = [
- "base64 0.22.1",
- "brotli",
- "ico",
- "json-patch",
- "plist",
- "png 0.17.16",
- "proc-macro2",
- "quote",
- "semver",
- "serde",
- "serde_json",
- "sha2",
- "syn 2.0.114",
- "tauri-utils",
- "thiserror 2.0.18",
- "time",
- "url",
- "uuid",
- "walkdir",
-]
-
-[[package]]
-name = "tauri-macros"
-version = "2.5.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b6a1bd2861ff0c8766b1d38b32a6a410f6dc6532d4ef534c47cfb2236092f59"
-dependencies = [
- "heck 0.5.0",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "tauri-codegen",
- "tauri-utils",
-]
-
-[[package]]
-name = "tauri-plugin"
-version = "2.5.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0e1d0a4860b7ff570c891e1d2a586bf1ede205ff858fbc305e0b5ae5d14c1377"
-dependencies = [
- "anyhow",
- "glob",
- "plist",
- "schemars 0.8.22",
- "serde",
- "serde_json",
- "tauri-utils",
- "toml 0.9.11+spec-1.1.0",
- "walkdir",
-]
-
-[[package]]
-name = "tauri-plugin-autostart"
-version = "2.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "459383cebc193cdd03d1ba4acc40f2c408a7abce419d64bdcd2d745bc2886f70"
-dependencies = [
- "auto-launch",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "tauri-plugin-deep-link"
-version = "2.4.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "444b091f24f2f6bdb4a305b54d3961f629c11861c685aceeea9a1972f89e43d5"
-dependencies = [
- "dunce",
- "plist",
- "rust-ini",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "tauri-utils",
- "thiserror 2.0.18",
- "tracing",
- "url",
- "windows-registry",
- "windows-result 0.3.4",
-]
-
-[[package]]
-name = "tauri-plugin-dialog"
-version = "2.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9204b425d9be8d12aa60c2a83a289cf7d1caae40f57f336ed1155b3a5c0e359b"
-dependencies = [
- "log",
- "raw-window-handle",
- "rfd",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "tauri-plugin-fs",
- "thiserror 2.0.18",
- "url",
-]
-
-[[package]]
-name = "tauri-plugin-fs"
-version = "2.4.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed390cc669f937afeb8b28032ce837bac8ea023d975a2e207375ec05afaf1804"
-dependencies = [
- "anyhow",
- "dunce",
- "glob",
- "percent-encoding",
- "schemars 0.8.22",
- "serde",
- "serde_json",
- "serde_repr",
- "tauri",
- "tauri-plugin",
- "tauri-utils",
- "thiserror 2.0.18",
- "toml 0.9.11+spec-1.1.0",
- "url",
-]
-
-[[package]]
-name = "tauri-plugin-http"
-version = "2.5.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68bef611ccbfbce67c813959c11b23c1c084d201aa94222de9eba5f9edc3f897"
-dependencies = [
- "bytes",
- "cookie_store 0.21.1",
- "data-url",
- "http 1.4.0",
- "regex",
- "reqwest 0.12.28",
- "schemars 0.8.22",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "tauri-plugin-fs",
- "thiserror 2.0.18",
- "tokio",
- "url",
- "urlpattern",
-]
-
-[[package]]
-name = "tauri-plugin-localhost"
-version = "2.3.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1c8d72c024121b1a3d9268293d49a56baf01a8c785561c85d17872588b839e55"
-dependencies = [
- "http 1.4.0",
- "log",
- "serde",
- "serde_json",
- "tauri",
- "thiserror 2.0.18",
- "tiny_http",
-]
-
-[[package]]
-name = "tauri-plugin-notification"
-version = "2.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "01fc2c5ff41105bd1f7242d8201fdf3efd70749b82fa013a17f2126357d194cc"
-dependencies = [
- "log",
- "notify-rust",
- "rand 0.9.2",
- "serde",
- "serde_json",
- "serde_repr",
- "tauri",
- "tauri-plugin",
- "thiserror 2.0.18",
- "time",
- "url",
-]
-
-[[package]]
-name = "tauri-plugin-opener"
-version = "2.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc624469b06f59f5a29f874bbc61a2ed737c0f9c23ef09855a292c389c42e83f"
-dependencies = [
- "dunce",
- "glob",
- "objc2-app-kit",
- "objc2-foundation",
- "open",
- "schemars 0.8.22",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "thiserror 2.0.18",
- "url",
- "windows",
- "zbus",
-]
-
-[[package]]
-name = "tauri-plugin-process"
-version = "2.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d55511a7bf6cd70c8767b02c97bf8134fa434daf3926cfc1be0a0f94132d165a"
-dependencies = [
- "tauri",
- "tauri-plugin",
-]
-
-[[package]]
-name = "tauri-plugin-single-instance"
-version = "2.3.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "acba6b5ca527a96cdfcc96ae09b09ccb91ddff5e33978ca6873b96ea16bb404c"
-dependencies = [
- "serde",
- "serde_json",
- "tauri",
- "thiserror 2.0.18",
- "tracing",
- "windows-sys 0.60.2",
- "zbus",
-]
-
-[[package]]
-name = "tauri-plugin-updater"
-version = "2.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "27cbc31740f4d507712550694749572ec0e43bdd66992db7599b89fbfd6b167b"
-dependencies = [
- "base64 0.22.1",
- "dirs 6.0.0",
- "flate2",
- "futures-util",
- "http 1.4.0",
- "infer",
- "log",
- "minisign-verify",
- "osakit",
- "percent-encoding",
- "reqwest 0.12.28",
- "semver",
- "serde",
- "serde_json",
- "tar",
- "tauri",
- "tauri-plugin",
- "tempfile",
- "thiserror 2.0.18",
- "time",
- "tokio",
- "url",
- "windows-sys 0.60.2",
- "zip",
-]
-
-[[package]]
-name = "tauri-plugin-window-state"
-version = "2.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "73736611e14142408d15353e21e3cca2f12a3cfb523ad0ce85999b6d2ef1a704"
-dependencies = [
- "bitflags 2.10.0",
- "log",
- "serde",
- "serde_json",
- "tauri",
- "tauri-plugin",
- "thiserror 2.0.18",
-]
-
-[[package]]
-name = "tauri-runtime"
-version = "2.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b885ffeac82b00f1f6fd292b6e5aabfa7435d537cef57d11e38a489956535651"
-dependencies = [
- "cookie",
- "dpi",
- "gtk",
- "http 1.4.0",
- "jni",
- "objc2",
- "objc2-ui-kit",
- "objc2-web-kit",
- "raw-window-handle",
- "serde",
- "serde_json",
- "tauri-utils",
- "thiserror 2.0.18",
- "url",
- "webkit2gtk",
- "webview2-com",
- "windows",
-]
-
-[[package]]
-name = "tauri-runtime-wry"
-version = "2.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5204682391625e867d16584fedc83fc292fb998814c9f7918605c789cd876314"
-dependencies = [
- "gtk",
- "http 1.4.0",
- "jni",
- "log",
- "objc2",
- "objc2-app-kit",
- "objc2-foundation",
- "once_cell",
- "percent-encoding",
- "raw-window-handle",
- "softbuffer",
- "tao",
- "tauri-runtime",
- "tauri-utils",
- "url",
- "webkit2gtk",
- "webview2-com",
- "windows",
- "wry",
-]
-
-[[package]]
-name = "tauri-utils"
-version = "2.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fcd169fccdff05eff2c1033210b9b94acd07a47e6fa9a3431cf09cfd4f01c87e"
-dependencies = [
- "anyhow",
- "brotli",
- "cargo_metadata",
- "ctor",
- "dunce",
- "glob",
- "html5ever",
- "http 1.4.0",
- "infer",
- "json-patch",
- "kuchikiki",
- "log",
- "memchr",
- "phf 0.11.3",
- "proc-macro2",
- "quote",
- "regex",
- "schemars 0.8.22",
- "semver",
- "serde",
- "serde-untagged",
- "serde_json",
- "serde_with",
- "swift-rs",
- "thiserror 2.0.18",
- "toml 0.9.11+spec-1.1.0",
- "url",
- "urlpattern",
- "uuid",
- "walkdir",
-]
-
-[[package]]
-name = "tauri-winres"
-version = "0.3.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0"
-dependencies = [
- "dunce",
- "embed-resource",
- "toml 0.9.11+spec-1.1.0",
-]
-
-[[package]]
-name = "tauri-winrt-notification"
-version = "0.7.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b1e66e07de489fe43a46678dd0b8df65e0c973909df1b60ba33874e297ba9b9"
-dependencies = [
- "quick-xml 0.37.5",
- "thiserror 2.0.18",
- "windows",
- "windows-version",
-]
-
-[[package]]
-name = "tempfile"
-version = "3.24.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
-dependencies = [
- "fastrand",
- "getrandom 0.3.4",
- "once_cell",
- "rustix",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "tendril"
-version = "0.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
-dependencies = [
- "futf",
- "mac",
- "utf-8",
-]
-
-[[package]]
-name = "thiserror"
-version = "1.0.69"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
-dependencies = [
- "thiserror-impl 1.0.69",
-]
-
-[[package]]
-name = "thiserror"
-version = "2.0.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
-dependencies = [
- "thiserror-impl 2.0.18",
-]
-
-[[package]]
-name = "thiserror-impl"
-version = "1.0.69"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "thiserror-impl"
-version = "2.0.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "thread_local"
-version = "1.1.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
-dependencies = [
- "cfg-if",
-]
-
-[[package]]
-name = "tiff"
-version = "0.10.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
-dependencies = [
- "fax",
- "flate2",
- "half",
- "quick-error",
- "weezl",
- "zune-jpeg",
-]
-
-[[package]]
-name = "time"
-version = "0.3.45"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
-dependencies = [
- "deranged",
- "itoa",
- "num-conv",
- "powerfmt",
- "serde_core",
- "time-core",
- "time-macros",
-]
-
-[[package]]
-name = "time-core"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
-
-[[package]]
-name = "time-macros"
-version = "0.2.25"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
-dependencies = [
- "num-conv",
- "time-core",
-]
-
-[[package]]
-name = "tiny-keccak"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
-dependencies = [
- "crunchy",
-]
-
-[[package]]
-name = "tiny_http"
-version = "0.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
-dependencies = [
- "ascii",
- "chunked_transfer",
- "httpdate",
- "log",
-]
-
-[[package]]
-name = "tinystr"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
-dependencies = [
- "displaydoc",
- "zerovec",
-]
-
-[[package]]
-name = "tinyvec"
-version = "1.10.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
-dependencies = [
- "tinyvec_macros",
-]
-
-[[package]]
-name = "tinyvec_macros"
-version = "0.1.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
-
-[[package]]
-name = "tokio"
-version = "1.49.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
-dependencies = [
- "bytes",
- "libc",
- "mio",
- "pin-project-lite",
- "socket2 0.6.2",
- "tokio-macros",
- "windows-sys 0.61.2",
-]
-
-[[package]]
-name = "tokio-macros"
-version = "2.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "tokio-rustls"
-version = "0.24.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
-dependencies = [
- "rustls 0.21.12",
- "tokio",
-]
-
-[[package]]
-name = "tokio-rustls"
-version = "0.26.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
-dependencies = [
- "rustls 0.23.36",
- "tokio",
-]
-
-[[package]]
-name = "tokio-stream"
-version = "0.1.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
-dependencies = [
- "futures-core",
- "pin-project-lite",
- "tokio",
- "tokio-util",
-]
-
-[[package]]
-name = "tokio-util"
-version = "0.7.18"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
-dependencies = [
- "bytes",
- "futures-core",
- "futures-sink",
- "pin-project-lite",
- "tokio",
-]
-
-[[package]]
-name = "toml"
-version = "0.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
-dependencies = [
- "serde",
- "serde_spanned 0.6.9",
- "toml_datetime 0.6.3",
- "toml_edit 0.20.2",
-]
-
-[[package]]
-name = "toml"
-version = "0.9.11+spec-1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
-dependencies = [
- "indexmap 2.13.0",
- "serde_core",
- "serde_spanned 1.0.4",
- "toml_datetime 0.7.5+spec-1.1.0",
- "toml_parser",
- "toml_writer",
- "winnow 0.7.14",
-]
-
-[[package]]
-name = "toml_datetime"
-version = "0.6.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
-dependencies = [
- "serde",
-]
-
-[[package]]
-name = "toml_datetime"
-version = "0.7.5+spec-1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
-dependencies = [
- "serde_core",
-]
-
-[[package]]
-name = "toml_edit"
-version = "0.19.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
-dependencies = [
- "indexmap 2.13.0",
- "toml_datetime 0.6.3",
- "winnow 0.5.40",
-]
-
-[[package]]
-name = "toml_edit"
-version = "0.20.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
-dependencies = [
- "indexmap 2.13.0",
- "serde",
- "serde_spanned 0.6.9",
- "toml_datetime 0.6.3",
- "winnow 0.5.40",
-]
-
-[[package]]
-name = "toml_edit"
-version = "0.23.10+spec-1.0.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
-dependencies = [
- "indexmap 2.13.0",
- "toml_datetime 0.7.5+spec-1.1.0",
- "toml_parser",
- "winnow 0.7.14",
-]
-
-[[package]]
-name = "toml_parser"
-version = "1.0.6+spec-1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
-dependencies = [
- "winnow 0.7.14",
-]
-
-[[package]]
-name = "toml_writer"
-version = "1.0.6+spec-1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
-
-[[package]]
-name = "tower"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
-dependencies = [
- "futures-core",
- "futures-util",
- "pin-project-lite",
- "sync_wrapper 1.0.2",
- "tokio",
- "tower-layer",
- "tower-service",
-]
-
-[[package]]
-name = "tower-http"
-version = "0.6.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
-dependencies = [
- "bitflags 2.10.0",
- "bytes",
- "futures-util",
- "http 1.4.0",
- "http-body 1.0.1",
- "iri-string",
- "pin-project-lite",
- "tower",
- "tower-layer",
- "tower-service",
-]
-
-[[package]]
-name = "tower-layer"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
-
-[[package]]
-name = "tower-service"
-version = "0.3.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
-
-[[package]]
-name = "tracing"
-version = "0.1.44"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
-dependencies = [
- "pin-project-lite",
- "tracing-attributes",
- "tracing-core",
-]
-
-[[package]]
-name = "tracing-attributes"
-version = "0.1.31"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "tracing-core"
-version = "0.1.36"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
-dependencies = [
- "once_cell",
-]
-
-[[package]]
-name = "tracing-subscriber"
-version = "0.3.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
-dependencies = [
- "nu-ansi-term",
- "sharded-slab",
- "thread_local",
- "tracing-core",
-]
-
-[[package]]
-name = "tray-icon"
-version = "0.21.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c"
-dependencies = [
- "crossbeam-channel",
- "dirs 6.0.0",
- "libappindicator",
- "muda",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-core-graphics",
- "objc2-foundation",
- "once_cell",
- "png 0.17.16",
- "serde",
- "thiserror 2.0.18",
- "windows-sys 0.60.2",
-]
-
-[[package]]
-name = "tree_magic_mini"
-version = "3.2.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8765b90061cba6c22b5831f675da109ae5561588290f9fa2317adab2714d5a6"
-dependencies = [
- "memchr",
- "nom",
- "petgraph",
-]
-
-[[package]]
-name = "try-lock"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
-
-[[package]]
-name = "typeid"
-version = "1.0.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
-
-[[package]]
-name = "typenum"
-version = "1.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
-
-[[package]]
-name = "typewit"
-version = "1.14.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f8c1ae7cc0fdb8b842d65d127cb981574b0d2b249b74d1c7a2986863dc134f71"
-dependencies = [
- "typewit_proc_macros",
-]
-
-[[package]]
-name = "typewit_proc_macros"
-version = "1.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e36a83ea2b3c704935a01b4642946aadd445cea40b10935e3f8bd8052b8193d6"
-
-[[package]]
-name = "uds_windows"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
-dependencies = [
- "memoffset",
- "tempfile",
- "winapi",
-]
-
-[[package]]
-name = "ulid"
-version = "1.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
-dependencies = [
- "rand 0.9.2",
- "web-time",
-]
-
-[[package]]
-name = "unic-char-property"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
-dependencies = [
- "unic-char-range",
-]
-
-[[package]]
-name = "unic-char-range"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
-
-[[package]]
-name = "unic-common"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
-
-[[package]]
-name = "unic-ucd-ident"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
-dependencies = [
- "unic-char-property",
- "unic-char-range",
- "unic-ucd-version",
-]
-
-[[package]]
-name = "unic-ucd-version"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
-dependencies = [
- "unic-common",
-]
-
-[[package]]
-name = "unicode-ident"
-version = "1.0.22"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
-
-[[package]]
-name = "unicode-segmentation"
-version = "1.12.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
-
-[[package]]
-name = "universal-hash"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
-dependencies = [
- "crypto-common",
- "subtle",
-]
-
-[[package]]
-name = "untrusted"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
-
-[[package]]
-name = "url"
-version = "2.5.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
-dependencies = [
- "form_urlencoded",
- "idna",
- "percent-encoding",
- "serde",
- "serde_derive",
-]
-
-[[package]]
-name = "urlencoding"
-version = "2.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
-
-[[package]]
-name = "urlpattern"
-version = "0.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d"
-dependencies = [
- "regex",
- "serde",
- "unic-ucd-ident",
- "url",
-]
-
-[[package]]
-name = "utf-8"
-version = "0.7.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
-
-[[package]]
-name = "utf8_iter"
-version = "1.0.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
-
-[[package]]
-name = "uuid"
-version = "1.19.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
-dependencies = [
- "getrandom 0.3.4",
- "js-sys",
- "serde_core",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "vcpkg"
-version = "0.2.15"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
-
-[[package]]
-name = "version-compare"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e"
-
-[[package]]
-name = "version_check"
-version = "0.9.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
-
-[[package]]
-name = "vodozemac"
-version = "0.7.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "051d4af70b53b42adf2aac459a305851b8d754f210aaf11ab509e1065beff422"
-dependencies = [
- "aes",
- "arrayvec",
- "base64 0.22.1",
- "base64ct",
- "cbc",
- "chacha20poly1305",
- "curve25519-dalek",
- "ed25519-dalek",
- "getrandom 0.2.17",
- "hkdf",
- "hmac",
- "matrix-pickle",
- "pkcs7",
- "prost",
- "rand 0.8.5",
- "serde",
- "serde_bytes",
- "serde_json",
- "sha2",
- "subtle",
- "thiserror 1.0.69",
- "x25519-dalek",
- "zeroize",
-]
-
-[[package]]
-name = "vswhom"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
-dependencies = [
- "libc",
- "vswhom-sys",
-]
-
-[[package]]
-name = "vswhom-sys"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
-dependencies = [
- "cc",
- "libc",
-]
-
-[[package]]
-name = "walkdir"
-version = "2.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
-dependencies = [
- "same-file",
- "winapi-util",
-]
-
-[[package]]
-name = "want"
-version = "0.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
-dependencies = [
- "try-lock",
-]
-
-[[package]]
-name = "wasi"
-version = "0.9.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-
-[[package]]
-name = "wasi"
-version = "0.11.1+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
-
-[[package]]
-name = "wasip2"
-version = "1.0.2+wasi-0.2.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
-dependencies = [
- "wit-bindgen",
-]
-
-[[package]]
-name = "wasm-bindgen"
-version = "0.2.108"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
-dependencies = [
- "cfg-if",
- "once_cell",
- "rustversion",
- "wasm-bindgen-macro",
- "wasm-bindgen-shared",
-]
-
-[[package]]
-name = "wasm-bindgen-futures"
-version = "0.4.58"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
-dependencies = [
- "cfg-if",
- "futures-util",
- "js-sys",
- "once_cell",
- "wasm-bindgen",
- "web-sys",
-]
-
-[[package]]
-name = "wasm-bindgen-macro"
-version = "0.2.108"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
-dependencies = [
- "quote",
- "wasm-bindgen-macro-support",
-]
-
-[[package]]
-name = "wasm-bindgen-macro-support"
-version = "0.2.108"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
-dependencies = [
- "bumpalo",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "wasm-bindgen-shared",
-]
-
-[[package]]
-name = "wasm-bindgen-shared"
-version = "0.2.108"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
-dependencies = [
- "unicode-ident",
-]
-
-[[package]]
-name = "wasm-streams"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
-dependencies = [
- "futures-util",
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "wasm-streams"
-version = "0.5.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
-dependencies = [
- "futures-util",
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
-]
-
-[[package]]
-name = "wayland-backend"
-version = "0.3.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9"
-dependencies = [
- "cc",
- "downcast-rs",
- "rustix",
- "smallvec",
- "wayland-sys",
-]
-
-[[package]]
-name = "wayland-client"
-version = "0.31.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec"
-dependencies = [
- "bitflags 2.10.0",
- "rustix",
- "wayland-backend",
- "wayland-scanner",
-]
-
-[[package]]
-name = "wayland-protocols"
-version = "0.32.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "baeda9ffbcfc8cd6ddaade385eaf2393bd2115a69523c735f12242353c3df4f3"
-dependencies = [
- "bitflags 2.10.0",
- "wayland-backend",
- "wayland-client",
- "wayland-scanner",
-]
-
-[[package]]
-name = "wayland-protocols-wlr"
-version = "0.3.10"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e9597cdf02cf0c34cd5823786dce6b5ae8598f05c2daf5621b6e178d4f7345f3"
-dependencies = [
- "bitflags 2.10.0",
- "wayland-backend",
- "wayland-client",
- "wayland-protocols",
- "wayland-scanner",
-]
-
-[[package]]
-name = "wayland-scanner"
-version = "0.31.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3"
-dependencies = [
- "proc-macro2",
- "quick-xml 0.38.4",
- "quote",
-]
-
-[[package]]
-name = "wayland-sys"
-version = "0.31.8"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd"
-dependencies = [
- "pkg-config",
-]
-
-[[package]]
-name = "web-sys"
-version = "0.3.85"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "web-time"
-version = "1.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
-dependencies = [
- "js-sys",
- "wasm-bindgen",
-]
-
-[[package]]
-name = "webkit2gtk"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793"
-dependencies = [
- "bitflags 1.3.2",
- "cairo-rs",
- "gdk",
- "gdk-sys",
- "gio",
- "gio-sys",
- "glib",
- "glib-sys",
- "gobject-sys",
- "gtk",
- "gtk-sys",
- "javascriptcore-rs",
- "libc",
- "once_cell",
- "soup3",
- "webkit2gtk-sys",
-]
-
-[[package]]
-name = "webkit2gtk-sys"
-version = "2.0.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5"
-dependencies = [
- "bitflags 1.3.2",
- "cairo-sys-rs",
- "gdk-sys",
- "gio-sys",
- "glib-sys",
- "gobject-sys",
- "gtk-sys",
- "javascriptcore-rs-sys",
- "libc",
- "pkg-config",
- "soup3-sys",
- "system-deps",
-]
-
-[[package]]
-name = "webpki-roots"
-version = "0.25.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"
-
-[[package]]
-name = "webpki-roots"
-version = "1.0.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "12bed680863276c63889429bfd6cab3b99943659923822de1c8a39c49e4d722c"
-dependencies = [
- "rustls-pki-types",
-]
-
-[[package]]
-name = "webview2-com"
-version = "0.38.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a"
-dependencies = [
- "webview2-com-macros",
- "webview2-com-sys",
- "windows",
- "windows-core 0.61.2",
- "windows-implement",
- "windows-interface",
-]
-
-[[package]]
-name = "webview2-com-macros"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "webview2-com-sys"
-version = "0.38.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c"
-dependencies = [
- "thiserror 2.0.18",
- "windows",
- "windows-core 0.61.2",
-]
-
-[[package]]
-name = "weezl"
-version = "0.1.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
-
-[[package]]
-name = "wildmatch"
-version = "2.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29333c3ea1ba8b17211763463ff24ee84e41c78224c16b001cd907e663a38c68"
-
-[[package]]
-name = "winapi"
-version = "0.3.9"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-dependencies = [
- "winapi-i686-pc-windows-gnu",
- "winapi-x86_64-pc-windows-gnu",
-]
-
-[[package]]
-name = "winapi-i686-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-[[package]]
-name = "winapi-util"
-version = "0.1.11"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
-dependencies = [
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "winapi-x86_64-pc-windows-gnu"
-version = "0.4.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
-[[package]]
-name = "window-vibrancy"
-version = "0.6.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c"
-dependencies = [
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-foundation",
- "raw-window-handle",
- "windows-sys 0.59.0",
- "windows-version",
-]
-
-[[package]]
-name = "windows"
-version = "0.61.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
-dependencies = [
- "windows-collections",
- "windows-core 0.61.2",
- "windows-future",
- "windows-link 0.1.3",
- "windows-numerics",
-]
-
-[[package]]
-name = "windows-collections"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
-dependencies = [
- "windows-core 0.61.2",
-]
-
-[[package]]
-name = "windows-core"
-version = "0.61.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
-dependencies = [
- "windows-implement",
- "windows-interface",
- "windows-link 0.1.3",
- "windows-result 0.3.4",
- "windows-strings 0.4.2",
-]
-
-[[package]]
-name = "windows-core"
-version = "0.62.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
-dependencies = [
- "windows-implement",
- "windows-interface",
- "windows-link 0.2.1",
- "windows-result 0.4.1",
- "windows-strings 0.5.1",
-]
-
-[[package]]
-name = "windows-future"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
-dependencies = [
- "windows-core 0.61.2",
- "windows-link 0.1.3",
- "windows-threading",
-]
-
-[[package]]
-name = "windows-implement"
-version = "0.60.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "windows-interface"
-version = "0.59.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "windows-link"
-version = "0.1.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
-
-[[package]]
-name = "windows-link"
-version = "0.2.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
-
-[[package]]
-name = "windows-numerics"
-version = "0.2.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
-dependencies = [
- "windows-core 0.61.2",
- "windows-link 0.1.3",
-]
-
-[[package]]
-name = "windows-registry"
-version = "0.5.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
-dependencies = [
- "windows-link 0.1.3",
- "windows-result 0.3.4",
- "windows-strings 0.4.2",
-]
-
-[[package]]
-name = "windows-result"
-version = "0.3.4"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
-dependencies = [
- "windows-link 0.1.3",
-]
-
-[[package]]
-name = "windows-result"
-version = "0.4.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
-dependencies = [
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "windows-strings"
-version = "0.4.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
-dependencies = [
- "windows-link 0.1.3",
-]
-
-[[package]]
-name = "windows-strings"
-version = "0.5.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
-dependencies = [
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.45.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
-dependencies = [
- "windows-targets 0.42.2",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.48.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
-dependencies = [
- "windows-targets 0.48.5",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.52.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
-dependencies = [
- "windows-targets 0.52.6",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.59.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
-dependencies = [
- "windows-targets 0.52.6",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.60.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
-dependencies = [
- "windows-targets 0.53.5",
-]
-
-[[package]]
-name = "windows-sys"
-version = "0.61.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
-dependencies = [
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "windows-targets"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
-dependencies = [
- "windows_aarch64_gnullvm 0.42.2",
- "windows_aarch64_msvc 0.42.2",
- "windows_i686_gnu 0.42.2",
- "windows_i686_msvc 0.42.2",
- "windows_x86_64_gnu 0.42.2",
- "windows_x86_64_gnullvm 0.42.2",
- "windows_x86_64_msvc 0.42.2",
-]
-
-[[package]]
-name = "windows-targets"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
-dependencies = [
- "windows_aarch64_gnullvm 0.48.5",
- "windows_aarch64_msvc 0.48.5",
- "windows_i686_gnu 0.48.5",
- "windows_i686_msvc 0.48.5",
- "windows_x86_64_gnu 0.48.5",
- "windows_x86_64_gnullvm 0.48.5",
- "windows_x86_64_msvc 0.48.5",
-]
-
-[[package]]
-name = "windows-targets"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
-dependencies = [
- "windows_aarch64_gnullvm 0.52.6",
- "windows_aarch64_msvc 0.52.6",
- "windows_i686_gnu 0.52.6",
- "windows_i686_gnullvm 0.52.6",
- "windows_i686_msvc 0.52.6",
- "windows_x86_64_gnu 0.52.6",
- "windows_x86_64_gnullvm 0.52.6",
- "windows_x86_64_msvc 0.52.6",
-]
-
-[[package]]
-name = "windows-targets"
-version = "0.53.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
-dependencies = [
- "windows-link 0.2.1",
- "windows_aarch64_gnullvm 0.53.1",
- "windows_aarch64_msvc 0.53.1",
- "windows_i686_gnu 0.53.1",
- "windows_i686_gnullvm 0.53.1",
- "windows_i686_msvc 0.53.1",
- "windows_x86_64_gnu 0.53.1",
- "windows_x86_64_gnullvm 0.53.1",
- "windows_x86_64_msvc 0.53.1",
-]
-
-[[package]]
-name = "windows-threading"
-version = "0.1.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
-dependencies = [
- "windows-link 0.1.3",
-]
-
-[[package]]
-name = "windows-version"
-version = "0.1.7"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631"
-dependencies = [
- "windows-link 0.2.1",
-]
-
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
-
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
-
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
-
-[[package]]
-name = "windows_aarch64_gnullvm"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
-
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
-
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
-
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
-
-[[package]]
-name = "windows_aarch64_msvc"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
-
-[[package]]
-name = "windows_i686_gnu"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
-
-[[package]]
-name = "windows_i686_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
-
-[[package]]
-name = "windows_i686_gnu"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
-
-[[package]]
-name = "windows_i686_gnu"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
-
-[[package]]
-name = "windows_i686_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
-
-[[package]]
-name = "windows_i686_gnullvm"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
-
-[[package]]
-name = "windows_i686_msvc"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
-
-[[package]]
-name = "windows_i686_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
-
-[[package]]
-name = "windows_i686_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
-
-[[package]]
-name = "windows_i686_msvc"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
-
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
-
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
-
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
-
-[[package]]
-name = "windows_x86_64_gnu"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
-
-[[package]]
-name = "windows_x86_64_gnullvm"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
-
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.42.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
-
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.48.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
-
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.52.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
-
-[[package]]
-name = "windows_x86_64_msvc"
-version = "0.53.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
-
-[[package]]
-name = "winnow"
-version = "0.5.40"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "winnow"
-version = "0.7.14"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
-dependencies = [
- "memchr",
-]
-
-[[package]]
-name = "winreg"
-version = "0.10.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
-dependencies = [
- "winapi",
-]
-
-[[package]]
-name = "winreg"
-version = "0.50.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
-dependencies = [
- "cfg-if",
- "windows-sys 0.48.0",
-]
-
-[[package]]
-name = "winreg"
-version = "0.55.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
-dependencies = [
- "cfg-if",
- "windows-sys 0.59.0",
-]
-
-[[package]]
-name = "wit-bindgen"
-version = "0.51.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
-
-[[package]]
-name = "wl-clipboard-rs"
-version = "0.9.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "e9651471a32e87d96ef3a127715382b2d11cc7c8bb9822ded8a7cc94072eb0a3"
-dependencies = [
- "libc",
- "log",
- "os_pipe",
- "rustix",
- "thiserror 2.0.18",
- "tree_magic_mini",
- "wayland-backend",
- "wayland-client",
- "wayland-protocols",
- "wayland-protocols-wlr",
-]
-
-[[package]]
-name = "writeable"
-version = "0.6.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
-
-[[package]]
-name = "wry"
-version = "0.54.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "bb26159b420aa77684589a744ae9a9461a95395b848764ad12290a14d960a11a"
-dependencies = [
- "base64 0.22.1",
- "block2",
- "cookie",
- "crossbeam-channel",
- "dirs 6.0.0",
- "dpi",
- "dunce",
- "gdkx11",
- "gtk",
- "html5ever",
- "http 1.4.0",
- "javascriptcore-rs",
- "jni",
- "kuchikiki",
- "libc",
- "ndk",
- "objc2",
- "objc2-app-kit",
- "objc2-core-foundation",
- "objc2-foundation",
- "objc2-ui-kit",
- "objc2-web-kit",
- "once_cell",
- "percent-encoding",
- "raw-window-handle",
- "sha2",
- "soup3",
- "tao-macros",
- "thiserror 2.0.18",
- "url",
- "webkit2gtk",
- "webkit2gtk-sys",
- "webview2-com",
- "windows",
- "windows-core 0.61.2",
- "windows-version",
- "x11-dl",
-]
-
-[[package]]
-name = "x11"
-version = "2.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e"
-dependencies = [
- "libc",
- "pkg-config",
-]
-
-[[package]]
-name = "x11-dl"
-version = "2.21.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
-dependencies = [
- "libc",
- "once_cell",
- "pkg-config",
-]
-
-[[package]]
-name = "x11rb"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
-dependencies = [
- "gethostname",
- "rustix",
- "x11rb-protocol",
-]
-
-[[package]]
-name = "x11rb-protocol"
-version = "0.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
-
-[[package]]
-name = "x25519-dalek"
-version = "2.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
-dependencies = [
- "curve25519-dalek",
- "rand_core 0.6.4",
- "serde",
- "zeroize",
-]
-
-[[package]]
-name = "x509-cert"
-version = "0.2.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1301e935010a701ae5f8655edc0ad17c44bad3ac5ce8c39185f75453b720ae94"
-dependencies = [
- "const-oid",
- "der",
- "spki",
-]
-
-[[package]]
-name = "xattr"
-version = "1.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "32e45ad4206f6d2479085147f02bc2ef834ac85886624a23575ae137c8aa8156"
-dependencies = [
- "libc",
- "rustix",
-]
-
-[[package]]
-name = "yoke"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
-dependencies = [
- "stable_deref_trait",
- "yoke-derive",
- "zerofrom",
-]
-
-[[package]]
-name = "yoke-derive"
-version = "0.8.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "synstructure",
-]
-
-[[package]]
-name = "zbus"
-version = "5.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1bfeff997a0aaa3eb20c4652baf788d2dfa6d2839a0ead0b3ff69ce2f9c4bdd1"
-dependencies = [
- "async-broadcast",
- "async-executor",
- "async-io",
- "async-lock",
- "async-process",
- "async-recursion",
- "async-task",
- "async-trait",
- "blocking",
- "enumflags2",
- "event-listener 5.4.1",
- "futures-core",
- "futures-lite",
- "hex",
- "libc",
- "ordered-stream",
- "rustix",
- "serde",
- "serde_repr",
- "tracing",
- "uds_windows",
- "uuid",
- "windows-sys 0.61.2",
- "winnow 0.7.14",
- "zbus_macros",
- "zbus_names",
- "zvariant",
-]
-
-[[package]]
-name = "zbus_macros"
-version = "5.13.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0bbd5a90dbe8feee5b13def448427ae314ccd26a49cac47905cafefb9ff846f1"
-dependencies = [
- "proc-macro-crate 3.4.0",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "zbus_names",
- "zvariant",
- "zvariant_utils",
-]
-
-[[package]]
-name = "zbus_names"
-version = "4.3.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "ffd8af6d5b78619bab301ff3c560a5bd22426150253db278f164d6cf3b72c50f"
-dependencies = [
- "serde",
- "winnow 0.7.14",
- "zvariant",
-]
-
-[[package]]
-name = "zerocopy"
-version = "0.7.35"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
-dependencies = [
- "byteorder",
- "zerocopy-derive 0.7.35",
-]
-
-[[package]]
-name = "zerocopy"
-version = "0.8.33"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
-dependencies = [
- "zerocopy-derive 0.8.33",
-]
-
-[[package]]
-name = "zerocopy-derive"
-version = "0.7.35"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "zerocopy-derive"
-version = "0.8.33"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "zerofrom"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
-dependencies = [
- "zerofrom-derive",
-]
-
-[[package]]
-name = "zerofrom-derive"
-version = "0.1.6"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "synstructure",
-]
-
-[[package]]
-name = "zeroize"
-version = "1.8.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
-dependencies = [
- "zeroize_derive",
-]
-
-[[package]]
-name = "zeroize_derive"
-version = "1.4.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "zerotrie"
-version = "0.2.3"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
-dependencies = [
- "displaydoc",
- "yoke",
- "zerofrom",
-]
-
-[[package]]
-name = "zerovec"
-version = "0.11.5"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
-dependencies = [
- "yoke",
- "zerofrom",
- "zerovec-derive",
-]
-
-[[package]]
-name = "zerovec-derive"
-version = "0.11.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
-dependencies = [
- "proc-macro2",
- "quote",
- "syn 2.0.114",
-]
-
-[[package]]
-name = "zip"
-version = "4.6.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "caa8cd6af31c3b31c6631b8f483848b91589021b28fffe50adada48d4f4d2ed1"
-dependencies = [
- "arbitrary",
- "crc32fast",
- "indexmap 2.13.0",
- "memchr",
-]
-
-[[package]]
-name = "zmij"
-version = "1.0.16"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65"
-
-[[package]]
-name = "zune-core"
-version = "0.4.12"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
-
-[[package]]
-name = "zune-jpeg"
-version = "0.4.21"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
-dependencies = [
- "zune-core",
-]
-
-[[package]]
-name = "zvariant"
-version = "5.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "68b64ef4f40c7951337ddc7023dd03528a57a3ce3408ee9da5e948bd29b232c4"
-dependencies = [
- "endi",
- "enumflags2",
- "serde",
- "winnow 0.7.14",
- "zvariant_derive",
- "zvariant_utils",
-]
-
-[[package]]
-name = "zvariant_derive"
-version = "5.9.2"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "484d5d975eb7afb52cc6b929c13d3719a20ad650fea4120e6310de3fc55e415c"
-dependencies = [
- "proc-macro-crate 3.4.0",
- "proc-macro2",
- "quote",
- "syn 2.0.114",
- "zvariant_utils",
-]
-
-[[package]]
-name = "zvariant_utils"
-version = "3.3.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f75c23a64ef8f40f13a6989991e643554d9bef1d682a281160cf0c1bc389c5e9"
-dependencies = [
- "proc-macro2",
- "quote",
- "serde",
- "syn 2.0.114",
- "winnow 0.7.14",
-]
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
deleted file mode 100644
index 1d507c0..0000000
--- a/src-tauri/Cargo.toml
+++ /dev/null
@@ -1,59 +0,0 @@
-# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
-[package]
-name = "paarrot"
-version = "4.10.2"
-description = "Yet another matrix client"
-authors = ["Ajay Bura"]
-license = "AGPL-3.0-only"
-repository = "https://github.com/cinnyapp/cinny-desktop"
-default-run = "paarrot"
-edition = "2021"
-rust-version = "1.70"
-
-[lib]
-name = "paarrot_lib"
-crate-type = ["staticlib", "cdylib", "lib"]
-
-[build-dependencies]
-tauri-build = { version = "2", features = [] }
-
-[dependencies]
-serde_json = "1.0"
-serde = { version = "1.0", features = ["derive"] }
-tauri = { version = "2", features = ["devtools", "tray-icon", "image-png"] }
-tauri-plugin-opener = "2"
-tauri-plugin-notification = "2"
-log = "0.4"
-tauri-plugin-http = "2"
-
-[target."cfg(target_os = \"linux\")".dependencies]
-arboard = { version = "3", features = ["wayland-data-control"] }
-png = "0.17"
-base64 = "0.22"
-webkit2gtk = "2.0"
-gtk = "0.18"
-
-[target."cfg(any(target_os = \"android\", target_os = \"ios\"))".dependencies]
-tauri-plugin-deep-link = "2"
-
-# Matrix SDK for native background sync (no sqlite on mobile - use in-memory store)
-matrix-sdk = { version = "0.7", default-features = false, features = ["rustls-tls", "e2e-encryption"] }
-tokio = { version = "1", features = ["rt-multi-thread", "sync", "time"] }
-
-[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
-tauri-plugin-localhost = "2"
-tauri-plugin-window-state = "2"
-tauri-plugin-single-instance = "2"
-tauri-plugin-updater = "2"
-tauri-plugin-autostart = "2"
-tauri-plugin-dialog = "2"
-tauri-plugin-process = "2"
-open = "5"
-
-[features]
-default = ["custom-protocol"]
-custom-protocol = ["tauri/custom-protocol"]
-
-[dependencies.ppv-lite86]
-version = "=0.2.20"
diff --git a/src-tauri/build.rs b/src-tauri/build.rs
deleted file mode 100644
index 795b9b7..0000000
--- a/src-tauri/build.rs
+++ /dev/null
@@ -1,3 +0,0 @@
-fn main() {
- tauri_build::build()
-}
diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json
deleted file mode 100644
index 626660c..0000000
--- a/src-tauri/capabilities/default.json
+++ /dev/null
@@ -1,29 +0,0 @@
-{
- "$schema": "../gen/schemas/desktop-schema.json",
- "identifier": "default",
- "description": "Default capability for all windows",
- "windows": ["*"],
- "platforms": ["linux", "windows", "macOS"],
- "permissions": [
- "core:default",
- "core:webview:allow-internal-toggle-devtools",
- "opener:default",
- "opener:allow-open-url",
- "opener:allow-default-urls",
- "notification:default",
- "notification:allow-register-listener",
- "autostart:default",
- "updater:default",
- "updater:allow-check",
- "updater:allow-download",
- "updater:allow-download-and-install",
- "dialog:default",
- "process:allow-restart",
- {
- "identifier": "http:default",
- "allow": [
- { "url": "https://api.telegram.org/**" }
- ]
- }
- ]
-}
diff --git a/src-tauri/capabilities/mobile.json b/src-tauri/capabilities/mobile.json
deleted file mode 100644
index e4047c5..0000000
--- a/src-tauri/capabilities/mobile.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "$schema": "../gen/schemas/mobile-schema.json",
- "identifier": "mobile",
- "description": "Default capability for mobile",
- "windows": ["*"],
- "platforms": ["android", "iOS"],
- "permissions": [
- "core:default",
- "notification:default",
- "deep-link:default",
- "opener:default"
- ]
-}
diff --git a/src-tauri/gen/android/.editorconfig b/src-tauri/gen/android/.editorconfig
deleted file mode 100644
index ebe51d3..0000000
--- a/src-tauri/gen/android/.editorconfig
+++ /dev/null
@@ -1,12 +0,0 @@
-# EditorConfig is awesome: https://EditorConfig.org
-
-# top-most EditorConfig file
-root = true
-
-[*]
-indent_style = space
-indent_size = 2
-end_of_line = lf
-charset = utf-8
-trim_trailing_whitespace = false
-insert_final_newline = false
\ No newline at end of file
diff --git a/src-tauri/gen/android/.gitignore b/src-tauri/gen/android/.gitignore
deleted file mode 100644
index b248203..0000000
--- a/src-tauri/gen/android/.gitignore
+++ /dev/null
@@ -1,19 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea/caches
-/.idea/libraries
-/.idea/modules.xml
-/.idea/workspace.xml
-/.idea/navEditor.xml
-/.idea/assetWizardSettings.xml
-.DS_Store
-build
-/captures
-.externalNativeBuild
-.cxx
-local.properties
-key.properties
-
-/.tauri
-/tauri.settings.gradle
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/.gitignore b/src-tauri/gen/android/app/.gitignore
deleted file mode 100644
index 79951c8..0000000
--- a/src-tauri/gen/android/app/.gitignore
+++ /dev/null
@@ -1,6 +0,0 @@
-/src/main/java/wtf/ruv/paarrot/generated
-/src/main/jniLibs/**/*.so
-/src/main/assets/tauri.conf.json
-/tauri.build.gradle.kts
-/proguard-tauri.pro
-/tauri.properties
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/build.gradle.kts b/src-tauri/gen/android/app/build.gradle.kts
deleted file mode 100644
index a0e1a82..0000000
--- a/src-tauri/gen/android/app/build.gradle.kts
+++ /dev/null
@@ -1,73 +0,0 @@
-import java.util.Properties
-
-plugins {
- id("com.android.application")
- id("org.jetbrains.kotlin.android")
- id("rust")
-}
-
-val tauriProperties = Properties().apply {
- val propFile = file("tauri.properties")
- if (propFile.exists()) {
- propFile.inputStream().use { load(it) }
- }
-}
-
-android {
- compileSdk = 36
- namespace = "wtf.ruv.paarrot"
- defaultConfig {
- manifestPlaceholders["usesCleartextTraffic"] = "false"
- applicationId = "wtf.ruv.paarrot"
- minSdk = 24
- targetSdk = 36
- versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
- versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0")
- ndk {
- abiFilters += listOf("arm64-v8a")
- }
- }
- buildTypes {
- getByName("debug") {
- manifestPlaceholders["usesCleartextTraffic"] = "true"
- isDebuggable = true
- isJniDebuggable = true
- isMinifyEnabled = false
- packaging { jniLibs.keepDebugSymbols.add("*/arm64-v8a/*.so")
- jniLibs.keepDebugSymbols.add("*/armeabi-v7a/*.so")
- jniLibs.keepDebugSymbols.add("*/x86/*.so")
- jniLibs.keepDebugSymbols.add("*/x86_64/*.so")
- }
- }
- getByName("release") {
- isMinifyEnabled = true
- proguardFiles(
- *fileTree(".") { include("**/*.pro") }
- .plus(getDefaultProguardFile("proguard-android-optimize.txt"))
- .toList().toTypedArray()
- )
- }
- }
- kotlinOptions {
- jvmTarget = "1.8"
- }
- buildFeatures {
- buildConfig = true
- }
-}
-
-rust {
- rootDirRel = "../../../"
-}
-
-dependencies {
- implementation("androidx.webkit:webkit:1.14.0")
- implementation("androidx.appcompat:appcompat:1.7.1")
- implementation("androidx.activity:activity-ktx:1.10.1")
- implementation("com.google.android.material:material:1.12.0")
- testImplementation("junit:junit:4.13.2")
- androidTestImplementation("androidx.test.ext:junit:1.1.4")
- androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0")
-}
-
-apply(from = "tauri.build.gradle.kts")
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/proguard-rules.pro b/src-tauri/gen/android/app/proguard-rules.pro
deleted file mode 100644
index 481bb43..0000000
--- a/src-tauri/gen/android/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# Add project specific ProGuard rules here.
-# You can control the set of applied configuration files using the
-# proguardFiles setting in build.gradle.
-#
-# For more details, see
-# http://developer.android.com/guide/developing/tools/proguard.html
-
-# If your project uses WebView with JS, uncomment the following
-# and specify the fully qualified class name to the JavaScript interface
-# class:
-#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
-# public *;
-#}
-
-# Uncomment this to preserve the line number information for
-# debugging stack traces.
-#-keepattributes SourceFile,LineNumberTable
-
-# If you keep the line number information, uncomment this to
-# hide the original source file name.
-#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/AndroidManifest.xml b/src-tauri/gen/android/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 8b664db..0000000
--- a/src-tauri/gen/android/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/BootReceiver.kt b/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/BootReceiver.kt
deleted file mode 100644
index d287440..0000000
--- a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/BootReceiver.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package wtf.ruv.paarrot
-
-import android.content.BroadcastReceiver
-import android.content.Context
-import android.content.Intent
-import android.os.Build
-
-/**
- * Receives BOOT_COMPLETED broadcast to restart the sync service after device reboot.
- */
-class BootReceiver : BroadcastReceiver() {
- override fun onReceive(context: Context, intent: Intent) {
- if (intent.action == Intent.ACTION_BOOT_COMPLETED) {
- val serviceIntent = Intent(context, SyncService::class.java)
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
- context.startForegroundService(serviceIntent)
- } else {
- context.startService(serviceIntent)
- }
- }
- }
-}
diff --git a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/MainActivity.kt b/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/MainActivity.kt
deleted file mode 100644
index 9ee7c6d..0000000
--- a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/MainActivity.kt
+++ /dev/null
@@ -1,73 +0,0 @@
-package wtf.ruv.paarrot
-
-import android.content.Intent
-import android.net.Uri
-import android.os.Build
-import android.os.Bundle
-import android.os.PowerManager
-import android.provider.Settings
-import android.util.Log
-import androidx.activity.enableEdgeToEdge
-
-class MainActivity : TauriActivity() {
- companion object {
- private const val TAG = "PaarrotMain"
- }
-
- override fun onCreate(savedInstanceState: Bundle?) {
- enableEdgeToEdge()
- super.onCreate(savedInstanceState)
-
- // Start the foreground sync service to keep the app alive for notifications
- startSyncService()
-
- // Request battery optimization exemption for reliable background operation
- requestBatteryOptimizationExemption()
- }
-
- override fun onResume() {
- super.onResume()
- // Ensure service is running when app comes to foreground
- startSyncService()
- }
-
- private fun startSyncService() {
- try {
- val serviceIntent = Intent(this, SyncService::class.java)
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
- startForegroundService(serviceIntent)
- } else {
- startService(serviceIntent)
- }
- Log.d(TAG, "SyncService started")
- } catch (e: Exception) {
- Log.e(TAG, "Failed to start SyncService", e)
- }
- }
-
- private fun requestBatteryOptimizationExemption() {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
- val powerManager = getSystemService(POWER_SERVICE) as PowerManager
- if (!powerManager.isIgnoringBatteryOptimizations(packageName)) {
- Log.d(TAG, "Requesting battery optimization exemption")
- try {
- val intent = Intent(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS).apply {
- data = Uri.parse("package:$packageName")
- }
- startActivity(intent)
- } catch (e: Exception) {
- Log.e(TAG, "Failed to request battery optimization exemption", e)
- // Try opening battery settings instead
- try {
- val settingsIntent = Intent(Settings.ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS)
- startActivity(settingsIntent)
- } catch (e2: Exception) {
- Log.e(TAG, "Failed to open battery settings", e2)
- }
- }
- } else {
- Log.d(TAG, "Already exempt from battery optimization")
- }
- }
- }
-}
diff --git a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/SyncService.kt b/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/SyncService.kt
deleted file mode 100644
index e9a550b..0000000
--- a/src-tauri/gen/android/app/src/main/java/wtf/ruv/paarrot/SyncService.kt
+++ /dev/null
@@ -1,278 +0,0 @@
-package wtf.ruv.paarrot
-
-import android.app.AlarmManager
-import android.app.NotificationChannel
-import android.app.NotificationManager
-import android.app.PendingIntent
-import android.app.Service
-import android.content.Context
-import android.content.Intent
-import android.net.Uri
-import android.os.Build
-import android.os.Handler
-import android.os.IBinder
-import android.os.Looper
-import android.os.PowerManager
-import android.os.SystemClock
-import android.provider.Settings
-import android.util.Log
-import androidx.core.app.NotificationCompat
-
-/**
- * Foreground service that keeps the app alive for background sync.
- * This allows Matrix sync to continue even when the app is in the background.
- */
-class SyncService : Service() {
- companion object {
- private const val TAG = "PaarrotSync"
- private const val NOTIFICATION_ID = 1
- private const val CHANNEL_ID = "paarrot_sync_channel"
- private const val CHANNEL_NAME = "Background Sync"
- private const val WAKE_LOCK_TAG = "Paarrot:SyncWakeLock"
- private const val ALARM_REQUEST_CODE = 1001
- private const val KEEP_ALIVE_INTERVAL_MS = 4 * 60 * 1000L // 4 minutes (before 5 min Doze threshold)
- private const val WAKE_LOCK_TIMEOUT_MS = 10 * 60 * 1000L // 10 minutes max wake lock
- }
-
- private var wakeLock: PowerManager.WakeLock? = null
- private val handler = Handler(Looper.getMainLooper())
- private var isRunning = false
-
- private val keepAliveRunnable = object : Runnable {
- override fun run() {
- if (!isRunning) return
- Log.d(TAG, "Keep-alive tick - refreshing wake lock")
- ensureWakeLock()
- refreshNotification()
- handler.postDelayed(this, KEEP_ALIVE_INTERVAL_MS)
- }
- }
-
- override fun onBind(intent: Intent?): IBinder? = null
-
- override fun onCreate() {
- super.onCreate()
- Log.d(TAG, "SyncService created")
- isRunning = true
- createNotificationChannel()
- acquireWakeLock()
- scheduleKeepAlive()
- requestBatteryOptimizationExemption()
- }
-
- override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
- Log.d(TAG, "SyncService onStartCommand")
- startForeground(NOTIFICATION_ID, createNotification())
- ensureWakeLock()
- // Return REDELIVER_INTENT so the system restarts us with the last intent
- return START_REDELIVER_INTENT
- }
-
- override fun onDestroy() {
- Log.d(TAG, "SyncService being destroyed - scheduling restart")
- isRunning = false
- handler.removeCallbacks(keepAliveRunnable)
-
- // Schedule immediate restart
- scheduleRestart()
-
- releaseWakeLock()
- super.onDestroy()
- }
-
- override fun onTaskRemoved(rootIntent: Intent?) {
- Log.d(TAG, "Task removed - scheduling restart")
- scheduleRestart()
- super.onTaskRemoved(rootIntent)
- }
-
- override fun onLowMemory() {
- Log.w(TAG, "Low memory warning")
- super.onLowMemory()
- }
-
- override fun onTrimMemory(level: Int) {
- Log.d(TAG, "Trim memory level: $level")
- super.onTrimMemory(level)
- }
-
- private fun scheduleRestart() {
- // Try to restart the service immediately
- val restartIntent = Intent(applicationContext, SyncService::class.java)
- restartIntent.setPackage(packageName)
-
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
- try {
- startForegroundService(restartIntent)
- } catch (e: Exception) {
- Log.e(TAG, "Failed to restart service directly", e)
- // Fall back to alarm
- scheduleAlarmRestart()
- }
- } else {
- startService(restartIntent)
- }
- }
-
- private fun scheduleAlarmRestart() {
- val alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager
- val intent = Intent(this, SyncService::class.java)
- val pendingIntent = PendingIntent.getService(
- this,
- ALARM_REQUEST_CODE + 1,
- intent,
- PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
- )
-
- // Schedule restart in 1 second
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
- alarmManager.setExactAndAllowWhileIdle(
- AlarmManager.ELAPSED_REALTIME_WAKEUP,
- SystemClock.elapsedRealtime() + 1000,
- pendingIntent
- )
- } else {
- alarmManager.setExact(
- AlarmManager.ELAPSED_REALTIME_WAKEUP,
- SystemClock.elapsedRealtime() + 1000,
- pendingIntent
- )
- }
- }
-
- private fun requestBatteryOptimizationExemption() {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
- val powerManager = getSystemService(Context.POWER_SERVICE) as PowerManager
- if (!powerManager.isIgnoringBatteryOptimizations(packageName)) {
- Log.d(TAG, "Requesting battery optimization exemption")
- // We can't directly request, but the app should prompt the user
- // This is just a note that we need the exemption
- }
- }
- }
-
- private fun createNotificationChannel() {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
- val channel = NotificationChannel(
- CHANNEL_ID,
- CHANNEL_NAME,
- NotificationManager.IMPORTANCE_LOW
- ).apply {
- description = "Keeps Paarrot connected for message notifications"
- setShowBadge(false)
- enableLights(false)
- enableVibration(false)
- }
-
- val notificationManager = getSystemService(NotificationManager::class.java)
- notificationManager.createNotificationChannel(channel)
- }
- }
-
- private fun createNotification(): android.app.Notification {
- val pendingIntent = PendingIntent.getActivity(
- this,
- 0,
- Intent(this, MainActivity::class.java).apply {
- flags = Intent.FLAG_ACTIVITY_SINGLE_TOP or Intent.FLAG_ACTIVITY_CLEAR_TOP
- },
- PendingIntent.FLAG_IMMUTABLE or PendingIntent.FLAG_UPDATE_CURRENT
- )
-
- return NotificationCompat.Builder(this, CHANNEL_ID)
- .setContentTitle("Paarrot")
- .setContentText("Connected to Matrix")
- .setSmallIcon(android.R.drawable.ic_dialog_info)
- .setContentIntent(pendingIntent)
- .setPriority(NotificationCompat.PRIORITY_LOW)
- .setOngoing(true)
- .setShowWhen(false)
- .setCategory(NotificationCompat.CATEGORY_SERVICE)
- .build()
- }
-
- private fun refreshNotification() {
- val notificationManager = getSystemService(NotificationManager::class.java)
- notificationManager.notify(NOTIFICATION_ID, createNotification())
- }
-
- private fun scheduleKeepAlive() {
- handler.postDelayed(keepAliveRunnable, KEEP_ALIVE_INTERVAL_MS)
- scheduleAlarm()
- }
-
- private fun scheduleAlarm() {
- val alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager
- val intent = Intent(this, SyncService::class.java)
- val pendingIntent = PendingIntent.getService(
- this,
- ALARM_REQUEST_CODE,
- intent,
- PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
- )
-
- // Use setExactAndAllowWhileIdle for better Doze mode support
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
- alarmManager.setExactAndAllowWhileIdle(
- AlarmManager.ELAPSED_REALTIME_WAKEUP,
- SystemClock.elapsedRealtime() + KEEP_ALIVE_INTERVAL_MS,
- pendingIntent
- )
- } else {
- alarmManager.setExact(
- AlarmManager.ELAPSED_REALTIME_WAKEUP,
- SystemClock.elapsedRealtime() + KEEP_ALIVE_INTERVAL_MS,
- pendingIntent
- )
- }
- }
-
- private fun cancelAlarm() {
- val alarmManager = getSystemService(Context.ALARM_SERVICE) as AlarmManager
- val intent = Intent(this, SyncService::class.java)
- val pendingIntent = PendingIntent.getService(
- this,
- ALARM_REQUEST_CODE,
- intent,
- PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
- )
- alarmManager.cancel(pendingIntent)
- }
-
- private fun acquireWakeLock() {
- val powerManager = getSystemService(Context.POWER_SERVICE) as PowerManager
- wakeLock = powerManager.newWakeLock(
- PowerManager.PARTIAL_WAKE_LOCK,
- WAKE_LOCK_TAG
- ).apply {
- // Acquire with timeout to prevent battery drain if something goes wrong
- acquire(WAKE_LOCK_TIMEOUT_MS)
- }
- Log.d(TAG, "Wake lock acquired")
- }
-
- private fun ensureWakeLock() {
- wakeLock?.let {
- if (!it.isHeld) {
- Log.d(TAG, "Wake lock was released, re-acquiring")
- it.acquire(WAKE_LOCK_TIMEOUT_MS)
- }
- } ?: run {
- Log.d(TAG, "Wake lock was null, creating new one")
- acquireWakeLock()
- }
-
- // Re-schedule alarm each time we refresh
- scheduleAlarm()
- }
-
- private fun releaseWakeLock() {
- wakeLock?.let {
- if (it.isHeld) {
- it.release()
- Log.d(TAG, "Wake lock released")
- }
- }
- wakeLock = null
- }
-}
diff --git a/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
deleted file mode 100644
index 2b068d1..0000000
--- a/src-tauri/gen/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml b/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml
deleted file mode 100644
index 07d5da9..0000000
--- a/src-tauri/gen/android/app/src/main/res/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,170 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml b/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 4fc2444..0000000
--- a/src-tauri/gen/android/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 522867e..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
deleted file mode 100644
index 4768fdb..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index 4c169c5..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 69dee52..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
deleted file mode 100644
index d330104..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index bf2a883..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index adca8bc..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
deleted file mode 100644
index 746505a..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 3978209..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 2a8f4d6..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index aa73395..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index a9b2a23..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index a3885eb..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
deleted file mode 100644
index 880616f..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index 223a786..0000000
Binary files a/src-tauri/gen/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/src-tauri/gen/android/app/src/main/res/values-night/themes.xml b/src-tauri/gen/android/app/src/main/res/values-night/themes.xml
deleted file mode 100644
index 083c23c..0000000
--- a/src-tauri/gen/android/app/src/main/res/values-night/themes.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/values/colors.xml b/src-tauri/gen/android/app/src/main/res/values/colors.xml
deleted file mode 100644
index f8c6127..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- #FFBB86FC
- #FF6200EE
- #FF3700B3
- #FF03DAC5
- #FF018786
- #FF000000
- #FFFFFFFF
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/values/strings.xml b/src-tauri/gen/android/app/src/main/res/values/strings.xml
deleted file mode 100644
index 3bf966d..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
- Paarrot
- Paarrot
-
\ No newline at end of file
diff --git a/src-tauri/gen/android/app/src/main/res/values/themes.xml b/src-tauri/gen/android/app/src/main/res/values/themes.xml
deleted file mode 100644
index 083c23c..0000000
--- a/src-tauri/gen/android/app/src/main/res/values/themes.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
diff --git a/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml b/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml
deleted file mode 100644
index 782d63b..0000000
--- a/src-tauri/gen/android/app/src/main/res/xml/file_paths.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/src-tauri/gen/android/build.gradle.kts b/src-tauri/gen/android/build.gradle.kts
deleted file mode 100644
index 607240b..0000000
--- a/src-tauri/gen/android/build.gradle.kts
+++ /dev/null
@@ -1,22 +0,0 @@
-buildscript {
- repositories {
- google()
- mavenCentral()
- }
- dependencies {
- classpath("com.android.tools.build:gradle:8.11.0")
- classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
- }
-}
-
-allprojects {
- repositories {
- google()
- mavenCentral()
- }
-}
-
-tasks.register("clean").configure {
- delete("build")
-}
-
diff --git a/src-tauri/gen/android/buildSrc/build.gradle.kts b/src-tauri/gen/android/buildSrc/build.gradle.kts
deleted file mode 100644
index 5c55bba..0000000
--- a/src-tauri/gen/android/buildSrc/build.gradle.kts
+++ /dev/null
@@ -1,23 +0,0 @@
-plugins {
- `kotlin-dsl`
-}
-
-gradlePlugin {
- plugins {
- create("pluginsForCoolKids") {
- id = "rust"
- implementationClass = "RustPlugin"
- }
- }
-}
-
-repositories {
- google()
- mavenCentral()
-}
-
-dependencies {
- compileOnly(gradleApi())
- implementation("com.android.tools.build:gradle:8.11.0")
-}
-
diff --git a/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/BuildTask.kt b/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/BuildTask.kt
deleted file mode 100644
index a3de125..0000000
--- a/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/BuildTask.kt
+++ /dev/null
@@ -1,68 +0,0 @@
-import java.io.File
-import org.apache.tools.ant.taskdefs.condition.Os
-import org.gradle.api.DefaultTask
-import org.gradle.api.GradleException
-import org.gradle.api.logging.LogLevel
-import org.gradle.api.tasks.Input
-import org.gradle.api.tasks.TaskAction
-
-open class BuildTask : DefaultTask() {
- @Input
- var rootDirRel: String? = null
- @Input
- var target: String? = null
- @Input
- var release: Boolean? = null
-
- @TaskAction
- fun assemble() {
- val executable = """npm""";
- try {
- runTauriCli(executable)
- } catch (e: Exception) {
- if (Os.isFamily(Os.FAMILY_WINDOWS)) {
- // Try different Windows-specific extensions
- val fallbacks = listOf(
- "$executable.exe",
- "$executable.cmd",
- "$executable.bat",
- )
-
- var lastException: Exception = e
- for (fallback in fallbacks) {
- try {
- runTauriCli(fallback)
- return
- } catch (fallbackException: Exception) {
- lastException = fallbackException
- }
- }
- throw lastException
- } else {
- throw e;
- }
- }
- }
-
- fun runTauriCli(executable: String) {
- val rootDirRel = rootDirRel ?: throw GradleException("rootDirRel cannot be null")
- val target = target ?: throw GradleException("target cannot be null")
- val release = release ?: throw GradleException("release cannot be null")
- val args = listOf("run", "--", "tauri", "android", "android-studio-script");
-
- project.exec {
- workingDir(File(project.projectDir, rootDirRel))
- executable(executable)
- args(args)
- if (project.logger.isEnabled(LogLevel.DEBUG)) {
- args("-vv")
- } else if (project.logger.isEnabled(LogLevel.INFO)) {
- args("-v")
- }
- if (release) {
- args("--release")
- }
- args(listOf("--target", target))
- }.assertNormalExitValue()
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/RustPlugin.kt b/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/RustPlugin.kt
deleted file mode 100644
index 4aa7fca..0000000
--- a/src-tauri/gen/android/buildSrc/src/main/java/wtf/ruv/paarrot/kotlin/RustPlugin.kt
+++ /dev/null
@@ -1,85 +0,0 @@
-import com.android.build.api.dsl.ApplicationExtension
-import org.gradle.api.DefaultTask
-import org.gradle.api.Plugin
-import org.gradle.api.Project
-import org.gradle.kotlin.dsl.configure
-import org.gradle.kotlin.dsl.get
-
-const val TASK_GROUP = "rust"
-
-open class Config {
- lateinit var rootDirRel: String
-}
-
-open class RustPlugin : Plugin {
- private lateinit var config: Config
-
- override fun apply(project: Project) = with(project) {
- config = extensions.create("rust", Config::class.java)
-
- val defaultAbiList = listOf("arm64-v8a", "armeabi-v7a", "x86", "x86_64");
- val abiList = (findProperty("abiList") as? String)?.split(',') ?: defaultAbiList
-
- val defaultArchList = listOf("arm64", "arm", "x86", "x86_64");
- val archList = (findProperty("archList") as? String)?.split(',') ?: defaultArchList
-
- val targetsList = (findProperty("targetList") as? String)?.split(',') ?: listOf("aarch64", "armv7", "i686", "x86_64")
-
- extensions.configure {
- @Suppress("UnstableApiUsage")
- flavorDimensions.add("abi")
- productFlavors {
- create("universal") {
- dimension = "abi"
- ndk {
- abiFilters += abiList
- }
- }
- defaultArchList.forEachIndexed { index, arch ->
- create(arch) {
- dimension = "abi"
- ndk {
- abiFilters.add(defaultAbiList[index])
- }
- }
- }
- }
- }
-
- afterEvaluate {
- for (profile in listOf("debug", "release")) {
- val profileCapitalized = profile.replaceFirstChar { it.uppercase() }
- val buildTask = tasks.maybeCreate(
- "rustBuildUniversal$profileCapitalized",
- DefaultTask::class.java
- ).apply {
- group = TASK_GROUP
- description = "Build dynamic library in $profile mode for all targets"
- }
-
- tasks["mergeUniversal${profileCapitalized}JniLibFolders"].dependsOn(buildTask)
-
- for (targetPair in targetsList.withIndex()) {
- val targetName = targetPair.value
- val targetArch = archList[targetPair.index]
- val targetArchCapitalized = targetArch.replaceFirstChar { it.uppercase() }
- val targetBuildTask = project.tasks.maybeCreate(
- "rustBuild$targetArchCapitalized$profileCapitalized",
- BuildTask::class.java
- ).apply {
- group = TASK_GROUP
- description = "Build dynamic library in $profile mode for $targetArch"
- rootDirRel = config.rootDirRel
- target = targetName
- release = profile == "release"
- }
-
- buildTask.dependsOn(targetBuildTask)
- tasks["merge$targetArchCapitalized${profileCapitalized}JniLibFolders"].dependsOn(
- targetBuildTask
- )
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/android/gradle.properties b/src-tauri/gen/android/gradle.properties
deleted file mode 100644
index 2a7ec69..0000000
--- a/src-tauri/gen/android/gradle.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# Project-wide Gradle settings.
-# IDE (e.g. Android Studio) users:
-# Gradle settings configured through the IDE *will override*
-# any settings specified in this file.
-# For more details on how to configure your build environment visit
-# http://www.gradle.org/docs/current/userguide/build_environment.html
-# Specifies the JVM arguments used for the daemon process.
-# The setting is particularly useful for tweaking memory settings.
-org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
-# When configured, Gradle will run in incubating parallel mode.
-# This option should only be used with decoupled projects. More details, visit
-# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
-# org.gradle.parallel=true
-# AndroidX package structure to make it clearer which packages are bundled with the
-# Android operating system, and which are packaged with your app"s APK
-# https://developer.android.com/topic/libraries/support-library/androidx-rn
-android.useAndroidX=true
-# Kotlin code style for this project: "official" or "obsolete":
-kotlin.code.style=official
-# Enables namespacing of each library's R class so that its R class includes only the
-# resources declared in the library itself and none from the library's dependencies,
-# thereby reducing the size of the R class for that library
-android.nonTransitiveRClass=true
-android.nonFinalResIds=false
\ No newline at end of file
diff --git a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar b/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index e708b1c..0000000
Binary files a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties b/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index c5f9a53..0000000
--- a/src-tauri/gen/android/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Tue May 10 19:22:52 CST 2022
-distributionBase=GRADLE_USER_HOME
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
-distributionPath=wrapper/dists
-zipStorePath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
diff --git a/src-tauri/gen/android/gradlew b/src-tauri/gen/android/gradlew
deleted file mode 100644
index 4f906e0..0000000
--- a/src-tauri/gen/android/gradlew
+++ /dev/null
@@ -1,185 +0,0 @@
-#!/usr/bin/env sh
-
-#
-# Copyright 2015 the original author or authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# https://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-##############################################################################
-##
-## Gradle start up script for UN*X
-##
-##############################################################################
-
-# Attempt to set APP_HOME
-# Resolve links: $0 may be a link
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
-done
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
-
-APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
-
-# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
-
-warn () {
- echo "$*"
-}
-
-die () {
- echo
- echo "$*"
- echo
- exit 1
-}
-
-# OS specific support (must be 'true' or 'false').
-cygwin=false
-msys=false
-darwin=false
-nonstop=false
-case "`uname`" in
- CYGWIN* )
- cygwin=true
- ;;
- Darwin* )
- darwin=true
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
-esac
-
-CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
-
-
-# Determine the Java command to use to start the JVM.
-if [ -n "$JAVA_HOME" ] ; then
- if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
- # IBM's JDK on AIX uses strange locations for the executables
- JAVACMD="$JAVA_HOME/jre/sh/java"
- else
- JAVACMD="$JAVA_HOME/bin/java"
- fi
- if [ ! -x "$JAVACMD" ] ; then
- die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
- fi
-else
- JAVACMD="java"
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-
-Please set the JAVA_HOME variable in your environment to match the
-location of your Java installation."
-fi
-
-# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
-fi
-
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-fi
-
-# For Cygwin or MSYS, switch paths to Windows format before running java
-if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
-
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
- # Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
- fi
- i=`expr $i + 1`
- done
- case $i in
- 0) set -- ;;
- 1) set -- "$args0" ;;
- 2) set -- "$args0" "$args1" ;;
- 3) set -- "$args0" "$args1" "$args2" ;;
- 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
-fi
-
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=`save "$@"`
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-exec "$JAVACMD" "$@"
diff --git a/src-tauri/gen/android/gradlew.bat b/src-tauri/gen/android/gradlew.bat
deleted file mode 100644
index 107acd3..0000000
--- a/src-tauri/gen/android/gradlew.bat
+++ /dev/null
@@ -1,89 +0,0 @@
-@rem
-@rem Copyright 2015 the original author or authors.
-@rem
-@rem Licensed under the Apache License, Version 2.0 (the "License");
-@rem you may not use this file except in compliance with the License.
-@rem You may obtain a copy of the License at
-@rem
-@rem https://www.apache.org/licenses/LICENSE-2.0
-@rem
-@rem Unless required by applicable law or agreed to in writing, software
-@rem distributed under the License is distributed on an "AS IS" BASIS,
-@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-@rem See the License for the specific language governing permissions and
-@rem limitations under the License.
-@rem
-
-@if "%DEBUG%" == "" @echo off
-@rem ##########################################################################
-@rem
-@rem Gradle startup script for Windows
-@rem
-@rem ##########################################################################
-
-@rem Set local scope for the variables with windows NT shell
-if "%OS%"=="Windows_NT" setlocal
-
-set DIRNAME=%~dp0
-if "%DIRNAME%" == "" set DIRNAME=.
-set APP_BASE_NAME=%~n0
-set APP_HOME=%DIRNAME%
-
-@rem Resolve any "." and ".." in APP_HOME to make it shorter.
-for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
-
-@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
-
-@rem Find java.exe
-if defined JAVA_HOME goto findJavaFromJavaHome
-
-set JAVA_EXE=java.exe
-%JAVA_EXE% -version >NUL 2>&1
-if "%ERRORLEVEL%" == "0" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:findJavaFromJavaHome
-set JAVA_HOME=%JAVA_HOME:"=%
-set JAVA_EXE=%JAVA_HOME%/bin/java.exe
-
-if exist "%JAVA_EXE%" goto execute
-
-echo.
-echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
-echo.
-echo Please set the JAVA_HOME variable in your environment to match the
-echo location of your Java installation.
-
-goto fail
-
-:execute
-@rem Setup the command line
-
-set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
-
-
-@rem Execute Gradle
-"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
-
-:end
-@rem End local scope for the variables with windows NT shell
-if "%ERRORLEVEL%"=="0" goto mainEnd
-
-:fail
-rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
-rem the _cmd.exe /c_ return code!
-if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
-exit /b 1
-
-:mainEnd
-if "%OS%"=="Windows_NT" endlocal
-
-:omega
diff --git a/src-tauri/gen/android/settings.gradle b/src-tauri/gen/android/settings.gradle
deleted file mode 100644
index 3939116..0000000
--- a/src-tauri/gen/android/settings.gradle
+++ /dev/null
@@ -1,3 +0,0 @@
-include ':app'
-
-apply from: 'tauri.settings.gradle'
diff --git a/src-tauri/gen/schemas/acl-manifests.json b/src-tauri/gen/schemas/acl-manifests.json
deleted file mode 100644
index eeee005..0000000
--- a/src-tauri/gen/schemas/acl-manifests.json
+++ /dev/null
@@ -1 +0,0 @@
-{"autostart":{"default_permission":{"identifier":"default","description":"This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n","permissions":["allow-enable","allow-disable","allow-is-enabled"]},"permissions":{"allow-disable":{"identifier":"allow-disable","description":"Enables the disable command without any pre-configured scope.","commands":{"allow":["disable"],"deny":[]}},"allow-enable":{"identifier":"allow-enable","description":"Enables the enable command without any pre-configured scope.","commands":{"allow":["enable"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"deny-disable":{"identifier":"deny-disable","description":"Denies the disable command without any pre-configured scope.","commands":{"allow":[],"deny":["disable"]}},"deny-enable":{"identifier":"deny-enable","description":"Denies the enable command without any pre-configured scope.","commands":{"allow":[],"deny":["enable"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}}},"permission_sets":{},"global_scope_schema":null},"core":{"default_permission":{"identifier":"default","description":"Default core plugins set.","permissions":["core:path:default","core:event:default","core:window:default","core:webview:default","core:app:default","core:image:default","core:resources:default","core:menu:default","core:tray:default"]},"permissions":{},"permission_sets":{},"global_scope_schema":null},"core:app":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-version","allow-name","allow-tauri-version","allow-identifier","allow-bundle-type","allow-register-listener","allow-remove-listener"]},"permissions":{"allow-app-hide":{"identifier":"allow-app-hide","description":"Enables the app_hide command without any pre-configured scope.","commands":{"allow":["app_hide"],"deny":[]}},"allow-app-show":{"identifier":"allow-app-show","description":"Enables the app_show command without any pre-configured scope.","commands":{"allow":["app_show"],"deny":[]}},"allow-bundle-type":{"identifier":"allow-bundle-type","description":"Enables the bundle_type command without any pre-configured scope.","commands":{"allow":["bundle_type"],"deny":[]}},"allow-default-window-icon":{"identifier":"allow-default-window-icon","description":"Enables the default_window_icon command without any pre-configured scope.","commands":{"allow":["default_window_icon"],"deny":[]}},"allow-fetch-data-store-identifiers":{"identifier":"allow-fetch-data-store-identifiers","description":"Enables the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":["fetch_data_store_identifiers"],"deny":[]}},"allow-identifier":{"identifier":"allow-identifier","description":"Enables the identifier command without any pre-configured scope.","commands":{"allow":["identifier"],"deny":[]}},"allow-name":{"identifier":"allow-name","description":"Enables the name command without any pre-configured scope.","commands":{"allow":["name"],"deny":[]}},"allow-register-listener":{"identifier":"allow-register-listener","description":"Enables the register_listener command without any pre-configured scope.","commands":{"allow":["register_listener"],"deny":[]}},"allow-remove-data-store":{"identifier":"allow-remove-data-store","description":"Enables the remove_data_store command without any pre-configured scope.","commands":{"allow":["remove_data_store"],"deny":[]}},"allow-remove-listener":{"identifier":"allow-remove-listener","description":"Enables the remove_listener command without any pre-configured scope.","commands":{"allow":["remove_listener"],"deny":[]}},"allow-set-app-theme":{"identifier":"allow-set-app-theme","description":"Enables the set_app_theme command without any pre-configured scope.","commands":{"allow":["set_app_theme"],"deny":[]}},"allow-set-dock-visibility":{"identifier":"allow-set-dock-visibility","description":"Enables the set_dock_visibility command without any pre-configured scope.","commands":{"allow":["set_dock_visibility"],"deny":[]}},"allow-tauri-version":{"identifier":"allow-tauri-version","description":"Enables the tauri_version command without any pre-configured scope.","commands":{"allow":["tauri_version"],"deny":[]}},"allow-version":{"identifier":"allow-version","description":"Enables the version command without any pre-configured scope.","commands":{"allow":["version"],"deny":[]}},"deny-app-hide":{"identifier":"deny-app-hide","description":"Denies the app_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["app_hide"]}},"deny-app-show":{"identifier":"deny-app-show","description":"Denies the app_show command without any pre-configured scope.","commands":{"allow":[],"deny":["app_show"]}},"deny-bundle-type":{"identifier":"deny-bundle-type","description":"Denies the bundle_type command without any pre-configured scope.","commands":{"allow":[],"deny":["bundle_type"]}},"deny-default-window-icon":{"identifier":"deny-default-window-icon","description":"Denies the default_window_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["default_window_icon"]}},"deny-fetch-data-store-identifiers":{"identifier":"deny-fetch-data-store-identifiers","description":"Denies the fetch_data_store_identifiers command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_data_store_identifiers"]}},"deny-identifier":{"identifier":"deny-identifier","description":"Denies the identifier command without any pre-configured scope.","commands":{"allow":[],"deny":["identifier"]}},"deny-name":{"identifier":"deny-name","description":"Denies the name command without any pre-configured scope.","commands":{"allow":[],"deny":["name"]}},"deny-register-listener":{"identifier":"deny-register-listener","description":"Denies the register_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["register_listener"]}},"deny-remove-data-store":{"identifier":"deny-remove-data-store","description":"Denies the remove_data_store command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_data_store"]}},"deny-remove-listener":{"identifier":"deny-remove-listener","description":"Denies the remove_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_listener"]}},"deny-set-app-theme":{"identifier":"deny-set-app-theme","description":"Denies the set_app_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_app_theme"]}},"deny-set-dock-visibility":{"identifier":"deny-set-dock-visibility","description":"Denies the set_dock_visibility command without any pre-configured scope.","commands":{"allow":[],"deny":["set_dock_visibility"]}},"deny-tauri-version":{"identifier":"deny-tauri-version","description":"Denies the tauri_version command without any pre-configured scope.","commands":{"allow":[],"deny":["tauri_version"]}},"deny-version":{"identifier":"deny-version","description":"Denies the version command without any pre-configured scope.","commands":{"allow":[],"deny":["version"]}}},"permission_sets":{},"global_scope_schema":null},"core:event":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-listen","allow-unlisten","allow-emit","allow-emit-to"]},"permissions":{"allow-emit":{"identifier":"allow-emit","description":"Enables the emit command without any pre-configured scope.","commands":{"allow":["emit"],"deny":[]}},"allow-emit-to":{"identifier":"allow-emit-to","description":"Enables the emit_to command without any pre-configured scope.","commands":{"allow":["emit_to"],"deny":[]}},"allow-listen":{"identifier":"allow-listen","description":"Enables the listen command without any pre-configured scope.","commands":{"allow":["listen"],"deny":[]}},"allow-unlisten":{"identifier":"allow-unlisten","description":"Enables the unlisten command without any pre-configured scope.","commands":{"allow":["unlisten"],"deny":[]}},"deny-emit":{"identifier":"deny-emit","description":"Denies the emit command without any pre-configured scope.","commands":{"allow":[],"deny":["emit"]}},"deny-emit-to":{"identifier":"deny-emit-to","description":"Denies the emit_to command without any pre-configured scope.","commands":{"allow":[],"deny":["emit_to"]}},"deny-listen":{"identifier":"deny-listen","description":"Denies the listen command without any pre-configured scope.","commands":{"allow":[],"deny":["listen"]}},"deny-unlisten":{"identifier":"deny-unlisten","description":"Denies the unlisten command without any pre-configured scope.","commands":{"allow":[],"deny":["unlisten"]}}},"permission_sets":{},"global_scope_schema":null},"core:image":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-from-bytes","allow-from-path","allow-rgba","allow-size"]},"permissions":{"allow-from-bytes":{"identifier":"allow-from-bytes","description":"Enables the from_bytes command without any pre-configured scope.","commands":{"allow":["from_bytes"],"deny":[]}},"allow-from-path":{"identifier":"allow-from-path","description":"Enables the from_path command without any pre-configured scope.","commands":{"allow":["from_path"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-rgba":{"identifier":"allow-rgba","description":"Enables the rgba command without any pre-configured scope.","commands":{"allow":["rgba"],"deny":[]}},"allow-size":{"identifier":"allow-size","description":"Enables the size command without any pre-configured scope.","commands":{"allow":["size"],"deny":[]}},"deny-from-bytes":{"identifier":"deny-from-bytes","description":"Denies the from_bytes command without any pre-configured scope.","commands":{"allow":[],"deny":["from_bytes"]}},"deny-from-path":{"identifier":"deny-from-path","description":"Denies the from_path command without any pre-configured scope.","commands":{"allow":[],"deny":["from_path"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-rgba":{"identifier":"deny-rgba","description":"Denies the rgba command without any pre-configured scope.","commands":{"allow":[],"deny":["rgba"]}},"deny-size":{"identifier":"deny-size","description":"Denies the size command without any pre-configured scope.","commands":{"allow":[],"deny":["size"]}}},"permission_sets":{},"global_scope_schema":null},"core:menu":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-append","allow-prepend","allow-insert","allow-remove","allow-remove-at","allow-items","allow-get","allow-popup","allow-create-default","allow-set-as-app-menu","allow-set-as-window-menu","allow-text","allow-set-text","allow-is-enabled","allow-set-enabled","allow-set-accelerator","allow-set-as-windows-menu-for-nsapp","allow-set-as-help-menu-for-nsapp","allow-is-checked","allow-set-checked","allow-set-icon"]},"permissions":{"allow-append":{"identifier":"allow-append","description":"Enables the append command without any pre-configured scope.","commands":{"allow":["append"],"deny":[]}},"allow-create-default":{"identifier":"allow-create-default","description":"Enables the create_default command without any pre-configured scope.","commands":{"allow":["create_default"],"deny":[]}},"allow-get":{"identifier":"allow-get","description":"Enables the get command without any pre-configured scope.","commands":{"allow":["get"],"deny":[]}},"allow-insert":{"identifier":"allow-insert","description":"Enables the insert command without any pre-configured scope.","commands":{"allow":["insert"],"deny":[]}},"allow-is-checked":{"identifier":"allow-is-checked","description":"Enables the is_checked command without any pre-configured scope.","commands":{"allow":["is_checked"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-items":{"identifier":"allow-items","description":"Enables the items command without any pre-configured scope.","commands":{"allow":["items"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-popup":{"identifier":"allow-popup","description":"Enables the popup command without any pre-configured scope.","commands":{"allow":["popup"],"deny":[]}},"allow-prepend":{"identifier":"allow-prepend","description":"Enables the prepend command without any pre-configured scope.","commands":{"allow":["prepend"],"deny":[]}},"allow-remove":{"identifier":"allow-remove","description":"Enables the remove command without any pre-configured scope.","commands":{"allow":["remove"],"deny":[]}},"allow-remove-at":{"identifier":"allow-remove-at","description":"Enables the remove_at command without any pre-configured scope.","commands":{"allow":["remove_at"],"deny":[]}},"allow-set-accelerator":{"identifier":"allow-set-accelerator","description":"Enables the set_accelerator command without any pre-configured scope.","commands":{"allow":["set_accelerator"],"deny":[]}},"allow-set-as-app-menu":{"identifier":"allow-set-as-app-menu","description":"Enables the set_as_app_menu command without any pre-configured scope.","commands":{"allow":["set_as_app_menu"],"deny":[]}},"allow-set-as-help-menu-for-nsapp":{"identifier":"allow-set-as-help-menu-for-nsapp","description":"Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_help_menu_for_nsapp"],"deny":[]}},"allow-set-as-window-menu":{"identifier":"allow-set-as-window-menu","description":"Enables the set_as_window_menu command without any pre-configured scope.","commands":{"allow":["set_as_window_menu"],"deny":[]}},"allow-set-as-windows-menu-for-nsapp":{"identifier":"allow-set-as-windows-menu-for-nsapp","description":"Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":["set_as_windows_menu_for_nsapp"],"deny":[]}},"allow-set-checked":{"identifier":"allow-set-checked","description":"Enables the set_checked command without any pre-configured scope.","commands":{"allow":["set_checked"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-text":{"identifier":"allow-set-text","description":"Enables the set_text command without any pre-configured scope.","commands":{"allow":["set_text"],"deny":[]}},"allow-text":{"identifier":"allow-text","description":"Enables the text command without any pre-configured scope.","commands":{"allow":["text"],"deny":[]}},"deny-append":{"identifier":"deny-append","description":"Denies the append command without any pre-configured scope.","commands":{"allow":[],"deny":["append"]}},"deny-create-default":{"identifier":"deny-create-default","description":"Denies the create_default command without any pre-configured scope.","commands":{"allow":[],"deny":["create_default"]}},"deny-get":{"identifier":"deny-get","description":"Denies the get command without any pre-configured scope.","commands":{"allow":[],"deny":["get"]}},"deny-insert":{"identifier":"deny-insert","description":"Denies the insert command without any pre-configured scope.","commands":{"allow":[],"deny":["insert"]}},"deny-is-checked":{"identifier":"deny-is-checked","description":"Denies the is_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["is_checked"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-items":{"identifier":"deny-items","description":"Denies the items command without any pre-configured scope.","commands":{"allow":[],"deny":["items"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-popup":{"identifier":"deny-popup","description":"Denies the popup command without any pre-configured scope.","commands":{"allow":[],"deny":["popup"]}},"deny-prepend":{"identifier":"deny-prepend","description":"Denies the prepend command without any pre-configured scope.","commands":{"allow":[],"deny":["prepend"]}},"deny-remove":{"identifier":"deny-remove","description":"Denies the remove command without any pre-configured scope.","commands":{"allow":[],"deny":["remove"]}},"deny-remove-at":{"identifier":"deny-remove-at","description":"Denies the remove_at command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_at"]}},"deny-set-accelerator":{"identifier":"deny-set-accelerator","description":"Denies the set_accelerator command without any pre-configured scope.","commands":{"allow":[],"deny":["set_accelerator"]}},"deny-set-as-app-menu":{"identifier":"deny-set-as-app-menu","description":"Denies the set_as_app_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_app_menu"]}},"deny-set-as-help-menu-for-nsapp":{"identifier":"deny-set-as-help-menu-for-nsapp","description":"Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_help_menu_for_nsapp"]}},"deny-set-as-window-menu":{"identifier":"deny-set-as-window-menu","description":"Denies the set_as_window_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_window_menu"]}},"deny-set-as-windows-menu-for-nsapp":{"identifier":"deny-set-as-windows-menu-for-nsapp","description":"Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.","commands":{"allow":[],"deny":["set_as_windows_menu_for_nsapp"]}},"deny-set-checked":{"identifier":"deny-set-checked","description":"Denies the set_checked command without any pre-configured scope.","commands":{"allow":[],"deny":["set_checked"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-text":{"identifier":"deny-set-text","description":"Denies the set_text command without any pre-configured scope.","commands":{"allow":[],"deny":["set_text"]}},"deny-text":{"identifier":"deny-text","description":"Denies the text command without any pre-configured scope.","commands":{"allow":[],"deny":["text"]}}},"permission_sets":{},"global_scope_schema":null},"core:path":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-resolve-directory","allow-resolve","allow-normalize","allow-join","allow-dirname","allow-extname","allow-basename","allow-is-absolute"]},"permissions":{"allow-basename":{"identifier":"allow-basename","description":"Enables the basename command without any pre-configured scope.","commands":{"allow":["basename"],"deny":[]}},"allow-dirname":{"identifier":"allow-dirname","description":"Enables the dirname command without any pre-configured scope.","commands":{"allow":["dirname"],"deny":[]}},"allow-extname":{"identifier":"allow-extname","description":"Enables the extname command without any pre-configured scope.","commands":{"allow":["extname"],"deny":[]}},"allow-is-absolute":{"identifier":"allow-is-absolute","description":"Enables the is_absolute command without any pre-configured scope.","commands":{"allow":["is_absolute"],"deny":[]}},"allow-join":{"identifier":"allow-join","description":"Enables the join command without any pre-configured scope.","commands":{"allow":["join"],"deny":[]}},"allow-normalize":{"identifier":"allow-normalize","description":"Enables the normalize command without any pre-configured scope.","commands":{"allow":["normalize"],"deny":[]}},"allow-resolve":{"identifier":"allow-resolve","description":"Enables the resolve command without any pre-configured scope.","commands":{"allow":["resolve"],"deny":[]}},"allow-resolve-directory":{"identifier":"allow-resolve-directory","description":"Enables the resolve_directory command without any pre-configured scope.","commands":{"allow":["resolve_directory"],"deny":[]}},"deny-basename":{"identifier":"deny-basename","description":"Denies the basename command without any pre-configured scope.","commands":{"allow":[],"deny":["basename"]}},"deny-dirname":{"identifier":"deny-dirname","description":"Denies the dirname command without any pre-configured scope.","commands":{"allow":[],"deny":["dirname"]}},"deny-extname":{"identifier":"deny-extname","description":"Denies the extname command without any pre-configured scope.","commands":{"allow":[],"deny":["extname"]}},"deny-is-absolute":{"identifier":"deny-is-absolute","description":"Denies the is_absolute command without any pre-configured scope.","commands":{"allow":[],"deny":["is_absolute"]}},"deny-join":{"identifier":"deny-join","description":"Denies the join command without any pre-configured scope.","commands":{"allow":[],"deny":["join"]}},"deny-normalize":{"identifier":"deny-normalize","description":"Denies the normalize command without any pre-configured scope.","commands":{"allow":[],"deny":["normalize"]}},"deny-resolve":{"identifier":"deny-resolve","description":"Denies the resolve command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve"]}},"deny-resolve-directory":{"identifier":"deny-resolve-directory","description":"Denies the resolve_directory command without any pre-configured scope.","commands":{"allow":[],"deny":["resolve_directory"]}}},"permission_sets":{},"global_scope_schema":null},"core:resources":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-close"]},"permissions":{"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}}},"permission_sets":{},"global_scope_schema":null},"core:tray":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin, which enables all commands.","permissions":["allow-new","allow-get-by-id","allow-remove-by-id","allow-set-icon","allow-set-menu","allow-set-tooltip","allow-set-title","allow-set-visible","allow-set-temp-dir-path","allow-set-icon-as-template","allow-set-show-menu-on-left-click"]},"permissions":{"allow-get-by-id":{"identifier":"allow-get-by-id","description":"Enables the get_by_id command without any pre-configured scope.","commands":{"allow":["get_by_id"],"deny":[]}},"allow-new":{"identifier":"allow-new","description":"Enables the new command without any pre-configured scope.","commands":{"allow":["new"],"deny":[]}},"allow-remove-by-id":{"identifier":"allow-remove-by-id","description":"Enables the remove_by_id command without any pre-configured scope.","commands":{"allow":["remove_by_id"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-icon-as-template":{"identifier":"allow-set-icon-as-template","description":"Enables the set_icon_as_template command without any pre-configured scope.","commands":{"allow":["set_icon_as_template"],"deny":[]}},"allow-set-menu":{"identifier":"allow-set-menu","description":"Enables the set_menu command without any pre-configured scope.","commands":{"allow":["set_menu"],"deny":[]}},"allow-set-show-menu-on-left-click":{"identifier":"allow-set-show-menu-on-left-click","description":"Enables the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":["set_show_menu_on_left_click"],"deny":[]}},"allow-set-temp-dir-path":{"identifier":"allow-set-temp-dir-path","description":"Enables the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":["set_temp_dir_path"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-tooltip":{"identifier":"allow-set-tooltip","description":"Enables the set_tooltip command without any pre-configured scope.","commands":{"allow":["set_tooltip"],"deny":[]}},"allow-set-visible":{"identifier":"allow-set-visible","description":"Enables the set_visible command without any pre-configured scope.","commands":{"allow":["set_visible"],"deny":[]}},"deny-get-by-id":{"identifier":"deny-get-by-id","description":"Denies the get_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["get_by_id"]}},"deny-new":{"identifier":"deny-new","description":"Denies the new command without any pre-configured scope.","commands":{"allow":[],"deny":["new"]}},"deny-remove-by-id":{"identifier":"deny-remove-by-id","description":"Denies the remove_by_id command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_by_id"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-icon-as-template":{"identifier":"deny-set-icon-as-template","description":"Denies the set_icon_as_template command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon_as_template"]}},"deny-set-menu":{"identifier":"deny-set-menu","description":"Denies the set_menu command without any pre-configured scope.","commands":{"allow":[],"deny":["set_menu"]}},"deny-set-show-menu-on-left-click":{"identifier":"deny-set-show-menu-on-left-click","description":"Denies the set_show_menu_on_left_click command without any pre-configured scope.","commands":{"allow":[],"deny":["set_show_menu_on_left_click"]}},"deny-set-temp-dir-path":{"identifier":"deny-set-temp-dir-path","description":"Denies the set_temp_dir_path command without any pre-configured scope.","commands":{"allow":[],"deny":["set_temp_dir_path"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-tooltip":{"identifier":"deny-set-tooltip","description":"Denies the set_tooltip command without any pre-configured scope.","commands":{"allow":[],"deny":["set_tooltip"]}},"deny-set-visible":{"identifier":"deny-set-visible","description":"Denies the set_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible"]}}},"permission_sets":{},"global_scope_schema":null},"core:webview":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-webviews","allow-webview-position","allow-webview-size","allow-internal-toggle-devtools"]},"permissions":{"allow-clear-all-browsing-data":{"identifier":"allow-clear-all-browsing-data","description":"Enables the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":["clear_all_browsing_data"],"deny":[]}},"allow-create-webview":{"identifier":"allow-create-webview","description":"Enables the create_webview command without any pre-configured scope.","commands":{"allow":["create_webview"],"deny":[]}},"allow-create-webview-window":{"identifier":"allow-create-webview-window","description":"Enables the create_webview_window command without any pre-configured scope.","commands":{"allow":["create_webview_window"],"deny":[]}},"allow-get-all-webviews":{"identifier":"allow-get-all-webviews","description":"Enables the get_all_webviews command without any pre-configured scope.","commands":{"allow":["get_all_webviews"],"deny":[]}},"allow-internal-toggle-devtools":{"identifier":"allow-internal-toggle-devtools","description":"Enables the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":["internal_toggle_devtools"],"deny":[]}},"allow-print":{"identifier":"allow-print","description":"Enables the print command without any pre-configured scope.","commands":{"allow":["print"],"deny":[]}},"allow-reparent":{"identifier":"allow-reparent","description":"Enables the reparent command without any pre-configured scope.","commands":{"allow":["reparent"],"deny":[]}},"allow-set-webview-auto-resize":{"identifier":"allow-set-webview-auto-resize","description":"Enables the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":["set_webview_auto_resize"],"deny":[]}},"allow-set-webview-background-color":{"identifier":"allow-set-webview-background-color","description":"Enables the set_webview_background_color command without any pre-configured scope.","commands":{"allow":["set_webview_background_color"],"deny":[]}},"allow-set-webview-focus":{"identifier":"allow-set-webview-focus","description":"Enables the set_webview_focus command without any pre-configured scope.","commands":{"allow":["set_webview_focus"],"deny":[]}},"allow-set-webview-position":{"identifier":"allow-set-webview-position","description":"Enables the set_webview_position command without any pre-configured scope.","commands":{"allow":["set_webview_position"],"deny":[]}},"allow-set-webview-size":{"identifier":"allow-set-webview-size","description":"Enables the set_webview_size command without any pre-configured scope.","commands":{"allow":["set_webview_size"],"deny":[]}},"allow-set-webview-zoom":{"identifier":"allow-set-webview-zoom","description":"Enables the set_webview_zoom command without any pre-configured scope.","commands":{"allow":["set_webview_zoom"],"deny":[]}},"allow-webview-close":{"identifier":"allow-webview-close","description":"Enables the webview_close command without any pre-configured scope.","commands":{"allow":["webview_close"],"deny":[]}},"allow-webview-hide":{"identifier":"allow-webview-hide","description":"Enables the webview_hide command without any pre-configured scope.","commands":{"allow":["webview_hide"],"deny":[]}},"allow-webview-position":{"identifier":"allow-webview-position","description":"Enables the webview_position command without any pre-configured scope.","commands":{"allow":["webview_position"],"deny":[]}},"allow-webview-show":{"identifier":"allow-webview-show","description":"Enables the webview_show command without any pre-configured scope.","commands":{"allow":["webview_show"],"deny":[]}},"allow-webview-size":{"identifier":"allow-webview-size","description":"Enables the webview_size command without any pre-configured scope.","commands":{"allow":["webview_size"],"deny":[]}},"deny-clear-all-browsing-data":{"identifier":"deny-clear-all-browsing-data","description":"Denies the clear_all_browsing_data command without any pre-configured scope.","commands":{"allow":[],"deny":["clear_all_browsing_data"]}},"deny-create-webview":{"identifier":"deny-create-webview","description":"Denies the create_webview command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview"]}},"deny-create-webview-window":{"identifier":"deny-create-webview-window","description":"Denies the create_webview_window command without any pre-configured scope.","commands":{"allow":[],"deny":["create_webview_window"]}},"deny-get-all-webviews":{"identifier":"deny-get-all-webviews","description":"Denies the get_all_webviews command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_webviews"]}},"deny-internal-toggle-devtools":{"identifier":"deny-internal-toggle-devtools","description":"Denies the internal_toggle_devtools command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_devtools"]}},"deny-print":{"identifier":"deny-print","description":"Denies the print command without any pre-configured scope.","commands":{"allow":[],"deny":["print"]}},"deny-reparent":{"identifier":"deny-reparent","description":"Denies the reparent command without any pre-configured scope.","commands":{"allow":[],"deny":["reparent"]}},"deny-set-webview-auto-resize":{"identifier":"deny-set-webview-auto-resize","description":"Denies the set_webview_auto_resize command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_auto_resize"]}},"deny-set-webview-background-color":{"identifier":"deny-set-webview-background-color","description":"Denies the set_webview_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_background_color"]}},"deny-set-webview-focus":{"identifier":"deny-set-webview-focus","description":"Denies the set_webview_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_focus"]}},"deny-set-webview-position":{"identifier":"deny-set-webview-position","description":"Denies the set_webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_position"]}},"deny-set-webview-size":{"identifier":"deny-set-webview-size","description":"Denies the set_webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_size"]}},"deny-set-webview-zoom":{"identifier":"deny-set-webview-zoom","description":"Denies the set_webview_zoom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_webview_zoom"]}},"deny-webview-close":{"identifier":"deny-webview-close","description":"Denies the webview_close command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_close"]}},"deny-webview-hide":{"identifier":"deny-webview-hide","description":"Denies the webview_hide command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_hide"]}},"deny-webview-position":{"identifier":"deny-webview-position","description":"Denies the webview_position command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_position"]}},"deny-webview-show":{"identifier":"deny-webview-show","description":"Denies the webview_show command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_show"]}},"deny-webview-size":{"identifier":"deny-webview-size","description":"Denies the webview_size command without any pre-configured scope.","commands":{"allow":[],"deny":["webview_size"]}}},"permission_sets":{},"global_scope_schema":null},"core:window":{"default_permission":{"identifier":"default","description":"Default permissions for the plugin.","permissions":["allow-get-all-windows","allow-scale-factor","allow-inner-position","allow-outer-position","allow-inner-size","allow-outer-size","allow-is-fullscreen","allow-is-minimized","allow-is-maximized","allow-is-focused","allow-is-decorated","allow-is-resizable","allow-is-maximizable","allow-is-minimizable","allow-is-closable","allow-is-visible","allow-is-enabled","allow-title","allow-current-monitor","allow-primary-monitor","allow-monitor-from-point","allow-available-monitors","allow-cursor-position","allow-theme","allow-is-always-on-top","allow-internal-toggle-maximize"]},"permissions":{"allow-available-monitors":{"identifier":"allow-available-monitors","description":"Enables the available_monitors command without any pre-configured scope.","commands":{"allow":["available_monitors"],"deny":[]}},"allow-center":{"identifier":"allow-center","description":"Enables the center command without any pre-configured scope.","commands":{"allow":["center"],"deny":[]}},"allow-close":{"identifier":"allow-close","description":"Enables the close command without any pre-configured scope.","commands":{"allow":["close"],"deny":[]}},"allow-create":{"identifier":"allow-create","description":"Enables the create command without any pre-configured scope.","commands":{"allow":["create"],"deny":[]}},"allow-current-monitor":{"identifier":"allow-current-monitor","description":"Enables the current_monitor command without any pre-configured scope.","commands":{"allow":["current_monitor"],"deny":[]}},"allow-cursor-position":{"identifier":"allow-cursor-position","description":"Enables the cursor_position command without any pre-configured scope.","commands":{"allow":["cursor_position"],"deny":[]}},"allow-destroy":{"identifier":"allow-destroy","description":"Enables the destroy command without any pre-configured scope.","commands":{"allow":["destroy"],"deny":[]}},"allow-get-all-windows":{"identifier":"allow-get-all-windows","description":"Enables the get_all_windows command without any pre-configured scope.","commands":{"allow":["get_all_windows"],"deny":[]}},"allow-hide":{"identifier":"allow-hide","description":"Enables the hide command without any pre-configured scope.","commands":{"allow":["hide"],"deny":[]}},"allow-inner-position":{"identifier":"allow-inner-position","description":"Enables the inner_position command without any pre-configured scope.","commands":{"allow":["inner_position"],"deny":[]}},"allow-inner-size":{"identifier":"allow-inner-size","description":"Enables the inner_size command without any pre-configured scope.","commands":{"allow":["inner_size"],"deny":[]}},"allow-internal-toggle-maximize":{"identifier":"allow-internal-toggle-maximize","description":"Enables the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":["internal_toggle_maximize"],"deny":[]}},"allow-is-always-on-top":{"identifier":"allow-is-always-on-top","description":"Enables the is_always_on_top command without any pre-configured scope.","commands":{"allow":["is_always_on_top"],"deny":[]}},"allow-is-closable":{"identifier":"allow-is-closable","description":"Enables the is_closable command without any pre-configured scope.","commands":{"allow":["is_closable"],"deny":[]}},"allow-is-decorated":{"identifier":"allow-is-decorated","description":"Enables the is_decorated command without any pre-configured scope.","commands":{"allow":["is_decorated"],"deny":[]}},"allow-is-enabled":{"identifier":"allow-is-enabled","description":"Enables the is_enabled command without any pre-configured scope.","commands":{"allow":["is_enabled"],"deny":[]}},"allow-is-focused":{"identifier":"allow-is-focused","description":"Enables the is_focused command without any pre-configured scope.","commands":{"allow":["is_focused"],"deny":[]}},"allow-is-fullscreen":{"identifier":"allow-is-fullscreen","description":"Enables the is_fullscreen command without any pre-configured scope.","commands":{"allow":["is_fullscreen"],"deny":[]}},"allow-is-maximizable":{"identifier":"allow-is-maximizable","description":"Enables the is_maximizable command without any pre-configured scope.","commands":{"allow":["is_maximizable"],"deny":[]}},"allow-is-maximized":{"identifier":"allow-is-maximized","description":"Enables the is_maximized command without any pre-configured scope.","commands":{"allow":["is_maximized"],"deny":[]}},"allow-is-minimizable":{"identifier":"allow-is-minimizable","description":"Enables the is_minimizable command without any pre-configured scope.","commands":{"allow":["is_minimizable"],"deny":[]}},"allow-is-minimized":{"identifier":"allow-is-minimized","description":"Enables the is_minimized command without any pre-configured scope.","commands":{"allow":["is_minimized"],"deny":[]}},"allow-is-resizable":{"identifier":"allow-is-resizable","description":"Enables the is_resizable command without any pre-configured scope.","commands":{"allow":["is_resizable"],"deny":[]}},"allow-is-visible":{"identifier":"allow-is-visible","description":"Enables the is_visible command without any pre-configured scope.","commands":{"allow":["is_visible"],"deny":[]}},"allow-maximize":{"identifier":"allow-maximize","description":"Enables the maximize command without any pre-configured scope.","commands":{"allow":["maximize"],"deny":[]}},"allow-minimize":{"identifier":"allow-minimize","description":"Enables the minimize command without any pre-configured scope.","commands":{"allow":["minimize"],"deny":[]}},"allow-monitor-from-point":{"identifier":"allow-monitor-from-point","description":"Enables the monitor_from_point command without any pre-configured scope.","commands":{"allow":["monitor_from_point"],"deny":[]}},"allow-outer-position":{"identifier":"allow-outer-position","description":"Enables the outer_position command without any pre-configured scope.","commands":{"allow":["outer_position"],"deny":[]}},"allow-outer-size":{"identifier":"allow-outer-size","description":"Enables the outer_size command without any pre-configured scope.","commands":{"allow":["outer_size"],"deny":[]}},"allow-primary-monitor":{"identifier":"allow-primary-monitor","description":"Enables the primary_monitor command without any pre-configured scope.","commands":{"allow":["primary_monitor"],"deny":[]}},"allow-request-user-attention":{"identifier":"allow-request-user-attention","description":"Enables the request_user_attention command without any pre-configured scope.","commands":{"allow":["request_user_attention"],"deny":[]}},"allow-scale-factor":{"identifier":"allow-scale-factor","description":"Enables the scale_factor command without any pre-configured scope.","commands":{"allow":["scale_factor"],"deny":[]}},"allow-set-always-on-bottom":{"identifier":"allow-set-always-on-bottom","description":"Enables the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":["set_always_on_bottom"],"deny":[]}},"allow-set-always-on-top":{"identifier":"allow-set-always-on-top","description":"Enables the set_always_on_top command without any pre-configured scope.","commands":{"allow":["set_always_on_top"],"deny":[]}},"allow-set-background-color":{"identifier":"allow-set-background-color","description":"Enables the set_background_color command without any pre-configured scope.","commands":{"allow":["set_background_color"],"deny":[]}},"allow-set-badge-count":{"identifier":"allow-set-badge-count","description":"Enables the set_badge_count command without any pre-configured scope.","commands":{"allow":["set_badge_count"],"deny":[]}},"allow-set-badge-label":{"identifier":"allow-set-badge-label","description":"Enables the set_badge_label command without any pre-configured scope.","commands":{"allow":["set_badge_label"],"deny":[]}},"allow-set-closable":{"identifier":"allow-set-closable","description":"Enables the set_closable command without any pre-configured scope.","commands":{"allow":["set_closable"],"deny":[]}},"allow-set-content-protected":{"identifier":"allow-set-content-protected","description":"Enables the set_content_protected command without any pre-configured scope.","commands":{"allow":["set_content_protected"],"deny":[]}},"allow-set-cursor-grab":{"identifier":"allow-set-cursor-grab","description":"Enables the set_cursor_grab command without any pre-configured scope.","commands":{"allow":["set_cursor_grab"],"deny":[]}},"allow-set-cursor-icon":{"identifier":"allow-set-cursor-icon","description":"Enables the set_cursor_icon command without any pre-configured scope.","commands":{"allow":["set_cursor_icon"],"deny":[]}},"allow-set-cursor-position":{"identifier":"allow-set-cursor-position","description":"Enables the set_cursor_position command without any pre-configured scope.","commands":{"allow":["set_cursor_position"],"deny":[]}},"allow-set-cursor-visible":{"identifier":"allow-set-cursor-visible","description":"Enables the set_cursor_visible command without any pre-configured scope.","commands":{"allow":["set_cursor_visible"],"deny":[]}},"allow-set-decorations":{"identifier":"allow-set-decorations","description":"Enables the set_decorations command without any pre-configured scope.","commands":{"allow":["set_decorations"],"deny":[]}},"allow-set-effects":{"identifier":"allow-set-effects","description":"Enables the set_effects command without any pre-configured scope.","commands":{"allow":["set_effects"],"deny":[]}},"allow-set-enabled":{"identifier":"allow-set-enabled","description":"Enables the set_enabled command without any pre-configured scope.","commands":{"allow":["set_enabled"],"deny":[]}},"allow-set-focus":{"identifier":"allow-set-focus","description":"Enables the set_focus command without any pre-configured scope.","commands":{"allow":["set_focus"],"deny":[]}},"allow-set-focusable":{"identifier":"allow-set-focusable","description":"Enables the set_focusable command without any pre-configured scope.","commands":{"allow":["set_focusable"],"deny":[]}},"allow-set-fullscreen":{"identifier":"allow-set-fullscreen","description":"Enables the set_fullscreen command without any pre-configured scope.","commands":{"allow":["set_fullscreen"],"deny":[]}},"allow-set-icon":{"identifier":"allow-set-icon","description":"Enables the set_icon command without any pre-configured scope.","commands":{"allow":["set_icon"],"deny":[]}},"allow-set-ignore-cursor-events":{"identifier":"allow-set-ignore-cursor-events","description":"Enables the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":["set_ignore_cursor_events"],"deny":[]}},"allow-set-max-size":{"identifier":"allow-set-max-size","description":"Enables the set_max_size command without any pre-configured scope.","commands":{"allow":["set_max_size"],"deny":[]}},"allow-set-maximizable":{"identifier":"allow-set-maximizable","description":"Enables the set_maximizable command without any pre-configured scope.","commands":{"allow":["set_maximizable"],"deny":[]}},"allow-set-min-size":{"identifier":"allow-set-min-size","description":"Enables the set_min_size command without any pre-configured scope.","commands":{"allow":["set_min_size"],"deny":[]}},"allow-set-minimizable":{"identifier":"allow-set-minimizable","description":"Enables the set_minimizable command without any pre-configured scope.","commands":{"allow":["set_minimizable"],"deny":[]}},"allow-set-overlay-icon":{"identifier":"allow-set-overlay-icon","description":"Enables the set_overlay_icon command without any pre-configured scope.","commands":{"allow":["set_overlay_icon"],"deny":[]}},"allow-set-position":{"identifier":"allow-set-position","description":"Enables the set_position command without any pre-configured scope.","commands":{"allow":["set_position"],"deny":[]}},"allow-set-progress-bar":{"identifier":"allow-set-progress-bar","description":"Enables the set_progress_bar command without any pre-configured scope.","commands":{"allow":["set_progress_bar"],"deny":[]}},"allow-set-resizable":{"identifier":"allow-set-resizable","description":"Enables the set_resizable command without any pre-configured scope.","commands":{"allow":["set_resizable"],"deny":[]}},"allow-set-shadow":{"identifier":"allow-set-shadow","description":"Enables the set_shadow command without any pre-configured scope.","commands":{"allow":["set_shadow"],"deny":[]}},"allow-set-simple-fullscreen":{"identifier":"allow-set-simple-fullscreen","description":"Enables the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":["set_simple_fullscreen"],"deny":[]}},"allow-set-size":{"identifier":"allow-set-size","description":"Enables the set_size command without any pre-configured scope.","commands":{"allow":["set_size"],"deny":[]}},"allow-set-size-constraints":{"identifier":"allow-set-size-constraints","description":"Enables the set_size_constraints command without any pre-configured scope.","commands":{"allow":["set_size_constraints"],"deny":[]}},"allow-set-skip-taskbar":{"identifier":"allow-set-skip-taskbar","description":"Enables the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":["set_skip_taskbar"],"deny":[]}},"allow-set-theme":{"identifier":"allow-set-theme","description":"Enables the set_theme command without any pre-configured scope.","commands":{"allow":["set_theme"],"deny":[]}},"allow-set-title":{"identifier":"allow-set-title","description":"Enables the set_title command without any pre-configured scope.","commands":{"allow":["set_title"],"deny":[]}},"allow-set-title-bar-style":{"identifier":"allow-set-title-bar-style","description":"Enables the set_title_bar_style command without any pre-configured scope.","commands":{"allow":["set_title_bar_style"],"deny":[]}},"allow-set-visible-on-all-workspaces":{"identifier":"allow-set-visible-on-all-workspaces","description":"Enables the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":["set_visible_on_all_workspaces"],"deny":[]}},"allow-show":{"identifier":"allow-show","description":"Enables the show command without any pre-configured scope.","commands":{"allow":["show"],"deny":[]}},"allow-start-dragging":{"identifier":"allow-start-dragging","description":"Enables the start_dragging command without any pre-configured scope.","commands":{"allow":["start_dragging"],"deny":[]}},"allow-start-resize-dragging":{"identifier":"allow-start-resize-dragging","description":"Enables the start_resize_dragging command without any pre-configured scope.","commands":{"allow":["start_resize_dragging"],"deny":[]}},"allow-theme":{"identifier":"allow-theme","description":"Enables the theme command without any pre-configured scope.","commands":{"allow":["theme"],"deny":[]}},"allow-title":{"identifier":"allow-title","description":"Enables the title command without any pre-configured scope.","commands":{"allow":["title"],"deny":[]}},"allow-toggle-maximize":{"identifier":"allow-toggle-maximize","description":"Enables the toggle_maximize command without any pre-configured scope.","commands":{"allow":["toggle_maximize"],"deny":[]}},"allow-unmaximize":{"identifier":"allow-unmaximize","description":"Enables the unmaximize command without any pre-configured scope.","commands":{"allow":["unmaximize"],"deny":[]}},"allow-unminimize":{"identifier":"allow-unminimize","description":"Enables the unminimize command without any pre-configured scope.","commands":{"allow":["unminimize"],"deny":[]}},"deny-available-monitors":{"identifier":"deny-available-monitors","description":"Denies the available_monitors command without any pre-configured scope.","commands":{"allow":[],"deny":["available_monitors"]}},"deny-center":{"identifier":"deny-center","description":"Denies the center command without any pre-configured scope.","commands":{"allow":[],"deny":["center"]}},"deny-close":{"identifier":"deny-close","description":"Denies the close command without any pre-configured scope.","commands":{"allow":[],"deny":["close"]}},"deny-create":{"identifier":"deny-create","description":"Denies the create command without any pre-configured scope.","commands":{"allow":[],"deny":["create"]}},"deny-current-monitor":{"identifier":"deny-current-monitor","description":"Denies the current_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["current_monitor"]}},"deny-cursor-position":{"identifier":"deny-cursor-position","description":"Denies the cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["cursor_position"]}},"deny-destroy":{"identifier":"deny-destroy","description":"Denies the destroy command without any pre-configured scope.","commands":{"allow":[],"deny":["destroy"]}},"deny-get-all-windows":{"identifier":"deny-get-all-windows","description":"Denies the get_all_windows command without any pre-configured scope.","commands":{"allow":[],"deny":["get_all_windows"]}},"deny-hide":{"identifier":"deny-hide","description":"Denies the hide command without any pre-configured scope.","commands":{"allow":[],"deny":["hide"]}},"deny-inner-position":{"identifier":"deny-inner-position","description":"Denies the inner_position command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_position"]}},"deny-inner-size":{"identifier":"deny-inner-size","description":"Denies the inner_size command without any pre-configured scope.","commands":{"allow":[],"deny":["inner_size"]}},"deny-internal-toggle-maximize":{"identifier":"deny-internal-toggle-maximize","description":"Denies the internal_toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["internal_toggle_maximize"]}},"deny-is-always-on-top":{"identifier":"deny-is-always-on-top","description":"Denies the is_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["is_always_on_top"]}},"deny-is-closable":{"identifier":"deny-is-closable","description":"Denies the is_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_closable"]}},"deny-is-decorated":{"identifier":"deny-is-decorated","description":"Denies the is_decorated command without any pre-configured scope.","commands":{"allow":[],"deny":["is_decorated"]}},"deny-is-enabled":{"identifier":"deny-is-enabled","description":"Denies the is_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["is_enabled"]}},"deny-is-focused":{"identifier":"deny-is-focused","description":"Denies the is_focused command without any pre-configured scope.","commands":{"allow":[],"deny":["is_focused"]}},"deny-is-fullscreen":{"identifier":"deny-is-fullscreen","description":"Denies the is_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["is_fullscreen"]}},"deny-is-maximizable":{"identifier":"deny-is-maximizable","description":"Denies the is_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximizable"]}},"deny-is-maximized":{"identifier":"deny-is-maximized","description":"Denies the is_maximized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_maximized"]}},"deny-is-minimizable":{"identifier":"deny-is-minimizable","description":"Denies the is_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimizable"]}},"deny-is-minimized":{"identifier":"deny-is-minimized","description":"Denies the is_minimized command without any pre-configured scope.","commands":{"allow":[],"deny":["is_minimized"]}},"deny-is-resizable":{"identifier":"deny-is-resizable","description":"Denies the is_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["is_resizable"]}},"deny-is-visible":{"identifier":"deny-is-visible","description":"Denies the is_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["is_visible"]}},"deny-maximize":{"identifier":"deny-maximize","description":"Denies the maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["maximize"]}},"deny-minimize":{"identifier":"deny-minimize","description":"Denies the minimize command without any pre-configured scope.","commands":{"allow":[],"deny":["minimize"]}},"deny-monitor-from-point":{"identifier":"deny-monitor-from-point","description":"Denies the monitor_from_point command without any pre-configured scope.","commands":{"allow":[],"deny":["monitor_from_point"]}},"deny-outer-position":{"identifier":"deny-outer-position","description":"Denies the outer_position command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_position"]}},"deny-outer-size":{"identifier":"deny-outer-size","description":"Denies the outer_size command without any pre-configured scope.","commands":{"allow":[],"deny":["outer_size"]}},"deny-primary-monitor":{"identifier":"deny-primary-monitor","description":"Denies the primary_monitor command without any pre-configured scope.","commands":{"allow":[],"deny":["primary_monitor"]}},"deny-request-user-attention":{"identifier":"deny-request-user-attention","description":"Denies the request_user_attention command without any pre-configured scope.","commands":{"allow":[],"deny":["request_user_attention"]}},"deny-scale-factor":{"identifier":"deny-scale-factor","description":"Denies the scale_factor command without any pre-configured scope.","commands":{"allow":[],"deny":["scale_factor"]}},"deny-set-always-on-bottom":{"identifier":"deny-set-always-on-bottom","description":"Denies the set_always_on_bottom command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_bottom"]}},"deny-set-always-on-top":{"identifier":"deny-set-always-on-top","description":"Denies the set_always_on_top command without any pre-configured scope.","commands":{"allow":[],"deny":["set_always_on_top"]}},"deny-set-background-color":{"identifier":"deny-set-background-color","description":"Denies the set_background_color command without any pre-configured scope.","commands":{"allow":[],"deny":["set_background_color"]}},"deny-set-badge-count":{"identifier":"deny-set-badge-count","description":"Denies the set_badge_count command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_count"]}},"deny-set-badge-label":{"identifier":"deny-set-badge-label","description":"Denies the set_badge_label command without any pre-configured scope.","commands":{"allow":[],"deny":["set_badge_label"]}},"deny-set-closable":{"identifier":"deny-set-closable","description":"Denies the set_closable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_closable"]}},"deny-set-content-protected":{"identifier":"deny-set-content-protected","description":"Denies the set_content_protected command without any pre-configured scope.","commands":{"allow":[],"deny":["set_content_protected"]}},"deny-set-cursor-grab":{"identifier":"deny-set-cursor-grab","description":"Denies the set_cursor_grab command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_grab"]}},"deny-set-cursor-icon":{"identifier":"deny-set-cursor-icon","description":"Denies the set_cursor_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_icon"]}},"deny-set-cursor-position":{"identifier":"deny-set-cursor-position","description":"Denies the set_cursor_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_position"]}},"deny-set-cursor-visible":{"identifier":"deny-set-cursor-visible","description":"Denies the set_cursor_visible command without any pre-configured scope.","commands":{"allow":[],"deny":["set_cursor_visible"]}},"deny-set-decorations":{"identifier":"deny-set-decorations","description":"Denies the set_decorations command without any pre-configured scope.","commands":{"allow":[],"deny":["set_decorations"]}},"deny-set-effects":{"identifier":"deny-set-effects","description":"Denies the set_effects command without any pre-configured scope.","commands":{"allow":[],"deny":["set_effects"]}},"deny-set-enabled":{"identifier":"deny-set-enabled","description":"Denies the set_enabled command without any pre-configured scope.","commands":{"allow":[],"deny":["set_enabled"]}},"deny-set-focus":{"identifier":"deny-set-focus","description":"Denies the set_focus command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focus"]}},"deny-set-focusable":{"identifier":"deny-set-focusable","description":"Denies the set_focusable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_focusable"]}},"deny-set-fullscreen":{"identifier":"deny-set-fullscreen","description":"Denies the set_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_fullscreen"]}},"deny-set-icon":{"identifier":"deny-set-icon","description":"Denies the set_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_icon"]}},"deny-set-ignore-cursor-events":{"identifier":"deny-set-ignore-cursor-events","description":"Denies the set_ignore_cursor_events command without any pre-configured scope.","commands":{"allow":[],"deny":["set_ignore_cursor_events"]}},"deny-set-max-size":{"identifier":"deny-set-max-size","description":"Denies the set_max_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_max_size"]}},"deny-set-maximizable":{"identifier":"deny-set-maximizable","description":"Denies the set_maximizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_maximizable"]}},"deny-set-min-size":{"identifier":"deny-set-min-size","description":"Denies the set_min_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_min_size"]}},"deny-set-minimizable":{"identifier":"deny-set-minimizable","description":"Denies the set_minimizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_minimizable"]}},"deny-set-overlay-icon":{"identifier":"deny-set-overlay-icon","description":"Denies the set_overlay_icon command without any pre-configured scope.","commands":{"allow":[],"deny":["set_overlay_icon"]}},"deny-set-position":{"identifier":"deny-set-position","description":"Denies the set_position command without any pre-configured scope.","commands":{"allow":[],"deny":["set_position"]}},"deny-set-progress-bar":{"identifier":"deny-set-progress-bar","description":"Denies the set_progress_bar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_progress_bar"]}},"deny-set-resizable":{"identifier":"deny-set-resizable","description":"Denies the set_resizable command without any pre-configured scope.","commands":{"allow":[],"deny":["set_resizable"]}},"deny-set-shadow":{"identifier":"deny-set-shadow","description":"Denies the set_shadow command without any pre-configured scope.","commands":{"allow":[],"deny":["set_shadow"]}},"deny-set-simple-fullscreen":{"identifier":"deny-set-simple-fullscreen","description":"Denies the set_simple_fullscreen command without any pre-configured scope.","commands":{"allow":[],"deny":["set_simple_fullscreen"]}},"deny-set-size":{"identifier":"deny-set-size","description":"Denies the set_size command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size"]}},"deny-set-size-constraints":{"identifier":"deny-set-size-constraints","description":"Denies the set_size_constraints command without any pre-configured scope.","commands":{"allow":[],"deny":["set_size_constraints"]}},"deny-set-skip-taskbar":{"identifier":"deny-set-skip-taskbar","description":"Denies the set_skip_taskbar command without any pre-configured scope.","commands":{"allow":[],"deny":["set_skip_taskbar"]}},"deny-set-theme":{"identifier":"deny-set-theme","description":"Denies the set_theme command without any pre-configured scope.","commands":{"allow":[],"deny":["set_theme"]}},"deny-set-title":{"identifier":"deny-set-title","description":"Denies the set_title command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title"]}},"deny-set-title-bar-style":{"identifier":"deny-set-title-bar-style","description":"Denies the set_title_bar_style command without any pre-configured scope.","commands":{"allow":[],"deny":["set_title_bar_style"]}},"deny-set-visible-on-all-workspaces":{"identifier":"deny-set-visible-on-all-workspaces","description":"Denies the set_visible_on_all_workspaces command without any pre-configured scope.","commands":{"allow":[],"deny":["set_visible_on_all_workspaces"]}},"deny-show":{"identifier":"deny-show","description":"Denies the show command without any pre-configured scope.","commands":{"allow":[],"deny":["show"]}},"deny-start-dragging":{"identifier":"deny-start-dragging","description":"Denies the start_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_dragging"]}},"deny-start-resize-dragging":{"identifier":"deny-start-resize-dragging","description":"Denies the start_resize_dragging command without any pre-configured scope.","commands":{"allow":[],"deny":["start_resize_dragging"]}},"deny-theme":{"identifier":"deny-theme","description":"Denies the theme command without any pre-configured scope.","commands":{"allow":[],"deny":["theme"]}},"deny-title":{"identifier":"deny-title","description":"Denies the title command without any pre-configured scope.","commands":{"allow":[],"deny":["title"]}},"deny-toggle-maximize":{"identifier":"deny-toggle-maximize","description":"Denies the toggle_maximize command without any pre-configured scope.","commands":{"allow":[],"deny":["toggle_maximize"]}},"deny-unmaximize":{"identifier":"deny-unmaximize","description":"Denies the unmaximize command without any pre-configured scope.","commands":{"allow":[],"deny":["unmaximize"]}},"deny-unminimize":{"identifier":"deny-unminimize","description":"Denies the unminimize command without any pre-configured scope.","commands":{"allow":[],"deny":["unminimize"]}}},"permission_sets":{},"global_scope_schema":null},"dialog":{"default_permission":{"identifier":"default","description":"This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n","permissions":["allow-ask","allow-confirm","allow-message","allow-save","allow-open"]},"permissions":{"allow-ask":{"identifier":"allow-ask","description":"Enables the ask command without any pre-configured scope.","commands":{"allow":["ask"],"deny":[]}},"allow-confirm":{"identifier":"allow-confirm","description":"Enables the confirm command without any pre-configured scope.","commands":{"allow":["confirm"],"deny":[]}},"allow-message":{"identifier":"allow-message","description":"Enables the message command without any pre-configured scope.","commands":{"allow":["message"],"deny":[]}},"allow-open":{"identifier":"allow-open","description":"Enables the open command without any pre-configured scope.","commands":{"allow":["open"],"deny":[]}},"allow-save":{"identifier":"allow-save","description":"Enables the save command without any pre-configured scope.","commands":{"allow":["save"],"deny":[]}},"deny-ask":{"identifier":"deny-ask","description":"Denies the ask command without any pre-configured scope.","commands":{"allow":[],"deny":["ask"]}},"deny-confirm":{"identifier":"deny-confirm","description":"Denies the confirm command without any pre-configured scope.","commands":{"allow":[],"deny":["confirm"]}},"deny-message":{"identifier":"deny-message","description":"Denies the message command without any pre-configured scope.","commands":{"allow":[],"deny":["message"]}},"deny-open":{"identifier":"deny-open","description":"Denies the open command without any pre-configured scope.","commands":{"allow":[],"deny":["open"]}},"deny-save":{"identifier":"deny-save","description":"Denies the save command without any pre-configured scope.","commands":{"allow":[],"deny":["save"]}}},"permission_sets":{},"global_scope_schema":null},"http":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n","permissions":["allow-fetch","allow-fetch-cancel","allow-fetch-send","allow-fetch-read-body","allow-fetch-cancel-body"]},"permissions":{"allow-fetch":{"identifier":"allow-fetch","description":"Enables the fetch command without any pre-configured scope.","commands":{"allow":["fetch"],"deny":[]}},"allow-fetch-cancel":{"identifier":"allow-fetch-cancel","description":"Enables the fetch_cancel command without any pre-configured scope.","commands":{"allow":["fetch_cancel"],"deny":[]}},"allow-fetch-cancel-body":{"identifier":"allow-fetch-cancel-body","description":"Enables the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":["fetch_cancel_body"],"deny":[]}},"allow-fetch-read-body":{"identifier":"allow-fetch-read-body","description":"Enables the fetch_read_body command without any pre-configured scope.","commands":{"allow":["fetch_read_body"],"deny":[]}},"allow-fetch-send":{"identifier":"allow-fetch-send","description":"Enables the fetch_send command without any pre-configured scope.","commands":{"allow":["fetch_send"],"deny":[]}},"deny-fetch":{"identifier":"deny-fetch","description":"Denies the fetch command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch"]}},"deny-fetch-cancel":{"identifier":"deny-fetch-cancel","description":"Denies the fetch_cancel command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel"]}},"deny-fetch-cancel-body":{"identifier":"deny-fetch-cancel-body","description":"Denies the fetch_cancel_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_cancel_body"]}},"deny-fetch-read-body":{"identifier":"deny-fetch-read-body","description":"Denies the fetch_read_body command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_read_body"]}},"deny-fetch-send":{"identifier":"deny-fetch-send","description":"Denies the fetch_send command without any pre-configured scope.","commands":{"allow":[],"deny":["fetch_send"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"},{"properties":{"url":{"description":"A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"}],"description":"HTTP scope entry.","title":"HttpScopeEntry"}},"notification":{"default_permission":{"identifier":"default","description":"This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n","permissions":["allow-is-permission-granted","allow-request-permission","allow-notify","allow-register-action-types","allow-register-listener","allow-cancel","allow-get-pending","allow-remove-active","allow-get-active","allow-check-permissions","allow-show","allow-batch","allow-list-channels","allow-delete-channel","allow-create-channel","allow-permission-state"]},"permissions":{"allow-batch":{"identifier":"allow-batch","description":"Enables the batch command without any pre-configured scope.","commands":{"allow":["batch"],"deny":[]}},"allow-cancel":{"identifier":"allow-cancel","description":"Enables the cancel command without any pre-configured scope.","commands":{"allow":["cancel"],"deny":[]}},"allow-check-permissions":{"identifier":"allow-check-permissions","description":"Enables the check_permissions command without any pre-configured scope.","commands":{"allow":["check_permissions"],"deny":[]}},"allow-create-channel":{"identifier":"allow-create-channel","description":"Enables the create_channel command without any pre-configured scope.","commands":{"allow":["create_channel"],"deny":[]}},"allow-delete-channel":{"identifier":"allow-delete-channel","description":"Enables the delete_channel command without any pre-configured scope.","commands":{"allow":["delete_channel"],"deny":[]}},"allow-get-active":{"identifier":"allow-get-active","description":"Enables the get_active command without any pre-configured scope.","commands":{"allow":["get_active"],"deny":[]}},"allow-get-pending":{"identifier":"allow-get-pending","description":"Enables the get_pending command without any pre-configured scope.","commands":{"allow":["get_pending"],"deny":[]}},"allow-is-permission-granted":{"identifier":"allow-is-permission-granted","description":"Enables the is_permission_granted command without any pre-configured scope.","commands":{"allow":["is_permission_granted"],"deny":[]}},"allow-list-channels":{"identifier":"allow-list-channels","description":"Enables the list_channels command without any pre-configured scope.","commands":{"allow":["list_channels"],"deny":[]}},"allow-notify":{"identifier":"allow-notify","description":"Enables the notify command without any pre-configured scope.","commands":{"allow":["notify"],"deny":[]}},"allow-permission-state":{"identifier":"allow-permission-state","description":"Enables the permission_state command without any pre-configured scope.","commands":{"allow":["permission_state"],"deny":[]}},"allow-register-action-types":{"identifier":"allow-register-action-types","description":"Enables the register_action_types command without any pre-configured scope.","commands":{"allow":["register_action_types"],"deny":[]}},"allow-register-listener":{"identifier":"allow-register-listener","description":"Enables the register_listener command without any pre-configured scope.","commands":{"allow":["register_listener"],"deny":[]}},"allow-remove-active":{"identifier":"allow-remove-active","description":"Enables the remove_active command without any pre-configured scope.","commands":{"allow":["remove_active"],"deny":[]}},"allow-request-permission":{"identifier":"allow-request-permission","description":"Enables the request_permission command without any pre-configured scope.","commands":{"allow":["request_permission"],"deny":[]}},"allow-show":{"identifier":"allow-show","description":"Enables the show command without any pre-configured scope.","commands":{"allow":["show"],"deny":[]}},"deny-batch":{"identifier":"deny-batch","description":"Denies the batch command without any pre-configured scope.","commands":{"allow":[],"deny":["batch"]}},"deny-cancel":{"identifier":"deny-cancel","description":"Denies the cancel command without any pre-configured scope.","commands":{"allow":[],"deny":["cancel"]}},"deny-check-permissions":{"identifier":"deny-check-permissions","description":"Denies the check_permissions command without any pre-configured scope.","commands":{"allow":[],"deny":["check_permissions"]}},"deny-create-channel":{"identifier":"deny-create-channel","description":"Denies the create_channel command without any pre-configured scope.","commands":{"allow":[],"deny":["create_channel"]}},"deny-delete-channel":{"identifier":"deny-delete-channel","description":"Denies the delete_channel command without any pre-configured scope.","commands":{"allow":[],"deny":["delete_channel"]}},"deny-get-active":{"identifier":"deny-get-active","description":"Denies the get_active command without any pre-configured scope.","commands":{"allow":[],"deny":["get_active"]}},"deny-get-pending":{"identifier":"deny-get-pending","description":"Denies the get_pending command without any pre-configured scope.","commands":{"allow":[],"deny":["get_pending"]}},"deny-is-permission-granted":{"identifier":"deny-is-permission-granted","description":"Denies the is_permission_granted command without any pre-configured scope.","commands":{"allow":[],"deny":["is_permission_granted"]}},"deny-list-channels":{"identifier":"deny-list-channels","description":"Denies the list_channels command without any pre-configured scope.","commands":{"allow":[],"deny":["list_channels"]}},"deny-notify":{"identifier":"deny-notify","description":"Denies the notify command without any pre-configured scope.","commands":{"allow":[],"deny":["notify"]}},"deny-permission-state":{"identifier":"deny-permission-state","description":"Denies the permission_state command without any pre-configured scope.","commands":{"allow":[],"deny":["permission_state"]}},"deny-register-action-types":{"identifier":"deny-register-action-types","description":"Denies the register_action_types command without any pre-configured scope.","commands":{"allow":[],"deny":["register_action_types"]}},"deny-register-listener":{"identifier":"deny-register-listener","description":"Denies the register_listener command without any pre-configured scope.","commands":{"allow":[],"deny":["register_listener"]}},"deny-remove-active":{"identifier":"deny-remove-active","description":"Denies the remove_active command without any pre-configured scope.","commands":{"allow":[],"deny":["remove_active"]}},"deny-request-permission":{"identifier":"deny-request-permission","description":"Denies the request_permission command without any pre-configured scope.","commands":{"allow":[],"deny":["request_permission"]}},"deny-show":{"identifier":"deny-show","description":"Denies the show command without any pre-configured scope.","commands":{"allow":[],"deny":["show"]}}},"permission_sets":{},"global_scope_schema":null},"opener":{"default_permission":{"identifier":"default","description":"This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer","permissions":["allow-open-url","allow-reveal-item-in-dir","allow-default-urls"]},"permissions":{"allow-default-urls":{"identifier":"allow-default-urls","description":"This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.","commands":{"allow":[],"deny":[]},"scope":{"allow":[{"url":"mailto:*"},{"url":"tel:*"},{"url":"http://*"},{"url":"https://*"}]}},"allow-open-path":{"identifier":"allow-open-path","description":"Enables the open_path command without any pre-configured scope.","commands":{"allow":["open_path"],"deny":[]}},"allow-open-url":{"identifier":"allow-open-url","description":"Enables the open_url command without any pre-configured scope.","commands":{"allow":["open_url"],"deny":[]}},"allow-reveal-item-in-dir":{"identifier":"allow-reveal-item-in-dir","description":"Enables the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":["reveal_item_in_dir"],"deny":[]}},"deny-open-path":{"identifier":"deny-open-path","description":"Denies the open_path command without any pre-configured scope.","commands":{"allow":[],"deny":["open_path"]}},"deny-open-url":{"identifier":"deny-open-url","description":"Denies the open_url command without any pre-configured scope.","commands":{"allow":[],"deny":["open_url"]}},"deny-reveal-item-in-dir":{"identifier":"deny-reveal-item-in-dir","description":"Denies the reveal_item_in_dir command without any pre-configured scope.","commands":{"allow":[],"deny":["reveal_item_in_dir"]}}},"permission_sets":{},"global_scope_schema":{"$schema":"http://json-schema.org/draft-07/schema#","anyOf":[{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this url with, for example: firefox."},"url":{"description":"A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"","type":"string"}},"required":["url"],"type":"object"},{"properties":{"app":{"allOf":[{"$ref":"#/definitions/Application"}],"description":"An application to open this path with, for example: xdg-open."},"path":{"description":"A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.","type":"string"}},"required":["path"],"type":"object"}],"definitions":{"Application":{"anyOf":[{"description":"Open in default application.","type":"null"},{"description":"If true, allow open with any application.","type":"boolean"},{"description":"Allow specific application to open with.","type":"string"}],"description":"Opener scope application."}},"description":"Opener scope entry.","title":"OpenerScopeEntry"}},"process":{"default_permission":{"identifier":"default","description":"This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n","permissions":["allow-exit","allow-restart"]},"permissions":{"allow-exit":{"identifier":"allow-exit","description":"Enables the exit command without any pre-configured scope.","commands":{"allow":["exit"],"deny":[]}},"allow-restart":{"identifier":"allow-restart","description":"Enables the restart command without any pre-configured scope.","commands":{"allow":["restart"],"deny":[]}},"deny-exit":{"identifier":"deny-exit","description":"Denies the exit command without any pre-configured scope.","commands":{"allow":[],"deny":["exit"]}},"deny-restart":{"identifier":"deny-restart","description":"Denies the restart command without any pre-configured scope.","commands":{"allow":[],"deny":["restart"]}}},"permission_sets":{},"global_scope_schema":null},"updater":{"default_permission":{"identifier":"default","description":"This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n","permissions":["allow-check","allow-download","allow-install","allow-download-and-install"]},"permissions":{"allow-check":{"identifier":"allow-check","description":"Enables the check command without any pre-configured scope.","commands":{"allow":["check"],"deny":[]}},"allow-download":{"identifier":"allow-download","description":"Enables the download command without any pre-configured scope.","commands":{"allow":["download"],"deny":[]}},"allow-download-and-install":{"identifier":"allow-download-and-install","description":"Enables the download_and_install command without any pre-configured scope.","commands":{"allow":["download_and_install"],"deny":[]}},"allow-install":{"identifier":"allow-install","description":"Enables the install command without any pre-configured scope.","commands":{"allow":["install"],"deny":[]}},"deny-check":{"identifier":"deny-check","description":"Denies the check command without any pre-configured scope.","commands":{"allow":[],"deny":["check"]}},"deny-download":{"identifier":"deny-download","description":"Denies the download command without any pre-configured scope.","commands":{"allow":[],"deny":["download"]}},"deny-download-and-install":{"identifier":"deny-download-and-install","description":"Denies the download_and_install command without any pre-configured scope.","commands":{"allow":[],"deny":["download_and_install"]}},"deny-install":{"identifier":"deny-install","description":"Denies the install command without any pre-configured scope.","commands":{"allow":[],"deny":["install"]}}},"permission_sets":{},"global_scope_schema":null},"window-state":{"default_permission":{"identifier":"default","description":"This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n","permissions":["allow-filename","allow-restore-state","allow-save-window-state"]},"permissions":{"allow-filename":{"identifier":"allow-filename","description":"Enables the filename command without any pre-configured scope.","commands":{"allow":["filename"],"deny":[]}},"allow-restore-state":{"identifier":"allow-restore-state","description":"Enables the restore_state command without any pre-configured scope.","commands":{"allow":["restore_state"],"deny":[]}},"allow-save-window-state":{"identifier":"allow-save-window-state","description":"Enables the save_window_state command without any pre-configured scope.","commands":{"allow":["save_window_state"],"deny":[]}},"deny-filename":{"identifier":"deny-filename","description":"Denies the filename command without any pre-configured scope.","commands":{"allow":[],"deny":["filename"]}},"deny-restore-state":{"identifier":"deny-restore-state","description":"Denies the restore_state command without any pre-configured scope.","commands":{"allow":[],"deny":["restore_state"]}},"deny-save-window-state":{"identifier":"deny-save-window-state","description":"Denies the save_window_state command without any pre-configured scope.","commands":{"allow":[],"deny":["save_window_state"]}}},"permission_sets":{},"global_scope_schema":null}}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/android-schema.json b/src-tauri/gen/schemas/android-schema.json
deleted file mode 100644
index 84f66b9..0000000
--- a/src-tauri/gen/schemas/android-schema.json
+++ /dev/null
@@ -1,2729 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "CapabilityFile",
- "description": "Capability formats accepted in a capability file.",
- "anyOf": [
- {
- "description": "A single capability.",
- "allOf": [
- {
- "$ref": "#/definitions/Capability"
- }
- ]
- },
- {
- "description": "A list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- },
- {
- "description": "A list of capabilities.",
- "type": "object",
- "required": [
- "capabilities"
- ],
- "properties": {
- "capabilities": {
- "description": "The list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- }
- ],
- "definitions": {
- "Capability": {
- "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
- "type": "object",
- "required": [
- "identifier",
- "permissions"
- ],
- "properties": {
- "identifier": {
- "description": "Identifier of the capability.\n\n## Example\n\n`main-user-files-write`",
- "type": "string"
- },
- "description": {
- "description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
- "default": "",
- "type": "string"
- },
- "remote": {
- "description": "Configure remote URLs that can use the capability permissions.\n\nThis setting is optional and defaults to not being set, as our default use case is that the content is served from our local application.\n\n:::caution Make sure you understand the security implications of providing remote sources with local system access. :::\n\n## Example\n\n```json { \"urls\": [\"https://*.mydomain.dev\"] } ```",
- "anyOf": [
- {
- "$ref": "#/definitions/CapabilityRemote"
- },
- {
- "type": "null"
- }
- ]
- },
- "local": {
- "description": "Whether this capability is enabled for local app URLs or not. Defaults to `true`.",
- "default": true,
- "type": "boolean"
- },
- "windows": {
- "description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "webviews": {
- "description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "permissions": {
- "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
- "type": "array",
- "items": {
- "$ref": "#/definitions/PermissionEntry"
- },
- "uniqueItems": true
- },
- "platforms": {
- "description": "Limit which target platforms this capability applies to.\n\nBy default all platforms are targeted.\n\n## Example\n\n`[\"macOS\",\"windows\"]`",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Target"
- }
- }
- }
- },
- "CapabilityRemote": {
- "description": "Configuration for remote URLs that are associated with the capability.",
- "type": "object",
- "required": [
- "urls"
- ],
- "properties": {
- "urls": {
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n## Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "PermissionEntry": {
- "description": "An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`] or an object that references a permission and extends its scope.",
- "anyOf": [
- {
- "description": "Reference a permission or permission set by identifier.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- {
- "description": "Reference a permission or permission set by identifier and extends its scope.",
- "type": "object",
- "allOf": [
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- "allow": {
- "description": "Data that defines what is allowed by the scope.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- "deny": {
- "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- }
- }
- }
- ],
- "required": [
- "identifier"
- ]
- }
- ]
- },
- "Identifier": {
- "description": "Permission identifier",
- "oneOf": [
- {
- "description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
- "type": "string",
- "const": "core:default",
- "markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`",
- "type": "string",
- "const": "core:app:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`"
- },
- {
- "description": "Enables the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-hide",
- "markdownDescription": "Enables the app_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-show",
- "markdownDescription": "Enables the app_show command without any pre-configured scope."
- },
- {
- "description": "Enables the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-bundle-type",
- "markdownDescription": "Enables the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Enables the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-default-window-icon",
- "markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-fetch-data-store-identifiers",
- "markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Enables the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-identifier",
- "markdownDescription": "Enables the identifier command without any pre-configured scope."
- },
- {
- "description": "Enables the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-name",
- "markdownDescription": "Enables the name command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-data-store",
- "markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-listener",
- "markdownDescription": "Enables the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-app-theme",
- "markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-dock-visibility",
- "markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Enables the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-tauri-version",
- "markdownDescription": "Enables the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Enables the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-version",
- "markdownDescription": "Enables the version command without any pre-configured scope."
- },
- {
- "description": "Denies the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-hide",
- "markdownDescription": "Denies the app_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-show",
- "markdownDescription": "Denies the app_show command without any pre-configured scope."
- },
- {
- "description": "Denies the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-bundle-type",
- "markdownDescription": "Denies the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Denies the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-default-window-icon",
- "markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-fetch-data-store-identifiers",
- "markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Denies the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-identifier",
- "markdownDescription": "Denies the identifier command without any pre-configured scope."
- },
- {
- "description": "Denies the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-name",
- "markdownDescription": "Denies the name command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-data-store",
- "markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-listener",
- "markdownDescription": "Denies the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-app-theme",
- "markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-dock-visibility",
- "markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Denies the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-tauri-version",
- "markdownDescription": "Denies the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Denies the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-version",
- "markdownDescription": "Denies the version command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
- "type": "string",
- "const": "core:event:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
- },
- {
- "description": "Enables the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit",
- "markdownDescription": "Enables the emit command without any pre-configured scope."
- },
- {
- "description": "Enables the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit-to",
- "markdownDescription": "Enables the emit_to command without any pre-configured scope."
- },
- {
- "description": "Enables the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-listen",
- "markdownDescription": "Enables the listen command without any pre-configured scope."
- },
- {
- "description": "Enables the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-unlisten",
- "markdownDescription": "Enables the unlisten command without any pre-configured scope."
- },
- {
- "description": "Denies the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit",
- "markdownDescription": "Denies the emit command without any pre-configured scope."
- },
- {
- "description": "Denies the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit-to",
- "markdownDescription": "Denies the emit_to command without any pre-configured scope."
- },
- {
- "description": "Denies the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-listen",
- "markdownDescription": "Denies the listen command without any pre-configured scope."
- },
- {
- "description": "Denies the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-unlisten",
- "markdownDescription": "Denies the unlisten command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
- "type": "string",
- "const": "core:image:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
- },
- {
- "description": "Enables the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-bytes",
- "markdownDescription": "Enables the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Enables the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-path",
- "markdownDescription": "Enables the from_path command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-rgba",
- "markdownDescription": "Enables the rgba command without any pre-configured scope."
- },
- {
- "description": "Enables the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-size",
- "markdownDescription": "Enables the size command without any pre-configured scope."
- },
- {
- "description": "Denies the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-bytes",
- "markdownDescription": "Denies the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Denies the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-path",
- "markdownDescription": "Denies the from_path command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-rgba",
- "markdownDescription": "Denies the rgba command without any pre-configured scope."
- },
- {
- "description": "Denies the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-size",
- "markdownDescription": "Denies the size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
- "type": "string",
- "const": "core:menu:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
- },
- {
- "description": "Enables the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-append",
- "markdownDescription": "Enables the append command without any pre-configured scope."
- },
- {
- "description": "Enables the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-create-default",
- "markdownDescription": "Enables the create_default command without any pre-configured scope."
- },
- {
- "description": "Enables the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-get",
- "markdownDescription": "Enables the get command without any pre-configured scope."
- },
- {
- "description": "Enables the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-insert",
- "markdownDescription": "Enables the insert command without any pre-configured scope."
- },
- {
- "description": "Enables the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-checked",
- "markdownDescription": "Enables the is_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-items",
- "markdownDescription": "Enables the items command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-popup",
- "markdownDescription": "Enables the popup command without any pre-configured scope."
- },
- {
- "description": "Enables the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-prepend",
- "markdownDescription": "Enables the prepend command without any pre-configured scope."
- },
- {
- "description": "Enables the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove",
- "markdownDescription": "Enables the remove command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove-at",
- "markdownDescription": "Enables the remove_at command without any pre-configured scope."
- },
- {
- "description": "Enables the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-accelerator",
- "markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-app-menu",
- "markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-help-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-window-menu",
- "markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-checked",
- "markdownDescription": "Enables the set_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-text",
- "markdownDescription": "Enables the set_text command without any pre-configured scope."
- },
- {
- "description": "Enables the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-text",
- "markdownDescription": "Enables the text command without any pre-configured scope."
- },
- {
- "description": "Denies the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-append",
- "markdownDescription": "Denies the append command without any pre-configured scope."
- },
- {
- "description": "Denies the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-create-default",
- "markdownDescription": "Denies the create_default command without any pre-configured scope."
- },
- {
- "description": "Denies the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-get",
- "markdownDescription": "Denies the get command without any pre-configured scope."
- },
- {
- "description": "Denies the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-insert",
- "markdownDescription": "Denies the insert command without any pre-configured scope."
- },
- {
- "description": "Denies the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-checked",
- "markdownDescription": "Denies the is_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-items",
- "markdownDescription": "Denies the items command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-popup",
- "markdownDescription": "Denies the popup command without any pre-configured scope."
- },
- {
- "description": "Denies the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-prepend",
- "markdownDescription": "Denies the prepend command without any pre-configured scope."
- },
- {
- "description": "Denies the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove",
- "markdownDescription": "Denies the remove command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove-at",
- "markdownDescription": "Denies the remove_at command without any pre-configured scope."
- },
- {
- "description": "Denies the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-accelerator",
- "markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-app-menu",
- "markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-help-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-window-menu",
- "markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-checked",
- "markdownDescription": "Denies the set_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-text",
- "markdownDescription": "Denies the set_text command without any pre-configured scope."
- },
- {
- "description": "Denies the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-text",
- "markdownDescription": "Denies the text command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
- "type": "string",
- "const": "core:path:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
- },
- {
- "description": "Enables the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-basename",
- "markdownDescription": "Enables the basename command without any pre-configured scope."
- },
- {
- "description": "Enables the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-dirname",
- "markdownDescription": "Enables the dirname command without any pre-configured scope."
- },
- {
- "description": "Enables the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-extname",
- "markdownDescription": "Enables the extname command without any pre-configured scope."
- },
- {
- "description": "Enables the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-is-absolute",
- "markdownDescription": "Enables the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Enables the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-join",
- "markdownDescription": "Enables the join command without any pre-configured scope."
- },
- {
- "description": "Enables the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-normalize",
- "markdownDescription": "Enables the normalize command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve",
- "markdownDescription": "Enables the resolve command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve-directory",
- "markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Denies the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-basename",
- "markdownDescription": "Denies the basename command without any pre-configured scope."
- },
- {
- "description": "Denies the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-dirname",
- "markdownDescription": "Denies the dirname command without any pre-configured scope."
- },
- {
- "description": "Denies the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-extname",
- "markdownDescription": "Denies the extname command without any pre-configured scope."
- },
- {
- "description": "Denies the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-is-absolute",
- "markdownDescription": "Denies the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Denies the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-join",
- "markdownDescription": "Denies the join command without any pre-configured scope."
- },
- {
- "description": "Denies the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-normalize",
- "markdownDescription": "Denies the normalize command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve",
- "markdownDescription": "Denies the resolve command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve-directory",
- "markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
- "type": "string",
- "const": "core:resources:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
- "type": "string",
- "const": "core:tray:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
- },
- {
- "description": "Enables the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-get-by-id",
- "markdownDescription": "Enables the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-remove-by-id",
- "markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon-as-template",
- "markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Enables the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-menu",
- "markdownDescription": "Enables the set_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-show-menu-on-left-click",
- "markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Enables the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-temp-dir-path",
- "markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-tooltip",
- "markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-visible",
- "markdownDescription": "Enables the set_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-get-by-id",
- "markdownDescription": "Denies the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-remove-by-id",
- "markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon-as-template",
- "markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Denies the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-menu",
- "markdownDescription": "Denies the set_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-show-menu-on-left-click",
- "markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Denies the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-temp-dir-path",
- "markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-tooltip",
- "markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-visible",
- "markdownDescription": "Denies the set_visible command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
- "type": "string",
- "const": "core:webview:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
- },
- {
- "description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-clear-all-browsing-data",
- "markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview",
- "markdownDescription": "Enables the create_webview command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview-window",
- "markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-get-all-webviews",
- "markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-internal-toggle-devtools",
- "markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Enables the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-print",
- "markdownDescription": "Enables the print command without any pre-configured scope."
- },
- {
- "description": "Enables the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-reparent",
- "markdownDescription": "Enables the reparent command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-auto-resize",
- "markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-background-color",
- "markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-focus",
- "markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-position",
- "markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-size",
- "markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-zoom",
- "markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-close",
- "markdownDescription": "Enables the webview_close command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-hide",
- "markdownDescription": "Enables the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-position",
- "markdownDescription": "Enables the webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-show",
- "markdownDescription": "Enables the webview_show command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-size",
- "markdownDescription": "Enables the webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-clear-all-browsing-data",
- "markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview",
- "markdownDescription": "Denies the create_webview command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview-window",
- "markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-get-all-webviews",
- "markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-internal-toggle-devtools",
- "markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Denies the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-print",
- "markdownDescription": "Denies the print command without any pre-configured scope."
- },
- {
- "description": "Denies the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-reparent",
- "markdownDescription": "Denies the reparent command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-auto-resize",
- "markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-background-color",
- "markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-focus",
- "markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-position",
- "markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-size",
- "markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-zoom",
- "markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-close",
- "markdownDescription": "Denies the webview_close command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-hide",
- "markdownDescription": "Denies the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-position",
- "markdownDescription": "Denies the webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-show",
- "markdownDescription": "Denies the webview_show command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-size",
- "markdownDescription": "Denies the webview_size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
- "type": "string",
- "const": "core:window:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
- },
- {
- "description": "Enables the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-available-monitors",
- "markdownDescription": "Enables the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Enables the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-center",
- "markdownDescription": "Enables the center command without any pre-configured scope."
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Enables the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-create",
- "markdownDescription": "Enables the create command without any pre-configured scope."
- },
- {
- "description": "Enables the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-current-monitor",
- "markdownDescription": "Enables the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-cursor-position",
- "markdownDescription": "Enables the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-destroy",
- "markdownDescription": "Enables the destroy command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-get-all-windows",
- "markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Enables the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-hide",
- "markdownDescription": "Enables the hide command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-position",
- "markdownDescription": "Enables the inner_position command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-size",
- "markdownDescription": "Enables the inner_size command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-internal-toggle-maximize",
- "markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-always-on-top",
- "markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-closable",
- "markdownDescription": "Enables the is_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-decorated",
- "markdownDescription": "Enables the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-focused",
- "markdownDescription": "Enables the is_focused command without any pre-configured scope."
- },
- {
- "description": "Enables the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-fullscreen",
- "markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximizable",
- "markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximized",
- "markdownDescription": "Enables the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimizable",
- "markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimized",
- "markdownDescription": "Enables the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-resizable",
- "markdownDescription": "Enables the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-visible",
- "markdownDescription": "Enables the is_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-maximize",
- "markdownDescription": "Enables the maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-minimize",
- "markdownDescription": "Enables the minimize command without any pre-configured scope."
- },
- {
- "description": "Enables the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-monitor-from-point",
- "markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-position",
- "markdownDescription": "Enables the outer_position command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-size",
- "markdownDescription": "Enables the outer_size command without any pre-configured scope."
- },
- {
- "description": "Enables the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-primary-monitor",
- "markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-request-user-attention",
- "markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Enables the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-scale-factor",
- "markdownDescription": "Enables the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-bottom",
- "markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-top",
- "markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-background-color",
- "markdownDescription": "Enables the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-count",
- "markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-label",
- "markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Enables the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-closable",
- "markdownDescription": "Enables the set_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-content-protected",
- "markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-grab",
- "markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-icon",
- "markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-position",
- "markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-visible",
- "markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-decorations",
- "markdownDescription": "Enables the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Enables the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-effects",
- "markdownDescription": "Enables the set_effects command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focus",
- "markdownDescription": "Enables the set_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focusable",
- "markdownDescription": "Enables the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-fullscreen",
- "markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-ignore-cursor-events",
- "markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Enables the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-max-size",
- "markdownDescription": "Enables the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-maximizable",
- "markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-min-size",
- "markdownDescription": "Enables the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-minimizable",
- "markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-overlay-icon",
- "markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-position",
- "markdownDescription": "Enables the set_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-progress-bar",
- "markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-resizable",
- "markdownDescription": "Enables the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-shadow",
- "markdownDescription": "Enables the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-simple-fullscreen",
- "markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size",
- "markdownDescription": "Enables the set_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size-constraints",
- "markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Enables the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-skip-taskbar",
- "markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-theme",
- "markdownDescription": "Enables the set_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title-bar-style",
- "markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-visible-on-all-workspaces",
- "markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Enables the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-dragging",
- "markdownDescription": "Enables the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-resize-dragging",
- "markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-theme",
- "markdownDescription": "Enables the theme command without any pre-configured scope."
- },
- {
- "description": "Enables the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-title",
- "markdownDescription": "Enables the title command without any pre-configured scope."
- },
- {
- "description": "Enables the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-toggle-maximize",
- "markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unmaximize",
- "markdownDescription": "Enables the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unminimize",
- "markdownDescription": "Enables the unminimize command without any pre-configured scope."
- },
- {
- "description": "Denies the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-available-monitors",
- "markdownDescription": "Denies the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Denies the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-center",
- "markdownDescription": "Denies the center command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Denies the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-create",
- "markdownDescription": "Denies the create command without any pre-configured scope."
- },
- {
- "description": "Denies the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-current-monitor",
- "markdownDescription": "Denies the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-cursor-position",
- "markdownDescription": "Denies the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-destroy",
- "markdownDescription": "Denies the destroy command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-get-all-windows",
- "markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Denies the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-hide",
- "markdownDescription": "Denies the hide command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-position",
- "markdownDescription": "Denies the inner_position command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-size",
- "markdownDescription": "Denies the inner_size command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-internal-toggle-maximize",
- "markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-always-on-top",
- "markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-closable",
- "markdownDescription": "Denies the is_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-decorated",
- "markdownDescription": "Denies the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-focused",
- "markdownDescription": "Denies the is_focused command without any pre-configured scope."
- },
- {
- "description": "Denies the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-fullscreen",
- "markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximizable",
- "markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximized",
- "markdownDescription": "Denies the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimizable",
- "markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimized",
- "markdownDescription": "Denies the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-resizable",
- "markdownDescription": "Denies the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-visible",
- "markdownDescription": "Denies the is_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-maximize",
- "markdownDescription": "Denies the maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-minimize",
- "markdownDescription": "Denies the minimize command without any pre-configured scope."
- },
- {
- "description": "Denies the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-monitor-from-point",
- "markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-position",
- "markdownDescription": "Denies the outer_position command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-size",
- "markdownDescription": "Denies the outer_size command without any pre-configured scope."
- },
- {
- "description": "Denies the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-primary-monitor",
- "markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-request-user-attention",
- "markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Denies the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-scale-factor",
- "markdownDescription": "Denies the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-bottom",
- "markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-top",
- "markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-background-color",
- "markdownDescription": "Denies the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-count",
- "markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-label",
- "markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Denies the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-closable",
- "markdownDescription": "Denies the set_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-content-protected",
- "markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-grab",
- "markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-icon",
- "markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-position",
- "markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-visible",
- "markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-decorations",
- "markdownDescription": "Denies the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Denies the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-effects",
- "markdownDescription": "Denies the set_effects command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focus",
- "markdownDescription": "Denies the set_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focusable",
- "markdownDescription": "Denies the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-fullscreen",
- "markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-ignore-cursor-events",
- "markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Denies the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-max-size",
- "markdownDescription": "Denies the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-maximizable",
- "markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-min-size",
- "markdownDescription": "Denies the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-minimizable",
- "markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-overlay-icon",
- "markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-position",
- "markdownDescription": "Denies the set_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-progress-bar",
- "markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-resizable",
- "markdownDescription": "Denies the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-shadow",
- "markdownDescription": "Denies the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-simple-fullscreen",
- "markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size",
- "markdownDescription": "Denies the set_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size-constraints",
- "markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Denies the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-skip-taskbar",
- "markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-theme",
- "markdownDescription": "Denies the set_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title-bar-style",
- "markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-visible-on-all-workspaces",
- "markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "Denies the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-dragging",
- "markdownDescription": "Denies the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-resize-dragging",
- "markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-theme",
- "markdownDescription": "Denies the theme command without any pre-configured scope."
- },
- {
- "description": "Denies the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-title",
- "markdownDescription": "Denies the title command without any pre-configured scope."
- },
- {
- "description": "Denies the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-toggle-maximize",
- "markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unmaximize",
- "markdownDescription": "Denies the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unminimize",
- "markdownDescription": "Denies the unminimize command without any pre-configured scope."
- },
- {
- "description": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`",
- "type": "string",
- "const": "deep-link:default",
- "markdownDescription": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`"
- },
- {
- "description": "Enables the get_current command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-get-current",
- "markdownDescription": "Enables the get_current command without any pre-configured scope."
- },
- {
- "description": "Enables the is_registered command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-is-registered",
- "markdownDescription": "Enables the is_registered command without any pre-configured scope."
- },
- {
- "description": "Enables the register command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-register",
- "markdownDescription": "Enables the register command without any pre-configured scope."
- },
- {
- "description": "Enables the unregister command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-unregister",
- "markdownDescription": "Enables the unregister command without any pre-configured scope."
- },
- {
- "description": "Denies the get_current command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-get-current",
- "markdownDescription": "Denies the get_current command without any pre-configured scope."
- },
- {
- "description": "Denies the is_registered command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-is-registered",
- "markdownDescription": "Denies the is_registered command without any pre-configured scope."
- },
- {
- "description": "Denies the register command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-register",
- "markdownDescription": "Denies the register command without any pre-configured scope."
- },
- {
- "description": "Denies the unregister command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-unregister",
- "markdownDescription": "Denies the unregister command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
- "type": "string",
- "const": "notification:default",
- "markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
- },
- {
- "description": "Enables the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-batch",
- "markdownDescription": "Enables the batch command without any pre-configured scope."
- },
- {
- "description": "Enables the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-cancel",
- "markdownDescription": "Enables the cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-check-permissions",
- "markdownDescription": "Enables the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Enables the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-create-channel",
- "markdownDescription": "Enables the create_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-delete-channel",
- "markdownDescription": "Enables the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-active",
- "markdownDescription": "Enables the get_active command without any pre-configured scope."
- },
- {
- "description": "Enables the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-pending",
- "markdownDescription": "Enables the get_pending command without any pre-configured scope."
- },
- {
- "description": "Enables the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-is-permission-granted",
- "markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Enables the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-list-channels",
- "markdownDescription": "Enables the list_channels command without any pre-configured scope."
- },
- {
- "description": "Enables the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-notify",
- "markdownDescription": "Enables the notify command without any pre-configured scope."
- },
- {
- "description": "Enables the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-permission-state",
- "markdownDescription": "Enables the permission_state command without any pre-configured scope."
- },
- {
- "description": "Enables the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-action-types",
- "markdownDescription": "Enables the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-remove-active",
- "markdownDescription": "Enables the remove_active command without any pre-configured scope."
- },
- {
- "description": "Enables the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-request-permission",
- "markdownDescription": "Enables the request_permission command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Denies the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-batch",
- "markdownDescription": "Denies the batch command without any pre-configured scope."
- },
- {
- "description": "Denies the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-cancel",
- "markdownDescription": "Denies the cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-check-permissions",
- "markdownDescription": "Denies the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Denies the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-create-channel",
- "markdownDescription": "Denies the create_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-delete-channel",
- "markdownDescription": "Denies the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-active",
- "markdownDescription": "Denies the get_active command without any pre-configured scope."
- },
- {
- "description": "Denies the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-pending",
- "markdownDescription": "Denies the get_pending command without any pre-configured scope."
- },
- {
- "description": "Denies the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-is-permission-granted",
- "markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Denies the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-list-channels",
- "markdownDescription": "Denies the list_channels command without any pre-configured scope."
- },
- {
- "description": "Denies the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-notify",
- "markdownDescription": "Denies the notify command without any pre-configured scope."
- },
- {
- "description": "Denies the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-permission-state",
- "markdownDescription": "Denies the permission_state command without any pre-configured scope."
- },
- {
- "description": "Denies the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-action-types",
- "markdownDescription": "Denies the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-remove-active",
- "markdownDescription": "Denies the remove_active command without any pre-configured scope."
- },
- {
- "description": "Denies the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-request-permission",
- "markdownDescription": "Denies the request_permission command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- },
- "Value": {
- "description": "All supported ACL values.",
- "anyOf": [
- {
- "description": "Represents a null JSON value.",
- "type": "null"
- },
- {
- "description": "Represents a [`bool`].",
- "type": "boolean"
- },
- {
- "description": "Represents a valid ACL [`Number`].",
- "allOf": [
- {
- "$ref": "#/definitions/Number"
- }
- ]
- },
- {
- "description": "Represents a [`String`].",
- "type": "string"
- },
- {
- "description": "Represents a list of other [`Value`]s.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- {
- "description": "Represents a map of [`String`] keys to [`Value`]s.",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/Value"
- }
- }
- ]
- },
- "Number": {
- "description": "A valid ACL number.",
- "anyOf": [
- {
- "description": "Represents an [`i64`].",
- "type": "integer",
- "format": "int64"
- },
- {
- "description": "Represents a [`f64`].",
- "type": "number",
- "format": "double"
- }
- ]
- },
- "Target": {
- "description": "Platform target.",
- "oneOf": [
- {
- "description": "MacOS.",
- "type": "string",
- "enum": [
- "macOS"
- ]
- },
- {
- "description": "Windows.",
- "type": "string",
- "enum": [
- "windows"
- ]
- },
- {
- "description": "Linux.",
- "type": "string",
- "enum": [
- "linux"
- ]
- },
- {
- "description": "Android.",
- "type": "string",
- "enum": [
- "android"
- ]
- },
- {
- "description": "iOS.",
- "type": "string",
- "enum": [
- "iOS"
- ]
- }
- ]
- },
- "Application": {
- "description": "Opener scope application.",
- "anyOf": [
- {
- "description": "Open in default application.",
- "type": "null"
- },
- {
- "description": "If true, allow open with any application.",
- "type": "boolean"
- },
- {
- "description": "Allow specific application to open with.",
- "type": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/capabilities.json b/src-tauri/gen/schemas/capabilities.json
deleted file mode 100644
index 87bc968..0000000
--- a/src-tauri/gen/schemas/capabilities.json
+++ /dev/null
@@ -1 +0,0 @@
-{"default":{"identifier":"default","description":"Default capability for all windows","local":true,"windows":["*"],"permissions":["core:default","core:webview:allow-internal-toggle-devtools","opener:default","opener:allow-open-url","opener:allow-default-urls","notification:default","notification:allow-register-listener","autostart:default","updater:default","updater:allow-check","updater:allow-download","updater:allow-download-and-install","dialog:default","process:allow-restart",{"identifier":"http:default","allow":[{"url":"https://api.telegram.org/**"}]}],"platforms":["linux","windows","macOS"]},"mobile":{"identifier":"mobile","description":"Default capability for mobile","local":true,"windows":["*"],"permissions":["core:default","notification:default","deep-link:default","opener:default"],"platforms":["android","iOS"]}}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/desktop-schema.json b/src-tauri/gen/schemas/desktop-schema.json
deleted file mode 100644
index dea2186..0000000
--- a/src-tauri/gen/schemas/desktop-schema.json
+++ /dev/null
@@ -1,3113 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "CapabilityFile",
- "description": "Capability formats accepted in a capability file.",
- "anyOf": [
- {
- "description": "A single capability.",
- "allOf": [
- {
- "$ref": "#/definitions/Capability"
- }
- ]
- },
- {
- "description": "A list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- },
- {
- "description": "A list of capabilities.",
- "type": "object",
- "required": [
- "capabilities"
- ],
- "properties": {
- "capabilities": {
- "description": "The list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- }
- ],
- "definitions": {
- "Capability": {
- "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
- "type": "object",
- "required": [
- "identifier",
- "permissions"
- ],
- "properties": {
- "identifier": {
- "description": "Identifier of the capability.\n\n## Example\n\n`main-user-files-write`",
- "type": "string"
- },
- "description": {
- "description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
- "default": "",
- "type": "string"
- },
- "remote": {
- "description": "Configure remote URLs that can use the capability permissions.\n\nThis setting is optional and defaults to not being set, as our default use case is that the content is served from our local application.\n\n:::caution Make sure you understand the security implications of providing remote sources with local system access. :::\n\n## Example\n\n```json { \"urls\": [\"https://*.mydomain.dev\"] } ```",
- "anyOf": [
- {
- "$ref": "#/definitions/CapabilityRemote"
- },
- {
- "type": "null"
- }
- ]
- },
- "local": {
- "description": "Whether this capability is enabled for local app URLs or not. Defaults to `true`.",
- "default": true,
- "type": "boolean"
- },
- "windows": {
- "description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "webviews": {
- "description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "permissions": {
- "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
- "type": "array",
- "items": {
- "$ref": "#/definitions/PermissionEntry"
- },
- "uniqueItems": true
- },
- "platforms": {
- "description": "Limit which target platforms this capability applies to.\n\nBy default all platforms are targeted.\n\n## Example\n\n`[\"macOS\",\"windows\"]`",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Target"
- }
- }
- }
- },
- "CapabilityRemote": {
- "description": "Configuration for remote URLs that are associated with the capability.",
- "type": "object",
- "required": [
- "urls"
- ],
- "properties": {
- "urls": {
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n## Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "PermissionEntry": {
- "description": "An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`] or an object that references a permission and extends its scope.",
- "anyOf": [
- {
- "description": "Reference a permission or permission set by identifier.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- {
- "description": "Reference a permission or permission set by identifier and extends its scope.",
- "type": "object",
- "allOf": [
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- "allow": {
- "description": "Data that defines what is allowed by the scope.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- "deny": {
- "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- }
- }
- }
- ],
- "required": [
- "identifier"
- ]
- }
- ]
- },
- "Identifier": {
- "description": "Permission identifier",
- "oneOf": [
- {
- "description": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`",
- "type": "string",
- "const": "autostart:default",
- "markdownDescription": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`"
- },
- {
- "description": "Enables the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-disable",
- "markdownDescription": "Enables the disable command without any pre-configured scope."
- },
- {
- "description": "Enables the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-enable",
- "markdownDescription": "Enables the enable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-disable",
- "markdownDescription": "Denies the disable command without any pre-configured scope."
- },
- {
- "description": "Denies the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-enable",
- "markdownDescription": "Denies the enable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
- "type": "string",
- "const": "core:default",
- "markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`",
- "type": "string",
- "const": "core:app:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`"
- },
- {
- "description": "Enables the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-hide",
- "markdownDescription": "Enables the app_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-show",
- "markdownDescription": "Enables the app_show command without any pre-configured scope."
- },
- {
- "description": "Enables the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-bundle-type",
- "markdownDescription": "Enables the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Enables the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-default-window-icon",
- "markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-fetch-data-store-identifiers",
- "markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Enables the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-identifier",
- "markdownDescription": "Enables the identifier command without any pre-configured scope."
- },
- {
- "description": "Enables the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-name",
- "markdownDescription": "Enables the name command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-data-store",
- "markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-listener",
- "markdownDescription": "Enables the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-app-theme",
- "markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-dock-visibility",
- "markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Enables the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-tauri-version",
- "markdownDescription": "Enables the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Enables the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-version",
- "markdownDescription": "Enables the version command without any pre-configured scope."
- },
- {
- "description": "Denies the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-hide",
- "markdownDescription": "Denies the app_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-show",
- "markdownDescription": "Denies the app_show command without any pre-configured scope."
- },
- {
- "description": "Denies the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-bundle-type",
- "markdownDescription": "Denies the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Denies the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-default-window-icon",
- "markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-fetch-data-store-identifiers",
- "markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Denies the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-identifier",
- "markdownDescription": "Denies the identifier command without any pre-configured scope."
- },
- {
- "description": "Denies the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-name",
- "markdownDescription": "Denies the name command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-data-store",
- "markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-listener",
- "markdownDescription": "Denies the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-app-theme",
- "markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-dock-visibility",
- "markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Denies the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-tauri-version",
- "markdownDescription": "Denies the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Denies the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-version",
- "markdownDescription": "Denies the version command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
- "type": "string",
- "const": "core:event:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
- },
- {
- "description": "Enables the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit",
- "markdownDescription": "Enables the emit command without any pre-configured scope."
- },
- {
- "description": "Enables the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit-to",
- "markdownDescription": "Enables the emit_to command without any pre-configured scope."
- },
- {
- "description": "Enables the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-listen",
- "markdownDescription": "Enables the listen command without any pre-configured scope."
- },
- {
- "description": "Enables the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-unlisten",
- "markdownDescription": "Enables the unlisten command without any pre-configured scope."
- },
- {
- "description": "Denies the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit",
- "markdownDescription": "Denies the emit command without any pre-configured scope."
- },
- {
- "description": "Denies the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit-to",
- "markdownDescription": "Denies the emit_to command without any pre-configured scope."
- },
- {
- "description": "Denies the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-listen",
- "markdownDescription": "Denies the listen command without any pre-configured scope."
- },
- {
- "description": "Denies the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-unlisten",
- "markdownDescription": "Denies the unlisten command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
- "type": "string",
- "const": "core:image:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
- },
- {
- "description": "Enables the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-bytes",
- "markdownDescription": "Enables the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Enables the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-path",
- "markdownDescription": "Enables the from_path command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-rgba",
- "markdownDescription": "Enables the rgba command without any pre-configured scope."
- },
- {
- "description": "Enables the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-size",
- "markdownDescription": "Enables the size command without any pre-configured scope."
- },
- {
- "description": "Denies the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-bytes",
- "markdownDescription": "Denies the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Denies the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-path",
- "markdownDescription": "Denies the from_path command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-rgba",
- "markdownDescription": "Denies the rgba command without any pre-configured scope."
- },
- {
- "description": "Denies the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-size",
- "markdownDescription": "Denies the size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
- "type": "string",
- "const": "core:menu:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
- },
- {
- "description": "Enables the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-append",
- "markdownDescription": "Enables the append command without any pre-configured scope."
- },
- {
- "description": "Enables the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-create-default",
- "markdownDescription": "Enables the create_default command without any pre-configured scope."
- },
- {
- "description": "Enables the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-get",
- "markdownDescription": "Enables the get command without any pre-configured scope."
- },
- {
- "description": "Enables the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-insert",
- "markdownDescription": "Enables the insert command without any pre-configured scope."
- },
- {
- "description": "Enables the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-checked",
- "markdownDescription": "Enables the is_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-items",
- "markdownDescription": "Enables the items command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-popup",
- "markdownDescription": "Enables the popup command without any pre-configured scope."
- },
- {
- "description": "Enables the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-prepend",
- "markdownDescription": "Enables the prepend command without any pre-configured scope."
- },
- {
- "description": "Enables the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove",
- "markdownDescription": "Enables the remove command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove-at",
- "markdownDescription": "Enables the remove_at command without any pre-configured scope."
- },
- {
- "description": "Enables the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-accelerator",
- "markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-app-menu",
- "markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-help-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-window-menu",
- "markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-checked",
- "markdownDescription": "Enables the set_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-text",
- "markdownDescription": "Enables the set_text command without any pre-configured scope."
- },
- {
- "description": "Enables the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-text",
- "markdownDescription": "Enables the text command without any pre-configured scope."
- },
- {
- "description": "Denies the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-append",
- "markdownDescription": "Denies the append command without any pre-configured scope."
- },
- {
- "description": "Denies the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-create-default",
- "markdownDescription": "Denies the create_default command without any pre-configured scope."
- },
- {
- "description": "Denies the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-get",
- "markdownDescription": "Denies the get command without any pre-configured scope."
- },
- {
- "description": "Denies the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-insert",
- "markdownDescription": "Denies the insert command without any pre-configured scope."
- },
- {
- "description": "Denies the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-checked",
- "markdownDescription": "Denies the is_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-items",
- "markdownDescription": "Denies the items command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-popup",
- "markdownDescription": "Denies the popup command without any pre-configured scope."
- },
- {
- "description": "Denies the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-prepend",
- "markdownDescription": "Denies the prepend command without any pre-configured scope."
- },
- {
- "description": "Denies the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove",
- "markdownDescription": "Denies the remove command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove-at",
- "markdownDescription": "Denies the remove_at command without any pre-configured scope."
- },
- {
- "description": "Denies the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-accelerator",
- "markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-app-menu",
- "markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-help-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-window-menu",
- "markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-checked",
- "markdownDescription": "Denies the set_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-text",
- "markdownDescription": "Denies the set_text command without any pre-configured scope."
- },
- {
- "description": "Denies the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-text",
- "markdownDescription": "Denies the text command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
- "type": "string",
- "const": "core:path:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
- },
- {
- "description": "Enables the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-basename",
- "markdownDescription": "Enables the basename command without any pre-configured scope."
- },
- {
- "description": "Enables the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-dirname",
- "markdownDescription": "Enables the dirname command without any pre-configured scope."
- },
- {
- "description": "Enables the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-extname",
- "markdownDescription": "Enables the extname command without any pre-configured scope."
- },
- {
- "description": "Enables the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-is-absolute",
- "markdownDescription": "Enables the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Enables the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-join",
- "markdownDescription": "Enables the join command without any pre-configured scope."
- },
- {
- "description": "Enables the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-normalize",
- "markdownDescription": "Enables the normalize command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve",
- "markdownDescription": "Enables the resolve command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve-directory",
- "markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Denies the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-basename",
- "markdownDescription": "Denies the basename command without any pre-configured scope."
- },
- {
- "description": "Denies the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-dirname",
- "markdownDescription": "Denies the dirname command without any pre-configured scope."
- },
- {
- "description": "Denies the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-extname",
- "markdownDescription": "Denies the extname command without any pre-configured scope."
- },
- {
- "description": "Denies the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-is-absolute",
- "markdownDescription": "Denies the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Denies the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-join",
- "markdownDescription": "Denies the join command without any pre-configured scope."
- },
- {
- "description": "Denies the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-normalize",
- "markdownDescription": "Denies the normalize command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve",
- "markdownDescription": "Denies the resolve command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve-directory",
- "markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
- "type": "string",
- "const": "core:resources:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
- "type": "string",
- "const": "core:tray:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
- },
- {
- "description": "Enables the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-get-by-id",
- "markdownDescription": "Enables the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-remove-by-id",
- "markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon-as-template",
- "markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Enables the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-menu",
- "markdownDescription": "Enables the set_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-show-menu-on-left-click",
- "markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Enables the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-temp-dir-path",
- "markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-tooltip",
- "markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-visible",
- "markdownDescription": "Enables the set_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-get-by-id",
- "markdownDescription": "Denies the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-remove-by-id",
- "markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon-as-template",
- "markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Denies the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-menu",
- "markdownDescription": "Denies the set_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-show-menu-on-left-click",
- "markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Denies the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-temp-dir-path",
- "markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-tooltip",
- "markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-visible",
- "markdownDescription": "Denies the set_visible command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
- "type": "string",
- "const": "core:webview:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
- },
- {
- "description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-clear-all-browsing-data",
- "markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview",
- "markdownDescription": "Enables the create_webview command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview-window",
- "markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-get-all-webviews",
- "markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-internal-toggle-devtools",
- "markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Enables the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-print",
- "markdownDescription": "Enables the print command without any pre-configured scope."
- },
- {
- "description": "Enables the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-reparent",
- "markdownDescription": "Enables the reparent command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-auto-resize",
- "markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-background-color",
- "markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-focus",
- "markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-position",
- "markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-size",
- "markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-zoom",
- "markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-close",
- "markdownDescription": "Enables the webview_close command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-hide",
- "markdownDescription": "Enables the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-position",
- "markdownDescription": "Enables the webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-show",
- "markdownDescription": "Enables the webview_show command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-size",
- "markdownDescription": "Enables the webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-clear-all-browsing-data",
- "markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview",
- "markdownDescription": "Denies the create_webview command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview-window",
- "markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-get-all-webviews",
- "markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-internal-toggle-devtools",
- "markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Denies the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-print",
- "markdownDescription": "Denies the print command without any pre-configured scope."
- },
- {
- "description": "Denies the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-reparent",
- "markdownDescription": "Denies the reparent command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-auto-resize",
- "markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-background-color",
- "markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-focus",
- "markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-position",
- "markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-size",
- "markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-zoom",
- "markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-close",
- "markdownDescription": "Denies the webview_close command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-hide",
- "markdownDescription": "Denies the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-position",
- "markdownDescription": "Denies the webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-show",
- "markdownDescription": "Denies the webview_show command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-size",
- "markdownDescription": "Denies the webview_size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
- "type": "string",
- "const": "core:window:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
- },
- {
- "description": "Enables the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-available-monitors",
- "markdownDescription": "Enables the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Enables the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-center",
- "markdownDescription": "Enables the center command without any pre-configured scope."
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Enables the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-create",
- "markdownDescription": "Enables the create command without any pre-configured scope."
- },
- {
- "description": "Enables the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-current-monitor",
- "markdownDescription": "Enables the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-cursor-position",
- "markdownDescription": "Enables the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-destroy",
- "markdownDescription": "Enables the destroy command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-get-all-windows",
- "markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Enables the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-hide",
- "markdownDescription": "Enables the hide command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-position",
- "markdownDescription": "Enables the inner_position command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-size",
- "markdownDescription": "Enables the inner_size command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-internal-toggle-maximize",
- "markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-always-on-top",
- "markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-closable",
- "markdownDescription": "Enables the is_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-decorated",
- "markdownDescription": "Enables the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-focused",
- "markdownDescription": "Enables the is_focused command without any pre-configured scope."
- },
- {
- "description": "Enables the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-fullscreen",
- "markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximizable",
- "markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximized",
- "markdownDescription": "Enables the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimizable",
- "markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimized",
- "markdownDescription": "Enables the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-resizable",
- "markdownDescription": "Enables the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-visible",
- "markdownDescription": "Enables the is_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-maximize",
- "markdownDescription": "Enables the maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-minimize",
- "markdownDescription": "Enables the minimize command without any pre-configured scope."
- },
- {
- "description": "Enables the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-monitor-from-point",
- "markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-position",
- "markdownDescription": "Enables the outer_position command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-size",
- "markdownDescription": "Enables the outer_size command without any pre-configured scope."
- },
- {
- "description": "Enables the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-primary-monitor",
- "markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-request-user-attention",
- "markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Enables the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-scale-factor",
- "markdownDescription": "Enables the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-bottom",
- "markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-top",
- "markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-background-color",
- "markdownDescription": "Enables the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-count",
- "markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-label",
- "markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Enables the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-closable",
- "markdownDescription": "Enables the set_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-content-protected",
- "markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-grab",
- "markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-icon",
- "markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-position",
- "markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-visible",
- "markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-decorations",
- "markdownDescription": "Enables the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Enables the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-effects",
- "markdownDescription": "Enables the set_effects command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focus",
- "markdownDescription": "Enables the set_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focusable",
- "markdownDescription": "Enables the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-fullscreen",
- "markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-ignore-cursor-events",
- "markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Enables the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-max-size",
- "markdownDescription": "Enables the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-maximizable",
- "markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-min-size",
- "markdownDescription": "Enables the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-minimizable",
- "markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-overlay-icon",
- "markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-position",
- "markdownDescription": "Enables the set_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-progress-bar",
- "markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-resizable",
- "markdownDescription": "Enables the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-shadow",
- "markdownDescription": "Enables the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-simple-fullscreen",
- "markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size",
- "markdownDescription": "Enables the set_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size-constraints",
- "markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Enables the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-skip-taskbar",
- "markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-theme",
- "markdownDescription": "Enables the set_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title-bar-style",
- "markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-visible-on-all-workspaces",
- "markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Enables the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-dragging",
- "markdownDescription": "Enables the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-resize-dragging",
- "markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-theme",
- "markdownDescription": "Enables the theme command without any pre-configured scope."
- },
- {
- "description": "Enables the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-title",
- "markdownDescription": "Enables the title command without any pre-configured scope."
- },
- {
- "description": "Enables the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-toggle-maximize",
- "markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unmaximize",
- "markdownDescription": "Enables the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unminimize",
- "markdownDescription": "Enables the unminimize command without any pre-configured scope."
- },
- {
- "description": "Denies the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-available-monitors",
- "markdownDescription": "Denies the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Denies the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-center",
- "markdownDescription": "Denies the center command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Denies the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-create",
- "markdownDescription": "Denies the create command without any pre-configured scope."
- },
- {
- "description": "Denies the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-current-monitor",
- "markdownDescription": "Denies the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-cursor-position",
- "markdownDescription": "Denies the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-destroy",
- "markdownDescription": "Denies the destroy command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-get-all-windows",
- "markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Denies the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-hide",
- "markdownDescription": "Denies the hide command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-position",
- "markdownDescription": "Denies the inner_position command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-size",
- "markdownDescription": "Denies the inner_size command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-internal-toggle-maximize",
- "markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-always-on-top",
- "markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-closable",
- "markdownDescription": "Denies the is_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-decorated",
- "markdownDescription": "Denies the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-focused",
- "markdownDescription": "Denies the is_focused command without any pre-configured scope."
- },
- {
- "description": "Denies the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-fullscreen",
- "markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximizable",
- "markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximized",
- "markdownDescription": "Denies the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimizable",
- "markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimized",
- "markdownDescription": "Denies the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-resizable",
- "markdownDescription": "Denies the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-visible",
- "markdownDescription": "Denies the is_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-maximize",
- "markdownDescription": "Denies the maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-minimize",
- "markdownDescription": "Denies the minimize command without any pre-configured scope."
- },
- {
- "description": "Denies the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-monitor-from-point",
- "markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-position",
- "markdownDescription": "Denies the outer_position command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-size",
- "markdownDescription": "Denies the outer_size command without any pre-configured scope."
- },
- {
- "description": "Denies the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-primary-monitor",
- "markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-request-user-attention",
- "markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Denies the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-scale-factor",
- "markdownDescription": "Denies the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-bottom",
- "markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-top",
- "markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-background-color",
- "markdownDescription": "Denies the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-count",
- "markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-label",
- "markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Denies the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-closable",
- "markdownDescription": "Denies the set_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-content-protected",
- "markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-grab",
- "markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-icon",
- "markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-position",
- "markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-visible",
- "markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-decorations",
- "markdownDescription": "Denies the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Denies the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-effects",
- "markdownDescription": "Denies the set_effects command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focus",
- "markdownDescription": "Denies the set_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focusable",
- "markdownDescription": "Denies the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-fullscreen",
- "markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-ignore-cursor-events",
- "markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Denies the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-max-size",
- "markdownDescription": "Denies the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-maximizable",
- "markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-min-size",
- "markdownDescription": "Denies the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-minimizable",
- "markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-overlay-icon",
- "markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-position",
- "markdownDescription": "Denies the set_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-progress-bar",
- "markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-resizable",
- "markdownDescription": "Denies the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-shadow",
- "markdownDescription": "Denies the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-simple-fullscreen",
- "markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size",
- "markdownDescription": "Denies the set_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size-constraints",
- "markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Denies the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-skip-taskbar",
- "markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-theme",
- "markdownDescription": "Denies the set_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title-bar-style",
- "markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-visible-on-all-workspaces",
- "markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "Denies the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-dragging",
- "markdownDescription": "Denies the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-resize-dragging",
- "markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-theme",
- "markdownDescription": "Denies the theme command without any pre-configured scope."
- },
- {
- "description": "Denies the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-title",
- "markdownDescription": "Denies the title command without any pre-configured scope."
- },
- {
- "description": "Denies the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-toggle-maximize",
- "markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unmaximize",
- "markdownDescription": "Denies the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unminimize",
- "markdownDescription": "Denies the unminimize command without any pre-configured scope."
- },
- {
- "description": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`",
- "type": "string",
- "const": "dialog:default",
- "markdownDescription": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`"
- },
- {
- "description": "Enables the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-ask",
- "markdownDescription": "Enables the ask command without any pre-configured scope."
- },
- {
- "description": "Enables the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-confirm",
- "markdownDescription": "Enables the confirm command without any pre-configured scope."
- },
- {
- "description": "Enables the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-message",
- "markdownDescription": "Enables the message command without any pre-configured scope."
- },
- {
- "description": "Enables the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-open",
- "markdownDescription": "Enables the open command without any pre-configured scope."
- },
- {
- "description": "Enables the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-save",
- "markdownDescription": "Enables the save command without any pre-configured scope."
- },
- {
- "description": "Denies the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-ask",
- "markdownDescription": "Denies the ask command without any pre-configured scope."
- },
- {
- "description": "Denies the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-confirm",
- "markdownDescription": "Denies the confirm command without any pre-configured scope."
- },
- {
- "description": "Denies the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-message",
- "markdownDescription": "Denies the message command without any pre-configured scope."
- },
- {
- "description": "Denies the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-open",
- "markdownDescription": "Denies the open command without any pre-configured scope."
- },
- {
- "description": "Denies the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-save",
- "markdownDescription": "Denies the save command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
- "type": "string",
- "const": "notification:default",
- "markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
- },
- {
- "description": "Enables the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-batch",
- "markdownDescription": "Enables the batch command without any pre-configured scope."
- },
- {
- "description": "Enables the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-cancel",
- "markdownDescription": "Enables the cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-check-permissions",
- "markdownDescription": "Enables the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Enables the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-create-channel",
- "markdownDescription": "Enables the create_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-delete-channel",
- "markdownDescription": "Enables the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-active",
- "markdownDescription": "Enables the get_active command without any pre-configured scope."
- },
- {
- "description": "Enables the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-pending",
- "markdownDescription": "Enables the get_pending command without any pre-configured scope."
- },
- {
- "description": "Enables the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-is-permission-granted",
- "markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Enables the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-list-channels",
- "markdownDescription": "Enables the list_channels command without any pre-configured scope."
- },
- {
- "description": "Enables the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-notify",
- "markdownDescription": "Enables the notify command without any pre-configured scope."
- },
- {
- "description": "Enables the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-permission-state",
- "markdownDescription": "Enables the permission_state command without any pre-configured scope."
- },
- {
- "description": "Enables the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-action-types",
- "markdownDescription": "Enables the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-remove-active",
- "markdownDescription": "Enables the remove_active command without any pre-configured scope."
- },
- {
- "description": "Enables the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-request-permission",
- "markdownDescription": "Enables the request_permission command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Denies the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-batch",
- "markdownDescription": "Denies the batch command without any pre-configured scope."
- },
- {
- "description": "Denies the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-cancel",
- "markdownDescription": "Denies the cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-check-permissions",
- "markdownDescription": "Denies the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Denies the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-create-channel",
- "markdownDescription": "Denies the create_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-delete-channel",
- "markdownDescription": "Denies the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-active",
- "markdownDescription": "Denies the get_active command without any pre-configured scope."
- },
- {
- "description": "Denies the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-pending",
- "markdownDescription": "Denies the get_pending command without any pre-configured scope."
- },
- {
- "description": "Denies the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-is-permission-granted",
- "markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Denies the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-list-channels",
- "markdownDescription": "Denies the list_channels command without any pre-configured scope."
- },
- {
- "description": "Denies the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-notify",
- "markdownDescription": "Denies the notify command without any pre-configured scope."
- },
- {
- "description": "Denies the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-permission-state",
- "markdownDescription": "Denies the permission_state command without any pre-configured scope."
- },
- {
- "description": "Denies the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-action-types",
- "markdownDescription": "Denies the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-remove-active",
- "markdownDescription": "Denies the remove_active command without any pre-configured scope."
- },
- {
- "description": "Denies the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-request-permission",
- "markdownDescription": "Denies the request_permission command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
- "type": "string",
- "const": "process:default",
- "markdownDescription": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
- },
- {
- "description": "Enables the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-exit",
- "markdownDescription": "Enables the exit command without any pre-configured scope."
- },
- {
- "description": "Enables the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-restart",
- "markdownDescription": "Enables the restart command without any pre-configured scope."
- },
- {
- "description": "Denies the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-exit",
- "markdownDescription": "Denies the exit command without any pre-configured scope."
- },
- {
- "description": "Denies the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-restart",
- "markdownDescription": "Denies the restart command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`",
- "type": "string",
- "const": "updater:default",
- "markdownDescription": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`"
- },
- {
- "description": "Enables the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-check",
- "markdownDescription": "Enables the check command without any pre-configured scope."
- },
- {
- "description": "Enables the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download",
- "markdownDescription": "Enables the download command without any pre-configured scope."
- },
- {
- "description": "Enables the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download-and-install",
- "markdownDescription": "Enables the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Enables the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-install",
- "markdownDescription": "Enables the install command without any pre-configured scope."
- },
- {
- "description": "Denies the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-check",
- "markdownDescription": "Denies the check command without any pre-configured scope."
- },
- {
- "description": "Denies the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download",
- "markdownDescription": "Denies the download command without any pre-configured scope."
- },
- {
- "description": "Denies the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download-and-install",
- "markdownDescription": "Denies the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Denies the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-install",
- "markdownDescription": "Denies the install command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`",
- "type": "string",
- "const": "window-state:default",
- "markdownDescription": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`"
- },
- {
- "description": "Enables the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-filename",
- "markdownDescription": "Enables the filename command without any pre-configured scope."
- },
- {
- "description": "Enables the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-restore-state",
- "markdownDescription": "Enables the restore_state command without any pre-configured scope."
- },
- {
- "description": "Enables the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-save-window-state",
- "markdownDescription": "Enables the save_window_state command without any pre-configured scope."
- },
- {
- "description": "Denies the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-filename",
- "markdownDescription": "Denies the filename command without any pre-configured scope."
- },
- {
- "description": "Denies the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-restore-state",
- "markdownDescription": "Denies the restore_state command without any pre-configured scope."
- },
- {
- "description": "Denies the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-save-window-state",
- "markdownDescription": "Denies the save_window_state command without any pre-configured scope."
- }
- ]
- },
- "Value": {
- "description": "All supported ACL values.",
- "anyOf": [
- {
- "description": "Represents a null JSON value.",
- "type": "null"
- },
- {
- "description": "Represents a [`bool`].",
- "type": "boolean"
- },
- {
- "description": "Represents a valid ACL [`Number`].",
- "allOf": [
- {
- "$ref": "#/definitions/Number"
- }
- ]
- },
- {
- "description": "Represents a [`String`].",
- "type": "string"
- },
- {
- "description": "Represents a list of other [`Value`]s.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- {
- "description": "Represents a map of [`String`] keys to [`Value`]s.",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/Value"
- }
- }
- ]
- },
- "Number": {
- "description": "A valid ACL number.",
- "anyOf": [
- {
- "description": "Represents an [`i64`].",
- "type": "integer",
- "format": "int64"
- },
- {
- "description": "Represents a [`f64`].",
- "type": "number",
- "format": "double"
- }
- ]
- },
- "Target": {
- "description": "Platform target.",
- "oneOf": [
- {
- "description": "MacOS.",
- "type": "string",
- "enum": [
- "macOS"
- ]
- },
- {
- "description": "Windows.",
- "type": "string",
- "enum": [
- "windows"
- ]
- },
- {
- "description": "Linux.",
- "type": "string",
- "enum": [
- "linux"
- ]
- },
- {
- "description": "Android.",
- "type": "string",
- "enum": [
- "android"
- ]
- },
- {
- "description": "iOS.",
- "type": "string",
- "enum": [
- "iOS"
- ]
- }
- ]
- },
- "Application": {
- "description": "Opener scope application.",
- "anyOf": [
- {
- "description": "Open in default application.",
- "type": "null"
- },
- {
- "description": "If true, allow open with any application.",
- "type": "boolean"
- },
- {
- "description": "Allow specific application to open with.",
- "type": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/linux-schema.json b/src-tauri/gen/schemas/linux-schema.json
deleted file mode 100644
index dea2186..0000000
--- a/src-tauri/gen/schemas/linux-schema.json
+++ /dev/null
@@ -1,3113 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "CapabilityFile",
- "description": "Capability formats accepted in a capability file.",
- "anyOf": [
- {
- "description": "A single capability.",
- "allOf": [
- {
- "$ref": "#/definitions/Capability"
- }
- ]
- },
- {
- "description": "A list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- },
- {
- "description": "A list of capabilities.",
- "type": "object",
- "required": [
- "capabilities"
- ],
- "properties": {
- "capabilities": {
- "description": "The list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- }
- ],
- "definitions": {
- "Capability": {
- "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
- "type": "object",
- "required": [
- "identifier",
- "permissions"
- ],
- "properties": {
- "identifier": {
- "description": "Identifier of the capability.\n\n## Example\n\n`main-user-files-write`",
- "type": "string"
- },
- "description": {
- "description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
- "default": "",
- "type": "string"
- },
- "remote": {
- "description": "Configure remote URLs that can use the capability permissions.\n\nThis setting is optional and defaults to not being set, as our default use case is that the content is served from our local application.\n\n:::caution Make sure you understand the security implications of providing remote sources with local system access. :::\n\n## Example\n\n```json { \"urls\": [\"https://*.mydomain.dev\"] } ```",
- "anyOf": [
- {
- "$ref": "#/definitions/CapabilityRemote"
- },
- {
- "type": "null"
- }
- ]
- },
- "local": {
- "description": "Whether this capability is enabled for local app URLs or not. Defaults to `true`.",
- "default": true,
- "type": "boolean"
- },
- "windows": {
- "description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "webviews": {
- "description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "permissions": {
- "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
- "type": "array",
- "items": {
- "$ref": "#/definitions/PermissionEntry"
- },
- "uniqueItems": true
- },
- "platforms": {
- "description": "Limit which target platforms this capability applies to.\n\nBy default all platforms are targeted.\n\n## Example\n\n`[\"macOS\",\"windows\"]`",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Target"
- }
- }
- }
- },
- "CapabilityRemote": {
- "description": "Configuration for remote URLs that are associated with the capability.",
- "type": "object",
- "required": [
- "urls"
- ],
- "properties": {
- "urls": {
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n## Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "PermissionEntry": {
- "description": "An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`] or an object that references a permission and extends its scope.",
- "anyOf": [
- {
- "description": "Reference a permission or permission set by identifier.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- {
- "description": "Reference a permission or permission set by identifier and extends its scope.",
- "type": "object",
- "allOf": [
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- "allow": {
- "description": "Data that defines what is allowed by the scope.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- "deny": {
- "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- }
- }
- }
- ],
- "required": [
- "identifier"
- ]
- }
- ]
- },
- "Identifier": {
- "description": "Permission identifier",
- "oneOf": [
- {
- "description": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`",
- "type": "string",
- "const": "autostart:default",
- "markdownDescription": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`"
- },
- {
- "description": "Enables the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-disable",
- "markdownDescription": "Enables the disable command without any pre-configured scope."
- },
- {
- "description": "Enables the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-enable",
- "markdownDescription": "Enables the enable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-disable",
- "markdownDescription": "Denies the disable command without any pre-configured scope."
- },
- {
- "description": "Denies the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-enable",
- "markdownDescription": "Denies the enable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
- "type": "string",
- "const": "core:default",
- "markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`",
- "type": "string",
- "const": "core:app:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`"
- },
- {
- "description": "Enables the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-hide",
- "markdownDescription": "Enables the app_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-show",
- "markdownDescription": "Enables the app_show command without any pre-configured scope."
- },
- {
- "description": "Enables the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-bundle-type",
- "markdownDescription": "Enables the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Enables the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-default-window-icon",
- "markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-fetch-data-store-identifiers",
- "markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Enables the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-identifier",
- "markdownDescription": "Enables the identifier command without any pre-configured scope."
- },
- {
- "description": "Enables the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-name",
- "markdownDescription": "Enables the name command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-data-store",
- "markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-listener",
- "markdownDescription": "Enables the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-app-theme",
- "markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-dock-visibility",
- "markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Enables the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-tauri-version",
- "markdownDescription": "Enables the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Enables the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-version",
- "markdownDescription": "Enables the version command without any pre-configured scope."
- },
- {
- "description": "Denies the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-hide",
- "markdownDescription": "Denies the app_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-show",
- "markdownDescription": "Denies the app_show command without any pre-configured scope."
- },
- {
- "description": "Denies the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-bundle-type",
- "markdownDescription": "Denies the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Denies the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-default-window-icon",
- "markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-fetch-data-store-identifiers",
- "markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Denies the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-identifier",
- "markdownDescription": "Denies the identifier command without any pre-configured scope."
- },
- {
- "description": "Denies the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-name",
- "markdownDescription": "Denies the name command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-data-store",
- "markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-listener",
- "markdownDescription": "Denies the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-app-theme",
- "markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-dock-visibility",
- "markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Denies the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-tauri-version",
- "markdownDescription": "Denies the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Denies the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-version",
- "markdownDescription": "Denies the version command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
- "type": "string",
- "const": "core:event:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
- },
- {
- "description": "Enables the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit",
- "markdownDescription": "Enables the emit command without any pre-configured scope."
- },
- {
- "description": "Enables the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit-to",
- "markdownDescription": "Enables the emit_to command without any pre-configured scope."
- },
- {
- "description": "Enables the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-listen",
- "markdownDescription": "Enables the listen command without any pre-configured scope."
- },
- {
- "description": "Enables the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-unlisten",
- "markdownDescription": "Enables the unlisten command without any pre-configured scope."
- },
- {
- "description": "Denies the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit",
- "markdownDescription": "Denies the emit command without any pre-configured scope."
- },
- {
- "description": "Denies the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit-to",
- "markdownDescription": "Denies the emit_to command without any pre-configured scope."
- },
- {
- "description": "Denies the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-listen",
- "markdownDescription": "Denies the listen command without any pre-configured scope."
- },
- {
- "description": "Denies the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-unlisten",
- "markdownDescription": "Denies the unlisten command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
- "type": "string",
- "const": "core:image:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
- },
- {
- "description": "Enables the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-bytes",
- "markdownDescription": "Enables the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Enables the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-path",
- "markdownDescription": "Enables the from_path command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-rgba",
- "markdownDescription": "Enables the rgba command without any pre-configured scope."
- },
- {
- "description": "Enables the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-size",
- "markdownDescription": "Enables the size command without any pre-configured scope."
- },
- {
- "description": "Denies the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-bytes",
- "markdownDescription": "Denies the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Denies the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-path",
- "markdownDescription": "Denies the from_path command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-rgba",
- "markdownDescription": "Denies the rgba command without any pre-configured scope."
- },
- {
- "description": "Denies the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-size",
- "markdownDescription": "Denies the size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
- "type": "string",
- "const": "core:menu:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
- },
- {
- "description": "Enables the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-append",
- "markdownDescription": "Enables the append command without any pre-configured scope."
- },
- {
- "description": "Enables the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-create-default",
- "markdownDescription": "Enables the create_default command without any pre-configured scope."
- },
- {
- "description": "Enables the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-get",
- "markdownDescription": "Enables the get command without any pre-configured scope."
- },
- {
- "description": "Enables the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-insert",
- "markdownDescription": "Enables the insert command without any pre-configured scope."
- },
- {
- "description": "Enables the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-checked",
- "markdownDescription": "Enables the is_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-items",
- "markdownDescription": "Enables the items command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-popup",
- "markdownDescription": "Enables the popup command without any pre-configured scope."
- },
- {
- "description": "Enables the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-prepend",
- "markdownDescription": "Enables the prepend command without any pre-configured scope."
- },
- {
- "description": "Enables the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove",
- "markdownDescription": "Enables the remove command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove-at",
- "markdownDescription": "Enables the remove_at command without any pre-configured scope."
- },
- {
- "description": "Enables the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-accelerator",
- "markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-app-menu",
- "markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-help-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-window-menu",
- "markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-checked",
- "markdownDescription": "Enables the set_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-text",
- "markdownDescription": "Enables the set_text command without any pre-configured scope."
- },
- {
- "description": "Enables the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-text",
- "markdownDescription": "Enables the text command without any pre-configured scope."
- },
- {
- "description": "Denies the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-append",
- "markdownDescription": "Denies the append command without any pre-configured scope."
- },
- {
- "description": "Denies the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-create-default",
- "markdownDescription": "Denies the create_default command without any pre-configured scope."
- },
- {
- "description": "Denies the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-get",
- "markdownDescription": "Denies the get command without any pre-configured scope."
- },
- {
- "description": "Denies the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-insert",
- "markdownDescription": "Denies the insert command without any pre-configured scope."
- },
- {
- "description": "Denies the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-checked",
- "markdownDescription": "Denies the is_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-items",
- "markdownDescription": "Denies the items command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-popup",
- "markdownDescription": "Denies the popup command without any pre-configured scope."
- },
- {
- "description": "Denies the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-prepend",
- "markdownDescription": "Denies the prepend command without any pre-configured scope."
- },
- {
- "description": "Denies the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove",
- "markdownDescription": "Denies the remove command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove-at",
- "markdownDescription": "Denies the remove_at command without any pre-configured scope."
- },
- {
- "description": "Denies the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-accelerator",
- "markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-app-menu",
- "markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-help-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-window-menu",
- "markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-checked",
- "markdownDescription": "Denies the set_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-text",
- "markdownDescription": "Denies the set_text command without any pre-configured scope."
- },
- {
- "description": "Denies the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-text",
- "markdownDescription": "Denies the text command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
- "type": "string",
- "const": "core:path:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
- },
- {
- "description": "Enables the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-basename",
- "markdownDescription": "Enables the basename command without any pre-configured scope."
- },
- {
- "description": "Enables the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-dirname",
- "markdownDescription": "Enables the dirname command without any pre-configured scope."
- },
- {
- "description": "Enables the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-extname",
- "markdownDescription": "Enables the extname command without any pre-configured scope."
- },
- {
- "description": "Enables the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-is-absolute",
- "markdownDescription": "Enables the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Enables the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-join",
- "markdownDescription": "Enables the join command without any pre-configured scope."
- },
- {
- "description": "Enables the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-normalize",
- "markdownDescription": "Enables the normalize command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve",
- "markdownDescription": "Enables the resolve command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve-directory",
- "markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Denies the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-basename",
- "markdownDescription": "Denies the basename command without any pre-configured scope."
- },
- {
- "description": "Denies the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-dirname",
- "markdownDescription": "Denies the dirname command without any pre-configured scope."
- },
- {
- "description": "Denies the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-extname",
- "markdownDescription": "Denies the extname command without any pre-configured scope."
- },
- {
- "description": "Denies the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-is-absolute",
- "markdownDescription": "Denies the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Denies the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-join",
- "markdownDescription": "Denies the join command without any pre-configured scope."
- },
- {
- "description": "Denies the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-normalize",
- "markdownDescription": "Denies the normalize command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve",
- "markdownDescription": "Denies the resolve command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve-directory",
- "markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
- "type": "string",
- "const": "core:resources:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
- "type": "string",
- "const": "core:tray:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
- },
- {
- "description": "Enables the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-get-by-id",
- "markdownDescription": "Enables the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-remove-by-id",
- "markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon-as-template",
- "markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Enables the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-menu",
- "markdownDescription": "Enables the set_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-show-menu-on-left-click",
- "markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Enables the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-temp-dir-path",
- "markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-tooltip",
- "markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-visible",
- "markdownDescription": "Enables the set_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-get-by-id",
- "markdownDescription": "Denies the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-remove-by-id",
- "markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon-as-template",
- "markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Denies the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-menu",
- "markdownDescription": "Denies the set_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-show-menu-on-left-click",
- "markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Denies the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-temp-dir-path",
- "markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-tooltip",
- "markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-visible",
- "markdownDescription": "Denies the set_visible command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
- "type": "string",
- "const": "core:webview:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
- },
- {
- "description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-clear-all-browsing-data",
- "markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview",
- "markdownDescription": "Enables the create_webview command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview-window",
- "markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-get-all-webviews",
- "markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-internal-toggle-devtools",
- "markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Enables the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-print",
- "markdownDescription": "Enables the print command without any pre-configured scope."
- },
- {
- "description": "Enables the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-reparent",
- "markdownDescription": "Enables the reparent command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-auto-resize",
- "markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-background-color",
- "markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-focus",
- "markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-position",
- "markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-size",
- "markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-zoom",
- "markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-close",
- "markdownDescription": "Enables the webview_close command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-hide",
- "markdownDescription": "Enables the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-position",
- "markdownDescription": "Enables the webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-show",
- "markdownDescription": "Enables the webview_show command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-size",
- "markdownDescription": "Enables the webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-clear-all-browsing-data",
- "markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview",
- "markdownDescription": "Denies the create_webview command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview-window",
- "markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-get-all-webviews",
- "markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-internal-toggle-devtools",
- "markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Denies the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-print",
- "markdownDescription": "Denies the print command without any pre-configured scope."
- },
- {
- "description": "Denies the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-reparent",
- "markdownDescription": "Denies the reparent command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-auto-resize",
- "markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-background-color",
- "markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-focus",
- "markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-position",
- "markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-size",
- "markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-zoom",
- "markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-close",
- "markdownDescription": "Denies the webview_close command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-hide",
- "markdownDescription": "Denies the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-position",
- "markdownDescription": "Denies the webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-show",
- "markdownDescription": "Denies the webview_show command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-size",
- "markdownDescription": "Denies the webview_size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
- "type": "string",
- "const": "core:window:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
- },
- {
- "description": "Enables the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-available-monitors",
- "markdownDescription": "Enables the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Enables the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-center",
- "markdownDescription": "Enables the center command without any pre-configured scope."
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Enables the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-create",
- "markdownDescription": "Enables the create command without any pre-configured scope."
- },
- {
- "description": "Enables the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-current-monitor",
- "markdownDescription": "Enables the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-cursor-position",
- "markdownDescription": "Enables the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-destroy",
- "markdownDescription": "Enables the destroy command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-get-all-windows",
- "markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Enables the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-hide",
- "markdownDescription": "Enables the hide command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-position",
- "markdownDescription": "Enables the inner_position command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-size",
- "markdownDescription": "Enables the inner_size command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-internal-toggle-maximize",
- "markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-always-on-top",
- "markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-closable",
- "markdownDescription": "Enables the is_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-decorated",
- "markdownDescription": "Enables the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-focused",
- "markdownDescription": "Enables the is_focused command without any pre-configured scope."
- },
- {
- "description": "Enables the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-fullscreen",
- "markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximizable",
- "markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximized",
- "markdownDescription": "Enables the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimizable",
- "markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimized",
- "markdownDescription": "Enables the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-resizable",
- "markdownDescription": "Enables the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-visible",
- "markdownDescription": "Enables the is_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-maximize",
- "markdownDescription": "Enables the maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-minimize",
- "markdownDescription": "Enables the minimize command without any pre-configured scope."
- },
- {
- "description": "Enables the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-monitor-from-point",
- "markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-position",
- "markdownDescription": "Enables the outer_position command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-size",
- "markdownDescription": "Enables the outer_size command without any pre-configured scope."
- },
- {
- "description": "Enables the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-primary-monitor",
- "markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-request-user-attention",
- "markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Enables the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-scale-factor",
- "markdownDescription": "Enables the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-bottom",
- "markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-top",
- "markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-background-color",
- "markdownDescription": "Enables the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-count",
- "markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-label",
- "markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Enables the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-closable",
- "markdownDescription": "Enables the set_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-content-protected",
- "markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-grab",
- "markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-icon",
- "markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-position",
- "markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-visible",
- "markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-decorations",
- "markdownDescription": "Enables the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Enables the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-effects",
- "markdownDescription": "Enables the set_effects command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focus",
- "markdownDescription": "Enables the set_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focusable",
- "markdownDescription": "Enables the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-fullscreen",
- "markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-ignore-cursor-events",
- "markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Enables the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-max-size",
- "markdownDescription": "Enables the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-maximizable",
- "markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-min-size",
- "markdownDescription": "Enables the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-minimizable",
- "markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-overlay-icon",
- "markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-position",
- "markdownDescription": "Enables the set_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-progress-bar",
- "markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-resizable",
- "markdownDescription": "Enables the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-shadow",
- "markdownDescription": "Enables the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-simple-fullscreen",
- "markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size",
- "markdownDescription": "Enables the set_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size-constraints",
- "markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Enables the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-skip-taskbar",
- "markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-theme",
- "markdownDescription": "Enables the set_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title-bar-style",
- "markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-visible-on-all-workspaces",
- "markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Enables the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-dragging",
- "markdownDescription": "Enables the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-resize-dragging",
- "markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-theme",
- "markdownDescription": "Enables the theme command without any pre-configured scope."
- },
- {
- "description": "Enables the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-title",
- "markdownDescription": "Enables the title command without any pre-configured scope."
- },
- {
- "description": "Enables the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-toggle-maximize",
- "markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unmaximize",
- "markdownDescription": "Enables the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unminimize",
- "markdownDescription": "Enables the unminimize command without any pre-configured scope."
- },
- {
- "description": "Denies the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-available-monitors",
- "markdownDescription": "Denies the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Denies the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-center",
- "markdownDescription": "Denies the center command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Denies the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-create",
- "markdownDescription": "Denies the create command without any pre-configured scope."
- },
- {
- "description": "Denies the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-current-monitor",
- "markdownDescription": "Denies the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-cursor-position",
- "markdownDescription": "Denies the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-destroy",
- "markdownDescription": "Denies the destroy command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-get-all-windows",
- "markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Denies the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-hide",
- "markdownDescription": "Denies the hide command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-position",
- "markdownDescription": "Denies the inner_position command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-size",
- "markdownDescription": "Denies the inner_size command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-internal-toggle-maximize",
- "markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-always-on-top",
- "markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-closable",
- "markdownDescription": "Denies the is_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-decorated",
- "markdownDescription": "Denies the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-focused",
- "markdownDescription": "Denies the is_focused command without any pre-configured scope."
- },
- {
- "description": "Denies the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-fullscreen",
- "markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximizable",
- "markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximized",
- "markdownDescription": "Denies the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimizable",
- "markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimized",
- "markdownDescription": "Denies the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-resizable",
- "markdownDescription": "Denies the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-visible",
- "markdownDescription": "Denies the is_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-maximize",
- "markdownDescription": "Denies the maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-minimize",
- "markdownDescription": "Denies the minimize command without any pre-configured scope."
- },
- {
- "description": "Denies the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-monitor-from-point",
- "markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-position",
- "markdownDescription": "Denies the outer_position command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-size",
- "markdownDescription": "Denies the outer_size command without any pre-configured scope."
- },
- {
- "description": "Denies the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-primary-monitor",
- "markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-request-user-attention",
- "markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Denies the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-scale-factor",
- "markdownDescription": "Denies the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-bottom",
- "markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-top",
- "markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-background-color",
- "markdownDescription": "Denies the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-count",
- "markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-label",
- "markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Denies the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-closable",
- "markdownDescription": "Denies the set_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-content-protected",
- "markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-grab",
- "markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-icon",
- "markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-position",
- "markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-visible",
- "markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-decorations",
- "markdownDescription": "Denies the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Denies the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-effects",
- "markdownDescription": "Denies the set_effects command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focus",
- "markdownDescription": "Denies the set_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focusable",
- "markdownDescription": "Denies the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-fullscreen",
- "markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-ignore-cursor-events",
- "markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Denies the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-max-size",
- "markdownDescription": "Denies the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-maximizable",
- "markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-min-size",
- "markdownDescription": "Denies the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-minimizable",
- "markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-overlay-icon",
- "markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-position",
- "markdownDescription": "Denies the set_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-progress-bar",
- "markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-resizable",
- "markdownDescription": "Denies the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-shadow",
- "markdownDescription": "Denies the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-simple-fullscreen",
- "markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size",
- "markdownDescription": "Denies the set_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size-constraints",
- "markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Denies the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-skip-taskbar",
- "markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-theme",
- "markdownDescription": "Denies the set_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title-bar-style",
- "markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-visible-on-all-workspaces",
- "markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "Denies the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-dragging",
- "markdownDescription": "Denies the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-resize-dragging",
- "markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-theme",
- "markdownDescription": "Denies the theme command without any pre-configured scope."
- },
- {
- "description": "Denies the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-title",
- "markdownDescription": "Denies the title command without any pre-configured scope."
- },
- {
- "description": "Denies the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-toggle-maximize",
- "markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unmaximize",
- "markdownDescription": "Denies the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unminimize",
- "markdownDescription": "Denies the unminimize command without any pre-configured scope."
- },
- {
- "description": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`",
- "type": "string",
- "const": "dialog:default",
- "markdownDescription": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`"
- },
- {
- "description": "Enables the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-ask",
- "markdownDescription": "Enables the ask command without any pre-configured scope."
- },
- {
- "description": "Enables the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-confirm",
- "markdownDescription": "Enables the confirm command without any pre-configured scope."
- },
- {
- "description": "Enables the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-message",
- "markdownDescription": "Enables the message command without any pre-configured scope."
- },
- {
- "description": "Enables the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-open",
- "markdownDescription": "Enables the open command without any pre-configured scope."
- },
- {
- "description": "Enables the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-save",
- "markdownDescription": "Enables the save command without any pre-configured scope."
- },
- {
- "description": "Denies the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-ask",
- "markdownDescription": "Denies the ask command without any pre-configured scope."
- },
- {
- "description": "Denies the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-confirm",
- "markdownDescription": "Denies the confirm command without any pre-configured scope."
- },
- {
- "description": "Denies the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-message",
- "markdownDescription": "Denies the message command without any pre-configured scope."
- },
- {
- "description": "Denies the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-open",
- "markdownDescription": "Denies the open command without any pre-configured scope."
- },
- {
- "description": "Denies the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-save",
- "markdownDescription": "Denies the save command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
- "type": "string",
- "const": "notification:default",
- "markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
- },
- {
- "description": "Enables the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-batch",
- "markdownDescription": "Enables the batch command without any pre-configured scope."
- },
- {
- "description": "Enables the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-cancel",
- "markdownDescription": "Enables the cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-check-permissions",
- "markdownDescription": "Enables the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Enables the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-create-channel",
- "markdownDescription": "Enables the create_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-delete-channel",
- "markdownDescription": "Enables the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-active",
- "markdownDescription": "Enables the get_active command without any pre-configured scope."
- },
- {
- "description": "Enables the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-pending",
- "markdownDescription": "Enables the get_pending command without any pre-configured scope."
- },
- {
- "description": "Enables the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-is-permission-granted",
- "markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Enables the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-list-channels",
- "markdownDescription": "Enables the list_channels command without any pre-configured scope."
- },
- {
- "description": "Enables the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-notify",
- "markdownDescription": "Enables the notify command without any pre-configured scope."
- },
- {
- "description": "Enables the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-permission-state",
- "markdownDescription": "Enables the permission_state command without any pre-configured scope."
- },
- {
- "description": "Enables the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-action-types",
- "markdownDescription": "Enables the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-remove-active",
- "markdownDescription": "Enables the remove_active command without any pre-configured scope."
- },
- {
- "description": "Enables the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-request-permission",
- "markdownDescription": "Enables the request_permission command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Denies the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-batch",
- "markdownDescription": "Denies the batch command without any pre-configured scope."
- },
- {
- "description": "Denies the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-cancel",
- "markdownDescription": "Denies the cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-check-permissions",
- "markdownDescription": "Denies the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Denies the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-create-channel",
- "markdownDescription": "Denies the create_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-delete-channel",
- "markdownDescription": "Denies the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-active",
- "markdownDescription": "Denies the get_active command without any pre-configured scope."
- },
- {
- "description": "Denies the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-pending",
- "markdownDescription": "Denies the get_pending command without any pre-configured scope."
- },
- {
- "description": "Denies the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-is-permission-granted",
- "markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Denies the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-list-channels",
- "markdownDescription": "Denies the list_channels command without any pre-configured scope."
- },
- {
- "description": "Denies the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-notify",
- "markdownDescription": "Denies the notify command without any pre-configured scope."
- },
- {
- "description": "Denies the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-permission-state",
- "markdownDescription": "Denies the permission_state command without any pre-configured scope."
- },
- {
- "description": "Denies the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-action-types",
- "markdownDescription": "Denies the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-remove-active",
- "markdownDescription": "Denies the remove_active command without any pre-configured scope."
- },
- {
- "description": "Denies the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-request-permission",
- "markdownDescription": "Denies the request_permission command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
- "type": "string",
- "const": "process:default",
- "markdownDescription": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
- },
- {
- "description": "Enables the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-exit",
- "markdownDescription": "Enables the exit command without any pre-configured scope."
- },
- {
- "description": "Enables the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-restart",
- "markdownDescription": "Enables the restart command without any pre-configured scope."
- },
- {
- "description": "Denies the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-exit",
- "markdownDescription": "Denies the exit command without any pre-configured scope."
- },
- {
- "description": "Denies the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-restart",
- "markdownDescription": "Denies the restart command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`",
- "type": "string",
- "const": "updater:default",
- "markdownDescription": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`"
- },
- {
- "description": "Enables the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-check",
- "markdownDescription": "Enables the check command without any pre-configured scope."
- },
- {
- "description": "Enables the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download",
- "markdownDescription": "Enables the download command without any pre-configured scope."
- },
- {
- "description": "Enables the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download-and-install",
- "markdownDescription": "Enables the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Enables the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-install",
- "markdownDescription": "Enables the install command without any pre-configured scope."
- },
- {
- "description": "Denies the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-check",
- "markdownDescription": "Denies the check command without any pre-configured scope."
- },
- {
- "description": "Denies the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download",
- "markdownDescription": "Denies the download command without any pre-configured scope."
- },
- {
- "description": "Denies the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download-and-install",
- "markdownDescription": "Denies the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Denies the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-install",
- "markdownDescription": "Denies the install command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`",
- "type": "string",
- "const": "window-state:default",
- "markdownDescription": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`"
- },
- {
- "description": "Enables the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-filename",
- "markdownDescription": "Enables the filename command without any pre-configured scope."
- },
- {
- "description": "Enables the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-restore-state",
- "markdownDescription": "Enables the restore_state command without any pre-configured scope."
- },
- {
- "description": "Enables the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-save-window-state",
- "markdownDescription": "Enables the save_window_state command without any pre-configured scope."
- },
- {
- "description": "Denies the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-filename",
- "markdownDescription": "Denies the filename command without any pre-configured scope."
- },
- {
- "description": "Denies the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-restore-state",
- "markdownDescription": "Denies the restore_state command without any pre-configured scope."
- },
- {
- "description": "Denies the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-save-window-state",
- "markdownDescription": "Denies the save_window_state command without any pre-configured scope."
- }
- ]
- },
- "Value": {
- "description": "All supported ACL values.",
- "anyOf": [
- {
- "description": "Represents a null JSON value.",
- "type": "null"
- },
- {
- "description": "Represents a [`bool`].",
- "type": "boolean"
- },
- {
- "description": "Represents a valid ACL [`Number`].",
- "allOf": [
- {
- "$ref": "#/definitions/Number"
- }
- ]
- },
- {
- "description": "Represents a [`String`].",
- "type": "string"
- },
- {
- "description": "Represents a list of other [`Value`]s.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- {
- "description": "Represents a map of [`String`] keys to [`Value`]s.",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/Value"
- }
- }
- ]
- },
- "Number": {
- "description": "A valid ACL number.",
- "anyOf": [
- {
- "description": "Represents an [`i64`].",
- "type": "integer",
- "format": "int64"
- },
- {
- "description": "Represents a [`f64`].",
- "type": "number",
- "format": "double"
- }
- ]
- },
- "Target": {
- "description": "Platform target.",
- "oneOf": [
- {
- "description": "MacOS.",
- "type": "string",
- "enum": [
- "macOS"
- ]
- },
- {
- "description": "Windows.",
- "type": "string",
- "enum": [
- "windows"
- ]
- },
- {
- "description": "Linux.",
- "type": "string",
- "enum": [
- "linux"
- ]
- },
- {
- "description": "Android.",
- "type": "string",
- "enum": [
- "android"
- ]
- },
- {
- "description": "iOS.",
- "type": "string",
- "enum": [
- "iOS"
- ]
- }
- ]
- },
- "Application": {
- "description": "Opener scope application.",
- "anyOf": [
- {
- "description": "Open in default application.",
- "type": "null"
- },
- {
- "description": "If true, allow open with any application.",
- "type": "boolean"
- },
- {
- "description": "Allow specific application to open with.",
- "type": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/mobile-schema.json b/src-tauri/gen/schemas/mobile-schema.json
deleted file mode 100644
index 84f66b9..0000000
--- a/src-tauri/gen/schemas/mobile-schema.json
+++ /dev/null
@@ -1,2729 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "CapabilityFile",
- "description": "Capability formats accepted in a capability file.",
- "anyOf": [
- {
- "description": "A single capability.",
- "allOf": [
- {
- "$ref": "#/definitions/Capability"
- }
- ]
- },
- {
- "description": "A list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- },
- {
- "description": "A list of capabilities.",
- "type": "object",
- "required": [
- "capabilities"
- ],
- "properties": {
- "capabilities": {
- "description": "The list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- }
- ],
- "definitions": {
- "Capability": {
- "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
- "type": "object",
- "required": [
- "identifier",
- "permissions"
- ],
- "properties": {
- "identifier": {
- "description": "Identifier of the capability.\n\n## Example\n\n`main-user-files-write`",
- "type": "string"
- },
- "description": {
- "description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
- "default": "",
- "type": "string"
- },
- "remote": {
- "description": "Configure remote URLs that can use the capability permissions.\n\nThis setting is optional and defaults to not being set, as our default use case is that the content is served from our local application.\n\n:::caution Make sure you understand the security implications of providing remote sources with local system access. :::\n\n## Example\n\n```json { \"urls\": [\"https://*.mydomain.dev\"] } ```",
- "anyOf": [
- {
- "$ref": "#/definitions/CapabilityRemote"
- },
- {
- "type": "null"
- }
- ]
- },
- "local": {
- "description": "Whether this capability is enabled for local app URLs or not. Defaults to `true`.",
- "default": true,
- "type": "boolean"
- },
- "windows": {
- "description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "webviews": {
- "description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "permissions": {
- "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
- "type": "array",
- "items": {
- "$ref": "#/definitions/PermissionEntry"
- },
- "uniqueItems": true
- },
- "platforms": {
- "description": "Limit which target platforms this capability applies to.\n\nBy default all platforms are targeted.\n\n## Example\n\n`[\"macOS\",\"windows\"]`",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Target"
- }
- }
- }
- },
- "CapabilityRemote": {
- "description": "Configuration for remote URLs that are associated with the capability.",
- "type": "object",
- "required": [
- "urls"
- ],
- "properties": {
- "urls": {
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n## Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "PermissionEntry": {
- "description": "An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`] or an object that references a permission and extends its scope.",
- "anyOf": [
- {
- "description": "Reference a permission or permission set by identifier.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- {
- "description": "Reference a permission or permission set by identifier and extends its scope.",
- "type": "object",
- "allOf": [
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- "allow": {
- "description": "Data that defines what is allowed by the scope.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- "deny": {
- "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- }
- }
- }
- ],
- "required": [
- "identifier"
- ]
- }
- ]
- },
- "Identifier": {
- "description": "Permission identifier",
- "oneOf": [
- {
- "description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
- "type": "string",
- "const": "core:default",
- "markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`",
- "type": "string",
- "const": "core:app:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`"
- },
- {
- "description": "Enables the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-hide",
- "markdownDescription": "Enables the app_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-show",
- "markdownDescription": "Enables the app_show command without any pre-configured scope."
- },
- {
- "description": "Enables the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-bundle-type",
- "markdownDescription": "Enables the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Enables the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-default-window-icon",
- "markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-fetch-data-store-identifiers",
- "markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Enables the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-identifier",
- "markdownDescription": "Enables the identifier command without any pre-configured scope."
- },
- {
- "description": "Enables the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-name",
- "markdownDescription": "Enables the name command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-data-store",
- "markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-listener",
- "markdownDescription": "Enables the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-app-theme",
- "markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-dock-visibility",
- "markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Enables the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-tauri-version",
- "markdownDescription": "Enables the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Enables the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-version",
- "markdownDescription": "Enables the version command without any pre-configured scope."
- },
- {
- "description": "Denies the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-hide",
- "markdownDescription": "Denies the app_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-show",
- "markdownDescription": "Denies the app_show command without any pre-configured scope."
- },
- {
- "description": "Denies the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-bundle-type",
- "markdownDescription": "Denies the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Denies the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-default-window-icon",
- "markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-fetch-data-store-identifiers",
- "markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Denies the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-identifier",
- "markdownDescription": "Denies the identifier command without any pre-configured scope."
- },
- {
- "description": "Denies the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-name",
- "markdownDescription": "Denies the name command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-data-store",
- "markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-listener",
- "markdownDescription": "Denies the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-app-theme",
- "markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-dock-visibility",
- "markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Denies the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-tauri-version",
- "markdownDescription": "Denies the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Denies the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-version",
- "markdownDescription": "Denies the version command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
- "type": "string",
- "const": "core:event:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
- },
- {
- "description": "Enables the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit",
- "markdownDescription": "Enables the emit command without any pre-configured scope."
- },
- {
- "description": "Enables the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit-to",
- "markdownDescription": "Enables the emit_to command without any pre-configured scope."
- },
- {
- "description": "Enables the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-listen",
- "markdownDescription": "Enables the listen command without any pre-configured scope."
- },
- {
- "description": "Enables the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-unlisten",
- "markdownDescription": "Enables the unlisten command without any pre-configured scope."
- },
- {
- "description": "Denies the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit",
- "markdownDescription": "Denies the emit command without any pre-configured scope."
- },
- {
- "description": "Denies the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit-to",
- "markdownDescription": "Denies the emit_to command without any pre-configured scope."
- },
- {
- "description": "Denies the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-listen",
- "markdownDescription": "Denies the listen command without any pre-configured scope."
- },
- {
- "description": "Denies the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-unlisten",
- "markdownDescription": "Denies the unlisten command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
- "type": "string",
- "const": "core:image:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
- },
- {
- "description": "Enables the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-bytes",
- "markdownDescription": "Enables the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Enables the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-path",
- "markdownDescription": "Enables the from_path command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-rgba",
- "markdownDescription": "Enables the rgba command without any pre-configured scope."
- },
- {
- "description": "Enables the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-size",
- "markdownDescription": "Enables the size command without any pre-configured scope."
- },
- {
- "description": "Denies the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-bytes",
- "markdownDescription": "Denies the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Denies the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-path",
- "markdownDescription": "Denies the from_path command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-rgba",
- "markdownDescription": "Denies the rgba command without any pre-configured scope."
- },
- {
- "description": "Denies the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-size",
- "markdownDescription": "Denies the size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
- "type": "string",
- "const": "core:menu:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
- },
- {
- "description": "Enables the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-append",
- "markdownDescription": "Enables the append command without any pre-configured scope."
- },
- {
- "description": "Enables the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-create-default",
- "markdownDescription": "Enables the create_default command without any pre-configured scope."
- },
- {
- "description": "Enables the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-get",
- "markdownDescription": "Enables the get command without any pre-configured scope."
- },
- {
- "description": "Enables the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-insert",
- "markdownDescription": "Enables the insert command without any pre-configured scope."
- },
- {
- "description": "Enables the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-checked",
- "markdownDescription": "Enables the is_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-items",
- "markdownDescription": "Enables the items command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-popup",
- "markdownDescription": "Enables the popup command without any pre-configured scope."
- },
- {
- "description": "Enables the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-prepend",
- "markdownDescription": "Enables the prepend command without any pre-configured scope."
- },
- {
- "description": "Enables the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove",
- "markdownDescription": "Enables the remove command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove-at",
- "markdownDescription": "Enables the remove_at command without any pre-configured scope."
- },
- {
- "description": "Enables the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-accelerator",
- "markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-app-menu",
- "markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-help-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-window-menu",
- "markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-checked",
- "markdownDescription": "Enables the set_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-text",
- "markdownDescription": "Enables the set_text command without any pre-configured scope."
- },
- {
- "description": "Enables the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-text",
- "markdownDescription": "Enables the text command without any pre-configured scope."
- },
- {
- "description": "Denies the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-append",
- "markdownDescription": "Denies the append command without any pre-configured scope."
- },
- {
- "description": "Denies the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-create-default",
- "markdownDescription": "Denies the create_default command without any pre-configured scope."
- },
- {
- "description": "Denies the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-get",
- "markdownDescription": "Denies the get command without any pre-configured scope."
- },
- {
- "description": "Denies the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-insert",
- "markdownDescription": "Denies the insert command without any pre-configured scope."
- },
- {
- "description": "Denies the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-checked",
- "markdownDescription": "Denies the is_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-items",
- "markdownDescription": "Denies the items command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-popup",
- "markdownDescription": "Denies the popup command without any pre-configured scope."
- },
- {
- "description": "Denies the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-prepend",
- "markdownDescription": "Denies the prepend command without any pre-configured scope."
- },
- {
- "description": "Denies the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove",
- "markdownDescription": "Denies the remove command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove-at",
- "markdownDescription": "Denies the remove_at command without any pre-configured scope."
- },
- {
- "description": "Denies the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-accelerator",
- "markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-app-menu",
- "markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-help-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-window-menu",
- "markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-checked",
- "markdownDescription": "Denies the set_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-text",
- "markdownDescription": "Denies the set_text command without any pre-configured scope."
- },
- {
- "description": "Denies the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-text",
- "markdownDescription": "Denies the text command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
- "type": "string",
- "const": "core:path:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
- },
- {
- "description": "Enables the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-basename",
- "markdownDescription": "Enables the basename command without any pre-configured scope."
- },
- {
- "description": "Enables the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-dirname",
- "markdownDescription": "Enables the dirname command without any pre-configured scope."
- },
- {
- "description": "Enables the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-extname",
- "markdownDescription": "Enables the extname command without any pre-configured scope."
- },
- {
- "description": "Enables the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-is-absolute",
- "markdownDescription": "Enables the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Enables the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-join",
- "markdownDescription": "Enables the join command without any pre-configured scope."
- },
- {
- "description": "Enables the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-normalize",
- "markdownDescription": "Enables the normalize command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve",
- "markdownDescription": "Enables the resolve command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve-directory",
- "markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Denies the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-basename",
- "markdownDescription": "Denies the basename command without any pre-configured scope."
- },
- {
- "description": "Denies the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-dirname",
- "markdownDescription": "Denies the dirname command without any pre-configured scope."
- },
- {
- "description": "Denies the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-extname",
- "markdownDescription": "Denies the extname command without any pre-configured scope."
- },
- {
- "description": "Denies the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-is-absolute",
- "markdownDescription": "Denies the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Denies the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-join",
- "markdownDescription": "Denies the join command without any pre-configured scope."
- },
- {
- "description": "Denies the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-normalize",
- "markdownDescription": "Denies the normalize command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve",
- "markdownDescription": "Denies the resolve command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve-directory",
- "markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
- "type": "string",
- "const": "core:resources:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
- "type": "string",
- "const": "core:tray:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
- },
- {
- "description": "Enables the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-get-by-id",
- "markdownDescription": "Enables the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-remove-by-id",
- "markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon-as-template",
- "markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Enables the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-menu",
- "markdownDescription": "Enables the set_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-show-menu-on-left-click",
- "markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Enables the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-temp-dir-path",
- "markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-tooltip",
- "markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-visible",
- "markdownDescription": "Enables the set_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-get-by-id",
- "markdownDescription": "Denies the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-remove-by-id",
- "markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon-as-template",
- "markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Denies the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-menu",
- "markdownDescription": "Denies the set_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-show-menu-on-left-click",
- "markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Denies the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-temp-dir-path",
- "markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-tooltip",
- "markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-visible",
- "markdownDescription": "Denies the set_visible command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
- "type": "string",
- "const": "core:webview:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
- },
- {
- "description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-clear-all-browsing-data",
- "markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview",
- "markdownDescription": "Enables the create_webview command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview-window",
- "markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-get-all-webviews",
- "markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-internal-toggle-devtools",
- "markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Enables the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-print",
- "markdownDescription": "Enables the print command without any pre-configured scope."
- },
- {
- "description": "Enables the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-reparent",
- "markdownDescription": "Enables the reparent command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-auto-resize",
- "markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-background-color",
- "markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-focus",
- "markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-position",
- "markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-size",
- "markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-zoom",
- "markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-close",
- "markdownDescription": "Enables the webview_close command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-hide",
- "markdownDescription": "Enables the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-position",
- "markdownDescription": "Enables the webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-show",
- "markdownDescription": "Enables the webview_show command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-size",
- "markdownDescription": "Enables the webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-clear-all-browsing-data",
- "markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview",
- "markdownDescription": "Denies the create_webview command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview-window",
- "markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-get-all-webviews",
- "markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-internal-toggle-devtools",
- "markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Denies the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-print",
- "markdownDescription": "Denies the print command without any pre-configured scope."
- },
- {
- "description": "Denies the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-reparent",
- "markdownDescription": "Denies the reparent command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-auto-resize",
- "markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-background-color",
- "markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-focus",
- "markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-position",
- "markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-size",
- "markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-zoom",
- "markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-close",
- "markdownDescription": "Denies the webview_close command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-hide",
- "markdownDescription": "Denies the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-position",
- "markdownDescription": "Denies the webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-show",
- "markdownDescription": "Denies the webview_show command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-size",
- "markdownDescription": "Denies the webview_size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
- "type": "string",
- "const": "core:window:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
- },
- {
- "description": "Enables the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-available-monitors",
- "markdownDescription": "Enables the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Enables the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-center",
- "markdownDescription": "Enables the center command without any pre-configured scope."
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Enables the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-create",
- "markdownDescription": "Enables the create command without any pre-configured scope."
- },
- {
- "description": "Enables the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-current-monitor",
- "markdownDescription": "Enables the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-cursor-position",
- "markdownDescription": "Enables the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-destroy",
- "markdownDescription": "Enables the destroy command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-get-all-windows",
- "markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Enables the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-hide",
- "markdownDescription": "Enables the hide command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-position",
- "markdownDescription": "Enables the inner_position command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-size",
- "markdownDescription": "Enables the inner_size command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-internal-toggle-maximize",
- "markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-always-on-top",
- "markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-closable",
- "markdownDescription": "Enables the is_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-decorated",
- "markdownDescription": "Enables the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-focused",
- "markdownDescription": "Enables the is_focused command without any pre-configured scope."
- },
- {
- "description": "Enables the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-fullscreen",
- "markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximizable",
- "markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximized",
- "markdownDescription": "Enables the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimizable",
- "markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimized",
- "markdownDescription": "Enables the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-resizable",
- "markdownDescription": "Enables the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-visible",
- "markdownDescription": "Enables the is_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-maximize",
- "markdownDescription": "Enables the maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-minimize",
- "markdownDescription": "Enables the minimize command without any pre-configured scope."
- },
- {
- "description": "Enables the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-monitor-from-point",
- "markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-position",
- "markdownDescription": "Enables the outer_position command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-size",
- "markdownDescription": "Enables the outer_size command without any pre-configured scope."
- },
- {
- "description": "Enables the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-primary-monitor",
- "markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-request-user-attention",
- "markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Enables the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-scale-factor",
- "markdownDescription": "Enables the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-bottom",
- "markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-top",
- "markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-background-color",
- "markdownDescription": "Enables the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-count",
- "markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-label",
- "markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Enables the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-closable",
- "markdownDescription": "Enables the set_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-content-protected",
- "markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-grab",
- "markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-icon",
- "markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-position",
- "markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-visible",
- "markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-decorations",
- "markdownDescription": "Enables the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Enables the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-effects",
- "markdownDescription": "Enables the set_effects command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focus",
- "markdownDescription": "Enables the set_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focusable",
- "markdownDescription": "Enables the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-fullscreen",
- "markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-ignore-cursor-events",
- "markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Enables the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-max-size",
- "markdownDescription": "Enables the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-maximizable",
- "markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-min-size",
- "markdownDescription": "Enables the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-minimizable",
- "markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-overlay-icon",
- "markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-position",
- "markdownDescription": "Enables the set_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-progress-bar",
- "markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-resizable",
- "markdownDescription": "Enables the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-shadow",
- "markdownDescription": "Enables the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-simple-fullscreen",
- "markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size",
- "markdownDescription": "Enables the set_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size-constraints",
- "markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Enables the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-skip-taskbar",
- "markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-theme",
- "markdownDescription": "Enables the set_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title-bar-style",
- "markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-visible-on-all-workspaces",
- "markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Enables the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-dragging",
- "markdownDescription": "Enables the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-resize-dragging",
- "markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-theme",
- "markdownDescription": "Enables the theme command without any pre-configured scope."
- },
- {
- "description": "Enables the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-title",
- "markdownDescription": "Enables the title command without any pre-configured scope."
- },
- {
- "description": "Enables the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-toggle-maximize",
- "markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unmaximize",
- "markdownDescription": "Enables the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unminimize",
- "markdownDescription": "Enables the unminimize command without any pre-configured scope."
- },
- {
- "description": "Denies the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-available-monitors",
- "markdownDescription": "Denies the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Denies the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-center",
- "markdownDescription": "Denies the center command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Denies the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-create",
- "markdownDescription": "Denies the create command without any pre-configured scope."
- },
- {
- "description": "Denies the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-current-monitor",
- "markdownDescription": "Denies the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-cursor-position",
- "markdownDescription": "Denies the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-destroy",
- "markdownDescription": "Denies the destroy command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-get-all-windows",
- "markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Denies the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-hide",
- "markdownDescription": "Denies the hide command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-position",
- "markdownDescription": "Denies the inner_position command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-size",
- "markdownDescription": "Denies the inner_size command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-internal-toggle-maximize",
- "markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-always-on-top",
- "markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-closable",
- "markdownDescription": "Denies the is_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-decorated",
- "markdownDescription": "Denies the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-focused",
- "markdownDescription": "Denies the is_focused command without any pre-configured scope."
- },
- {
- "description": "Denies the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-fullscreen",
- "markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximizable",
- "markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximized",
- "markdownDescription": "Denies the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimizable",
- "markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimized",
- "markdownDescription": "Denies the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-resizable",
- "markdownDescription": "Denies the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-visible",
- "markdownDescription": "Denies the is_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-maximize",
- "markdownDescription": "Denies the maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-minimize",
- "markdownDescription": "Denies the minimize command without any pre-configured scope."
- },
- {
- "description": "Denies the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-monitor-from-point",
- "markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-position",
- "markdownDescription": "Denies the outer_position command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-size",
- "markdownDescription": "Denies the outer_size command without any pre-configured scope."
- },
- {
- "description": "Denies the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-primary-monitor",
- "markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-request-user-attention",
- "markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Denies the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-scale-factor",
- "markdownDescription": "Denies the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-bottom",
- "markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-top",
- "markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-background-color",
- "markdownDescription": "Denies the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-count",
- "markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-label",
- "markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Denies the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-closable",
- "markdownDescription": "Denies the set_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-content-protected",
- "markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-grab",
- "markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-icon",
- "markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-position",
- "markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-visible",
- "markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-decorations",
- "markdownDescription": "Denies the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Denies the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-effects",
- "markdownDescription": "Denies the set_effects command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focus",
- "markdownDescription": "Denies the set_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focusable",
- "markdownDescription": "Denies the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-fullscreen",
- "markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-ignore-cursor-events",
- "markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Denies the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-max-size",
- "markdownDescription": "Denies the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-maximizable",
- "markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-min-size",
- "markdownDescription": "Denies the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-minimizable",
- "markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-overlay-icon",
- "markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-position",
- "markdownDescription": "Denies the set_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-progress-bar",
- "markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-resizable",
- "markdownDescription": "Denies the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-shadow",
- "markdownDescription": "Denies the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-simple-fullscreen",
- "markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size",
- "markdownDescription": "Denies the set_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size-constraints",
- "markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Denies the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-skip-taskbar",
- "markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-theme",
- "markdownDescription": "Denies the set_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title-bar-style",
- "markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-visible-on-all-workspaces",
- "markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "Denies the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-dragging",
- "markdownDescription": "Denies the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-resize-dragging",
- "markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-theme",
- "markdownDescription": "Denies the theme command without any pre-configured scope."
- },
- {
- "description": "Denies the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-title",
- "markdownDescription": "Denies the title command without any pre-configured scope."
- },
- {
- "description": "Denies the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-toggle-maximize",
- "markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unmaximize",
- "markdownDescription": "Denies the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unminimize",
- "markdownDescription": "Denies the unminimize command without any pre-configured scope."
- },
- {
- "description": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`",
- "type": "string",
- "const": "deep-link:default",
- "markdownDescription": "Allows reading the opened deep link via the get_current command\n#### This default permission set includes:\n\n- `allow-get-current`"
- },
- {
- "description": "Enables the get_current command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-get-current",
- "markdownDescription": "Enables the get_current command without any pre-configured scope."
- },
- {
- "description": "Enables the is_registered command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-is-registered",
- "markdownDescription": "Enables the is_registered command without any pre-configured scope."
- },
- {
- "description": "Enables the register command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-register",
- "markdownDescription": "Enables the register command without any pre-configured scope."
- },
- {
- "description": "Enables the unregister command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:allow-unregister",
- "markdownDescription": "Enables the unregister command without any pre-configured scope."
- },
- {
- "description": "Denies the get_current command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-get-current",
- "markdownDescription": "Denies the get_current command without any pre-configured scope."
- },
- {
- "description": "Denies the is_registered command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-is-registered",
- "markdownDescription": "Denies the is_registered command without any pre-configured scope."
- },
- {
- "description": "Denies the register command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-register",
- "markdownDescription": "Denies the register command without any pre-configured scope."
- },
- {
- "description": "Denies the unregister command without any pre-configured scope.",
- "type": "string",
- "const": "deep-link:deny-unregister",
- "markdownDescription": "Denies the unregister command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
- "type": "string",
- "const": "notification:default",
- "markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
- },
- {
- "description": "Enables the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-batch",
- "markdownDescription": "Enables the batch command without any pre-configured scope."
- },
- {
- "description": "Enables the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-cancel",
- "markdownDescription": "Enables the cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-check-permissions",
- "markdownDescription": "Enables the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Enables the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-create-channel",
- "markdownDescription": "Enables the create_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-delete-channel",
- "markdownDescription": "Enables the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-active",
- "markdownDescription": "Enables the get_active command without any pre-configured scope."
- },
- {
- "description": "Enables the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-pending",
- "markdownDescription": "Enables the get_pending command without any pre-configured scope."
- },
- {
- "description": "Enables the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-is-permission-granted",
- "markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Enables the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-list-channels",
- "markdownDescription": "Enables the list_channels command without any pre-configured scope."
- },
- {
- "description": "Enables the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-notify",
- "markdownDescription": "Enables the notify command without any pre-configured scope."
- },
- {
- "description": "Enables the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-permission-state",
- "markdownDescription": "Enables the permission_state command without any pre-configured scope."
- },
- {
- "description": "Enables the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-action-types",
- "markdownDescription": "Enables the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-remove-active",
- "markdownDescription": "Enables the remove_active command without any pre-configured scope."
- },
- {
- "description": "Enables the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-request-permission",
- "markdownDescription": "Enables the request_permission command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Denies the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-batch",
- "markdownDescription": "Denies the batch command without any pre-configured scope."
- },
- {
- "description": "Denies the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-cancel",
- "markdownDescription": "Denies the cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-check-permissions",
- "markdownDescription": "Denies the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Denies the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-create-channel",
- "markdownDescription": "Denies the create_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-delete-channel",
- "markdownDescription": "Denies the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-active",
- "markdownDescription": "Denies the get_active command without any pre-configured scope."
- },
- {
- "description": "Denies the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-pending",
- "markdownDescription": "Denies the get_pending command without any pre-configured scope."
- },
- {
- "description": "Denies the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-is-permission-granted",
- "markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Denies the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-list-channels",
- "markdownDescription": "Denies the list_channels command without any pre-configured scope."
- },
- {
- "description": "Denies the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-notify",
- "markdownDescription": "Denies the notify command without any pre-configured scope."
- },
- {
- "description": "Denies the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-permission-state",
- "markdownDescription": "Denies the permission_state command without any pre-configured scope."
- },
- {
- "description": "Denies the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-action-types",
- "markdownDescription": "Denies the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-remove-active",
- "markdownDescription": "Denies the remove_active command without any pre-configured scope."
- },
- {
- "description": "Denies the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-request-permission",
- "markdownDescription": "Denies the request_permission command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- },
- "Value": {
- "description": "All supported ACL values.",
- "anyOf": [
- {
- "description": "Represents a null JSON value.",
- "type": "null"
- },
- {
- "description": "Represents a [`bool`].",
- "type": "boolean"
- },
- {
- "description": "Represents a valid ACL [`Number`].",
- "allOf": [
- {
- "$ref": "#/definitions/Number"
- }
- ]
- },
- {
- "description": "Represents a [`String`].",
- "type": "string"
- },
- {
- "description": "Represents a list of other [`Value`]s.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- {
- "description": "Represents a map of [`String`] keys to [`Value`]s.",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/Value"
- }
- }
- ]
- },
- "Number": {
- "description": "A valid ACL number.",
- "anyOf": [
- {
- "description": "Represents an [`i64`].",
- "type": "integer",
- "format": "int64"
- },
- {
- "description": "Represents a [`f64`].",
- "type": "number",
- "format": "double"
- }
- ]
- },
- "Target": {
- "description": "Platform target.",
- "oneOf": [
- {
- "description": "MacOS.",
- "type": "string",
- "enum": [
- "macOS"
- ]
- },
- {
- "description": "Windows.",
- "type": "string",
- "enum": [
- "windows"
- ]
- },
- {
- "description": "Linux.",
- "type": "string",
- "enum": [
- "linux"
- ]
- },
- {
- "description": "Android.",
- "type": "string",
- "enum": [
- "android"
- ]
- },
- {
- "description": "iOS.",
- "type": "string",
- "enum": [
- "iOS"
- ]
- }
- ]
- },
- "Application": {
- "description": "Opener scope application.",
- "anyOf": [
- {
- "description": "Open in default application.",
- "type": "null"
- },
- {
- "description": "If true, allow open with any application.",
- "type": "boolean"
- },
- {
- "description": "Allow specific application to open with.",
- "type": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/gen/schemas/windows-schema.json b/src-tauri/gen/schemas/windows-schema.json
deleted file mode 100644
index dea2186..0000000
--- a/src-tauri/gen/schemas/windows-schema.json
+++ /dev/null
@@ -1,3113 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "title": "CapabilityFile",
- "description": "Capability formats accepted in a capability file.",
- "anyOf": [
- {
- "description": "A single capability.",
- "allOf": [
- {
- "$ref": "#/definitions/Capability"
- }
- ]
- },
- {
- "description": "A list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- },
- {
- "description": "A list of capabilities.",
- "type": "object",
- "required": [
- "capabilities"
- ],
- "properties": {
- "capabilities": {
- "description": "The list of capabilities.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Capability"
- }
- }
- }
- }
- ],
- "definitions": {
- "Capability": {
- "description": "A grouping and boundary mechanism developers can use to isolate access to the IPC layer.\n\nIt controls application windows' and webviews' fine grained access to the Tauri core, application, or plugin commands. If a webview or its window is not matching any capability then it has no access to the IPC layer at all.\n\nThis can be done to create groups of windows, based on their required system access, which can reduce impact of frontend vulnerabilities in less privileged windows. Windows can be added to a capability by exact name (e.g. `main-window`) or glob patterns like `*` or `admin-*`. A Window can have none, one, or multiple associated capabilities.\n\n## Example\n\n```json { \"identifier\": \"main-user-files-write\", \"description\": \"This capability allows the `main` window on macOS and Windows access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.\", \"windows\": [ \"main\" ], \"permissions\": [ \"core:default\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] }, ], \"platforms\": [\"macOS\",\"windows\"] } ```",
- "type": "object",
- "required": [
- "identifier",
- "permissions"
- ],
- "properties": {
- "identifier": {
- "description": "Identifier of the capability.\n\n## Example\n\n`main-user-files-write`",
- "type": "string"
- },
- "description": {
- "description": "Description of what the capability is intended to allow on associated windows.\n\nIt should contain a description of what the grouped permissions should allow.\n\n## Example\n\nThis capability allows the `main` window access to `filesystem` write related commands and `dialog` commands to enable programmatic access to files selected by the user.",
- "default": "",
- "type": "string"
- },
- "remote": {
- "description": "Configure remote URLs that can use the capability permissions.\n\nThis setting is optional and defaults to not being set, as our default use case is that the content is served from our local application.\n\n:::caution Make sure you understand the security implications of providing remote sources with local system access. :::\n\n## Example\n\n```json { \"urls\": [\"https://*.mydomain.dev\"] } ```",
- "anyOf": [
- {
- "$ref": "#/definitions/CapabilityRemote"
- },
- {
- "type": "null"
- }
- ]
- },
- "local": {
- "description": "Whether this capability is enabled for local app URLs or not. Defaults to `true`.",
- "default": true,
- "type": "boolean"
- },
- "windows": {
- "description": "List of windows that are affected by this capability. Can be a glob pattern.\n\nIf a window label matches any of the patterns in this list, the capability will be enabled on all the webviews of that window, regardless of the value of [`Self::webviews`].\n\nOn multiwebview windows, prefer specifying [`Self::webviews`] and omitting [`Self::windows`] for a fine grained access control.\n\n## Example\n\n`[\"main\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "webviews": {
- "description": "List of webviews that are affected by this capability. Can be a glob pattern.\n\nThe capability will be enabled on all the webviews whose label matches any of the patterns in this list, regardless of whether the webview's window label matches a pattern in [`Self::windows`].\n\n## Example\n\n`[\"sub-webview-one\", \"sub-webview-two\"]`",
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "permissions": {
- "description": "List of permissions attached to this capability.\n\nMust include the plugin name as prefix in the form of `${plugin-name}:${permission-name}`. For commands directly implemented in the application itself only `${permission-name}` is required.\n\n## Example\n\n```json [ \"core:default\", \"shell:allow-open\", \"dialog:open\", { \"identifier\": \"fs:allow-write-text-file\", \"allow\": [{ \"path\": \"$HOME/test.txt\" }] } ] ```",
- "type": "array",
- "items": {
- "$ref": "#/definitions/PermissionEntry"
- },
- "uniqueItems": true
- },
- "platforms": {
- "description": "Limit which target platforms this capability applies to.\n\nBy default all platforms are targeted.\n\n## Example\n\n`[\"macOS\",\"windows\"]`",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Target"
- }
- }
- }
- },
- "CapabilityRemote": {
- "description": "Configuration for remote URLs that are associated with the capability.",
- "type": "object",
- "required": [
- "urls"
- ],
- "properties": {
- "urls": {
- "description": "Remote domains this capability refers to using the [URLPattern standard](https://urlpattern.spec.whatwg.org/).\n\n## Examples\n\n- \"https://*.mydomain.dev\": allows subdomains of mydomain.dev - \"https://mydomain.dev/api/*\": allows any subpath of mydomain.dev/api",
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- }
- },
- "PermissionEntry": {
- "description": "An entry for a permission value in a [`Capability`] can be either a raw permission [`Identifier`] or an object that references a permission and extends its scope.",
- "anyOf": [
- {
- "description": "Reference a permission or permission set by identifier.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- {
- "description": "Reference a permission or permission set by identifier and extends its scope.",
- "type": "object",
- "allOf": [
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "HttpScopeEntry",
- "description": "HTTP scope entry.",
- "anyOf": [
- {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- },
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "url": {
- "description": "A URL that can be accessed by the webview when using the HTTP APIs. Wildcards can be used following the URL pattern standard.\n\nSee [the URL Pattern spec](https://urlpattern.spec.whatwg.org/) for more information.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin on port 443\n\n- \"https://*:*\" : allows all HTTPS origin on any port\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "if": {
- "properties": {
- "identifier": {
- "anyOf": [
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- }
- ]
- }
- }
- },
- "then": {
- "properties": {
- "allow": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- },
- "deny": {
- "items": {
- "title": "OpenerScopeEntry",
- "description": "Opener scope entry.",
- "anyOf": [
- {
- "type": "object",
- "required": [
- "url"
- ],
- "properties": {
- "app": {
- "description": "An application to open this url with, for example: firefox.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "url": {
- "description": "A URL that can be opened by the webview when using the Opener APIs.\n\nWildcards can be used following the UNIX glob pattern.\n\nExamples:\n\n- \"https://*\" : allows all HTTPS origin\n\n- \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path\n\n- \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
- "type": "string"
- }
- }
- },
- {
- "type": "object",
- "required": [
- "path"
- ],
- "properties": {
- "app": {
- "description": "An application to open this path with, for example: xdg-open.",
- "allOf": [
- {
- "$ref": "#/definitions/Application"
- }
- ]
- },
- "path": {
- "description": "A path that can be opened by the webview when using the Opener APIs.\n\nThe pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
- "type": "string"
- }
- }
- }
- ]
- }
- }
- }
- },
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- }
- }
- },
- {
- "properties": {
- "identifier": {
- "description": "Identifier of the permission or permission set.",
- "allOf": [
- {
- "$ref": "#/definitions/Identifier"
- }
- ]
- },
- "allow": {
- "description": "Data that defines what is allowed by the scope.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- "deny": {
- "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.",
- "type": [
- "array",
- "null"
- ],
- "items": {
- "$ref": "#/definitions/Value"
- }
- }
- }
- }
- ],
- "required": [
- "identifier"
- ]
- }
- ]
- },
- "Identifier": {
- "description": "Permission identifier",
- "oneOf": [
- {
- "description": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`",
- "type": "string",
- "const": "autostart:default",
- "markdownDescription": "This permission set configures if your\napplication can enable or disable auto\nstarting the application on boot.\n\n#### Granted Permissions\n\nIt allows all to check, enable and\ndisable the automatic start on boot.\n\n\n#### This default permission set includes:\n\n- `allow-enable`\n- `allow-disable`\n- `allow-is-enabled`"
- },
- {
- "description": "Enables the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-disable",
- "markdownDescription": "Enables the disable command without any pre-configured scope."
- },
- {
- "description": "Enables the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-enable",
- "markdownDescription": "Enables the enable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the disable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-disable",
- "markdownDescription": "Denies the disable command without any pre-configured scope."
- },
- {
- "description": "Denies the enable command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-enable",
- "markdownDescription": "Denies the enable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "autostart:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`",
- "type": "string",
- "const": "core:default",
- "markdownDescription": "Default core plugins set.\n#### This default permission set includes:\n\n- `core:path:default`\n- `core:event:default`\n- `core:window:default`\n- `core:webview:default`\n- `core:app:default`\n- `core:image:default`\n- `core:resources:default`\n- `core:menu:default`\n- `core:tray:default`"
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`",
- "type": "string",
- "const": "core:app:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-version`\n- `allow-name`\n- `allow-tauri-version`\n- `allow-identifier`\n- `allow-bundle-type`\n- `allow-register-listener`\n- `allow-remove-listener`"
- },
- {
- "description": "Enables the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-hide",
- "markdownDescription": "Enables the app_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-app-show",
- "markdownDescription": "Enables the app_show command without any pre-configured scope."
- },
- {
- "description": "Enables the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-bundle-type",
- "markdownDescription": "Enables the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Enables the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-default-window-icon",
- "markdownDescription": "Enables the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-fetch-data-store-identifiers",
- "markdownDescription": "Enables the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Enables the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-identifier",
- "markdownDescription": "Enables the identifier command without any pre-configured scope."
- },
- {
- "description": "Enables the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-name",
- "markdownDescription": "Enables the name command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-data-store",
- "markdownDescription": "Enables the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-remove-listener",
- "markdownDescription": "Enables the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-app-theme",
- "markdownDescription": "Enables the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-set-dock-visibility",
- "markdownDescription": "Enables the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Enables the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-tauri-version",
- "markdownDescription": "Enables the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Enables the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:allow-version",
- "markdownDescription": "Enables the version command without any pre-configured scope."
- },
- {
- "description": "Denies the app_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-hide",
- "markdownDescription": "Denies the app_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the app_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-app-show",
- "markdownDescription": "Denies the app_show command without any pre-configured scope."
- },
- {
- "description": "Denies the bundle_type command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-bundle-type",
- "markdownDescription": "Denies the bundle_type command without any pre-configured scope."
- },
- {
- "description": "Denies the default_window_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-default-window-icon",
- "markdownDescription": "Denies the default_window_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_data_store_identifiers command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-fetch-data-store-identifiers",
- "markdownDescription": "Denies the fetch_data_store_identifiers command without any pre-configured scope."
- },
- {
- "description": "Denies the identifier command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-identifier",
- "markdownDescription": "Denies the identifier command without any pre-configured scope."
- },
- {
- "description": "Denies the name command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-name",
- "markdownDescription": "Denies the name command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_data_store command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-data-store",
- "markdownDescription": "Denies the remove_data_store command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_listener command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-remove-listener",
- "markdownDescription": "Denies the remove_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the set_app_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-app-theme",
- "markdownDescription": "Denies the set_app_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_dock_visibility command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-set-dock-visibility",
- "markdownDescription": "Denies the set_dock_visibility command without any pre-configured scope."
- },
- {
- "description": "Denies the tauri_version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-tauri-version",
- "markdownDescription": "Denies the tauri_version command without any pre-configured scope."
- },
- {
- "description": "Denies the version command without any pre-configured scope.",
- "type": "string",
- "const": "core:app:deny-version",
- "markdownDescription": "Denies the version command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`",
- "type": "string",
- "const": "core:event:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-listen`\n- `allow-unlisten`\n- `allow-emit`\n- `allow-emit-to`"
- },
- {
- "description": "Enables the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit",
- "markdownDescription": "Enables the emit command without any pre-configured scope."
- },
- {
- "description": "Enables the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-emit-to",
- "markdownDescription": "Enables the emit_to command without any pre-configured scope."
- },
- {
- "description": "Enables the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-listen",
- "markdownDescription": "Enables the listen command without any pre-configured scope."
- },
- {
- "description": "Enables the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:allow-unlisten",
- "markdownDescription": "Enables the unlisten command without any pre-configured scope."
- },
- {
- "description": "Denies the emit command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit",
- "markdownDescription": "Denies the emit command without any pre-configured scope."
- },
- {
- "description": "Denies the emit_to command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-emit-to",
- "markdownDescription": "Denies the emit_to command without any pre-configured scope."
- },
- {
- "description": "Denies the listen command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-listen",
- "markdownDescription": "Denies the listen command without any pre-configured scope."
- },
- {
- "description": "Denies the unlisten command without any pre-configured scope.",
- "type": "string",
- "const": "core:event:deny-unlisten",
- "markdownDescription": "Denies the unlisten command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`",
- "type": "string",
- "const": "core:image:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-from-bytes`\n- `allow-from-path`\n- `allow-rgba`\n- `allow-size`"
- },
- {
- "description": "Enables the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-bytes",
- "markdownDescription": "Enables the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Enables the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-from-path",
- "markdownDescription": "Enables the from_path command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-rgba",
- "markdownDescription": "Enables the rgba command without any pre-configured scope."
- },
- {
- "description": "Enables the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:allow-size",
- "markdownDescription": "Enables the size command without any pre-configured scope."
- },
- {
- "description": "Denies the from_bytes command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-bytes",
- "markdownDescription": "Denies the from_bytes command without any pre-configured scope."
- },
- {
- "description": "Denies the from_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-from-path",
- "markdownDescription": "Denies the from_path command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the rgba command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-rgba",
- "markdownDescription": "Denies the rgba command without any pre-configured scope."
- },
- {
- "description": "Denies the size command without any pre-configured scope.",
- "type": "string",
- "const": "core:image:deny-size",
- "markdownDescription": "Denies the size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`",
- "type": "string",
- "const": "core:menu:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-append`\n- `allow-prepend`\n- `allow-insert`\n- `allow-remove`\n- `allow-remove-at`\n- `allow-items`\n- `allow-get`\n- `allow-popup`\n- `allow-create-default`\n- `allow-set-as-app-menu`\n- `allow-set-as-window-menu`\n- `allow-text`\n- `allow-set-text`\n- `allow-is-enabled`\n- `allow-set-enabled`\n- `allow-set-accelerator`\n- `allow-set-as-windows-menu-for-nsapp`\n- `allow-set-as-help-menu-for-nsapp`\n- `allow-is-checked`\n- `allow-set-checked`\n- `allow-set-icon`"
- },
- {
- "description": "Enables the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-append",
- "markdownDescription": "Enables the append command without any pre-configured scope."
- },
- {
- "description": "Enables the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-create-default",
- "markdownDescription": "Enables the create_default command without any pre-configured scope."
- },
- {
- "description": "Enables the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-get",
- "markdownDescription": "Enables the get command without any pre-configured scope."
- },
- {
- "description": "Enables the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-insert",
- "markdownDescription": "Enables the insert command without any pre-configured scope."
- },
- {
- "description": "Enables the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-checked",
- "markdownDescription": "Enables the is_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-items",
- "markdownDescription": "Enables the items command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-popup",
- "markdownDescription": "Enables the popup command without any pre-configured scope."
- },
- {
- "description": "Enables the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-prepend",
- "markdownDescription": "Enables the prepend command without any pre-configured scope."
- },
- {
- "description": "Enables the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove",
- "markdownDescription": "Enables the remove command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-remove-at",
- "markdownDescription": "Enables the remove_at command without any pre-configured scope."
- },
- {
- "description": "Enables the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-accelerator",
- "markdownDescription": "Enables the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-app-menu",
- "markdownDescription": "Enables the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-help-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-window-menu",
- "markdownDescription": "Enables the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Enables the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Enables the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-checked",
- "markdownDescription": "Enables the set_checked command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-set-text",
- "markdownDescription": "Enables the set_text command without any pre-configured scope."
- },
- {
- "description": "Enables the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:allow-text",
- "markdownDescription": "Enables the text command without any pre-configured scope."
- },
- {
- "description": "Denies the append command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-append",
- "markdownDescription": "Denies the append command without any pre-configured scope."
- },
- {
- "description": "Denies the create_default command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-create-default",
- "markdownDescription": "Denies the create_default command without any pre-configured scope."
- },
- {
- "description": "Denies the get command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-get",
- "markdownDescription": "Denies the get command without any pre-configured scope."
- },
- {
- "description": "Denies the insert command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-insert",
- "markdownDescription": "Denies the insert command without any pre-configured scope."
- },
- {
- "description": "Denies the is_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-checked",
- "markdownDescription": "Denies the is_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the items command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-items",
- "markdownDescription": "Denies the items command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the popup command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-popup",
- "markdownDescription": "Denies the popup command without any pre-configured scope."
- },
- {
- "description": "Denies the prepend command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-prepend",
- "markdownDescription": "Denies the prepend command without any pre-configured scope."
- },
- {
- "description": "Denies the remove command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove",
- "markdownDescription": "Denies the remove command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_at command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-remove-at",
- "markdownDescription": "Denies the remove_at command without any pre-configured scope."
- },
- {
- "description": "Denies the set_accelerator command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-accelerator",
- "markdownDescription": "Denies the set_accelerator command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_app_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-app-menu",
- "markdownDescription": "Denies the set_as_app_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-help-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_help_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_window_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-window-menu",
- "markdownDescription": "Denies the set_as_window_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-as-windows-menu-for-nsapp",
- "markdownDescription": "Denies the set_as_windows_menu_for_nsapp command without any pre-configured scope."
- },
- {
- "description": "Denies the set_checked command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-checked",
- "markdownDescription": "Denies the set_checked command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-set-text",
- "markdownDescription": "Denies the set_text command without any pre-configured scope."
- },
- {
- "description": "Denies the text command without any pre-configured scope.",
- "type": "string",
- "const": "core:menu:deny-text",
- "markdownDescription": "Denies the text command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`",
- "type": "string",
- "const": "core:path:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-resolve-directory`\n- `allow-resolve`\n- `allow-normalize`\n- `allow-join`\n- `allow-dirname`\n- `allow-extname`\n- `allow-basename`\n- `allow-is-absolute`"
- },
- {
- "description": "Enables the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-basename",
- "markdownDescription": "Enables the basename command without any pre-configured scope."
- },
- {
- "description": "Enables the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-dirname",
- "markdownDescription": "Enables the dirname command without any pre-configured scope."
- },
- {
- "description": "Enables the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-extname",
- "markdownDescription": "Enables the extname command without any pre-configured scope."
- },
- {
- "description": "Enables the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-is-absolute",
- "markdownDescription": "Enables the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Enables the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-join",
- "markdownDescription": "Enables the join command without any pre-configured scope."
- },
- {
- "description": "Enables the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-normalize",
- "markdownDescription": "Enables the normalize command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve",
- "markdownDescription": "Enables the resolve command without any pre-configured scope."
- },
- {
- "description": "Enables the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:allow-resolve-directory",
- "markdownDescription": "Enables the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Denies the basename command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-basename",
- "markdownDescription": "Denies the basename command without any pre-configured scope."
- },
- {
- "description": "Denies the dirname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-dirname",
- "markdownDescription": "Denies the dirname command without any pre-configured scope."
- },
- {
- "description": "Denies the extname command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-extname",
- "markdownDescription": "Denies the extname command without any pre-configured scope."
- },
- {
- "description": "Denies the is_absolute command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-is-absolute",
- "markdownDescription": "Denies the is_absolute command without any pre-configured scope."
- },
- {
- "description": "Denies the join command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-join",
- "markdownDescription": "Denies the join command without any pre-configured scope."
- },
- {
- "description": "Denies the normalize command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-normalize",
- "markdownDescription": "Denies the normalize command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve",
- "markdownDescription": "Denies the resolve command without any pre-configured scope."
- },
- {
- "description": "Denies the resolve_directory command without any pre-configured scope.",
- "type": "string",
- "const": "core:path:deny-resolve-directory",
- "markdownDescription": "Denies the resolve_directory command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`",
- "type": "string",
- "const": "core:resources:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-close`"
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:resources:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`",
- "type": "string",
- "const": "core:tray:default",
- "markdownDescription": "Default permissions for the plugin, which enables all commands.\n#### This default permission set includes:\n\n- `allow-new`\n- `allow-get-by-id`\n- `allow-remove-by-id`\n- `allow-set-icon`\n- `allow-set-menu`\n- `allow-set-tooltip`\n- `allow-set-title`\n- `allow-set-visible`\n- `allow-set-temp-dir-path`\n- `allow-set-icon-as-template`\n- `allow-set-show-menu-on-left-click`"
- },
- {
- "description": "Enables the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-get-by-id",
- "markdownDescription": "Enables the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-new",
- "markdownDescription": "Enables the new command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-remove-by-id",
- "markdownDescription": "Enables the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-icon-as-template",
- "markdownDescription": "Enables the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Enables the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-menu",
- "markdownDescription": "Enables the set_menu command without any pre-configured scope."
- },
- {
- "description": "Enables the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-show-menu-on-left-click",
- "markdownDescription": "Enables the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Enables the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-temp-dir-path",
- "markdownDescription": "Enables the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-tooltip",
- "markdownDescription": "Enables the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:allow-set-visible",
- "markdownDescription": "Enables the set_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the get_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-get-by-id",
- "markdownDescription": "Denies the get_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the new command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-new",
- "markdownDescription": "Denies the new command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_by_id command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-remove-by-id",
- "markdownDescription": "Denies the remove_by_id command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon_as_template command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-icon-as-template",
- "markdownDescription": "Denies the set_icon_as_template command without any pre-configured scope."
- },
- {
- "description": "Denies the set_menu command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-menu",
- "markdownDescription": "Denies the set_menu command without any pre-configured scope."
- },
- {
- "description": "Denies the set_show_menu_on_left_click command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-show-menu-on-left-click",
- "markdownDescription": "Denies the set_show_menu_on_left_click command without any pre-configured scope."
- },
- {
- "description": "Denies the set_temp_dir_path command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-temp-dir-path",
- "markdownDescription": "Denies the set_temp_dir_path command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_tooltip command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-tooltip",
- "markdownDescription": "Denies the set_tooltip command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:tray:deny-set-visible",
- "markdownDescription": "Denies the set_visible command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`",
- "type": "string",
- "const": "core:webview:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-webviews`\n- `allow-webview-position`\n- `allow-webview-size`\n- `allow-internal-toggle-devtools`"
- },
- {
- "description": "Enables the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-clear-all-browsing-data",
- "markdownDescription": "Enables the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview",
- "markdownDescription": "Enables the create_webview command without any pre-configured scope."
- },
- {
- "description": "Enables the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-create-webview-window",
- "markdownDescription": "Enables the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-get-all-webviews",
- "markdownDescription": "Enables the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-internal-toggle-devtools",
- "markdownDescription": "Enables the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Enables the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-print",
- "markdownDescription": "Enables the print command without any pre-configured scope."
- },
- {
- "description": "Enables the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-reparent",
- "markdownDescription": "Enables the reparent command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-auto-resize",
- "markdownDescription": "Enables the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-background-color",
- "markdownDescription": "Enables the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-focus",
- "markdownDescription": "Enables the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-position",
- "markdownDescription": "Enables the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-size",
- "markdownDescription": "Enables the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-set-webview-zoom",
- "markdownDescription": "Enables the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-close",
- "markdownDescription": "Enables the webview_close command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-hide",
- "markdownDescription": "Enables the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-position",
- "markdownDescription": "Enables the webview_position command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-show",
- "markdownDescription": "Enables the webview_show command without any pre-configured scope."
- },
- {
- "description": "Enables the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:allow-webview-size",
- "markdownDescription": "Enables the webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the clear_all_browsing_data command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-clear-all-browsing-data",
- "markdownDescription": "Denies the clear_all_browsing_data command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview",
- "markdownDescription": "Denies the create_webview command without any pre-configured scope."
- },
- {
- "description": "Denies the create_webview_window command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-create-webview-window",
- "markdownDescription": "Denies the create_webview_window command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_webviews command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-get-all-webviews",
- "markdownDescription": "Denies the get_all_webviews command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_devtools command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-internal-toggle-devtools",
- "markdownDescription": "Denies the internal_toggle_devtools command without any pre-configured scope."
- },
- {
- "description": "Denies the print command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-print",
- "markdownDescription": "Denies the print command without any pre-configured scope."
- },
- {
- "description": "Denies the reparent command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-reparent",
- "markdownDescription": "Denies the reparent command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_auto_resize command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-auto-resize",
- "markdownDescription": "Denies the set_webview_auto_resize command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-background-color",
- "markdownDescription": "Denies the set_webview_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-focus",
- "markdownDescription": "Denies the set_webview_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-position",
- "markdownDescription": "Denies the set_webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-size",
- "markdownDescription": "Denies the set_webview_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_webview_zoom command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-set-webview-zoom",
- "markdownDescription": "Denies the set_webview_zoom command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_close command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-close",
- "markdownDescription": "Denies the webview_close command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-hide",
- "markdownDescription": "Denies the webview_hide command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-position",
- "markdownDescription": "Denies the webview_position command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_show command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-show",
- "markdownDescription": "Denies the webview_show command without any pre-configured scope."
- },
- {
- "description": "Denies the webview_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:webview:deny-webview-size",
- "markdownDescription": "Denies the webview_size command without any pre-configured scope."
- },
- {
- "description": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`",
- "type": "string",
- "const": "core:window:default",
- "markdownDescription": "Default permissions for the plugin.\n#### This default permission set includes:\n\n- `allow-get-all-windows`\n- `allow-scale-factor`\n- `allow-inner-position`\n- `allow-outer-position`\n- `allow-inner-size`\n- `allow-outer-size`\n- `allow-is-fullscreen`\n- `allow-is-minimized`\n- `allow-is-maximized`\n- `allow-is-focused`\n- `allow-is-decorated`\n- `allow-is-resizable`\n- `allow-is-maximizable`\n- `allow-is-minimizable`\n- `allow-is-closable`\n- `allow-is-visible`\n- `allow-is-enabled`\n- `allow-title`\n- `allow-current-monitor`\n- `allow-primary-monitor`\n- `allow-monitor-from-point`\n- `allow-available-monitors`\n- `allow-cursor-position`\n- `allow-theme`\n- `allow-is-always-on-top`\n- `allow-internal-toggle-maximize`"
- },
- {
- "description": "Enables the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-available-monitors",
- "markdownDescription": "Enables the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Enables the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-center",
- "markdownDescription": "Enables the center command without any pre-configured scope."
- },
- {
- "description": "Enables the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-close",
- "markdownDescription": "Enables the close command without any pre-configured scope."
- },
- {
- "description": "Enables the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-create",
- "markdownDescription": "Enables the create command without any pre-configured scope."
- },
- {
- "description": "Enables the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-current-monitor",
- "markdownDescription": "Enables the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-cursor-position",
- "markdownDescription": "Enables the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-destroy",
- "markdownDescription": "Enables the destroy command without any pre-configured scope."
- },
- {
- "description": "Enables the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-get-all-windows",
- "markdownDescription": "Enables the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Enables the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-hide",
- "markdownDescription": "Enables the hide command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-position",
- "markdownDescription": "Enables the inner_position command without any pre-configured scope."
- },
- {
- "description": "Enables the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-inner-size",
- "markdownDescription": "Enables the inner_size command without any pre-configured scope."
- },
- {
- "description": "Enables the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-internal-toggle-maximize",
- "markdownDescription": "Enables the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-always-on-top",
- "markdownDescription": "Enables the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-closable",
- "markdownDescription": "Enables the is_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-decorated",
- "markdownDescription": "Enables the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Enables the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-enabled",
- "markdownDescription": "Enables the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-focused",
- "markdownDescription": "Enables the is_focused command without any pre-configured scope."
- },
- {
- "description": "Enables the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-fullscreen",
- "markdownDescription": "Enables the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximizable",
- "markdownDescription": "Enables the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-maximized",
- "markdownDescription": "Enables the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimizable",
- "markdownDescription": "Enables the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-minimized",
- "markdownDescription": "Enables the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Enables the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-resizable",
- "markdownDescription": "Enables the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-is-visible",
- "markdownDescription": "Enables the is_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-maximize",
- "markdownDescription": "Enables the maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-minimize",
- "markdownDescription": "Enables the minimize command without any pre-configured scope."
- },
- {
- "description": "Enables the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-monitor-from-point",
- "markdownDescription": "Enables the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-position",
- "markdownDescription": "Enables the outer_position command without any pre-configured scope."
- },
- {
- "description": "Enables the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-outer-size",
- "markdownDescription": "Enables the outer_size command without any pre-configured scope."
- },
- {
- "description": "Enables the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-primary-monitor",
- "markdownDescription": "Enables the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Enables the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-request-user-attention",
- "markdownDescription": "Enables the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Enables the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-scale-factor",
- "markdownDescription": "Enables the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-bottom",
- "markdownDescription": "Enables the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Enables the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-always-on-top",
- "markdownDescription": "Enables the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Enables the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-background-color",
- "markdownDescription": "Enables the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-count",
- "markdownDescription": "Enables the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Enables the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-badge-label",
- "markdownDescription": "Enables the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Enables the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-closable",
- "markdownDescription": "Enables the set_closable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-content-protected",
- "markdownDescription": "Enables the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-grab",
- "markdownDescription": "Enables the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-icon",
- "markdownDescription": "Enables the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-position",
- "markdownDescription": "Enables the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-cursor-visible",
- "markdownDescription": "Enables the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Enables the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-decorations",
- "markdownDescription": "Enables the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Enables the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-effects",
- "markdownDescription": "Enables the set_effects command without any pre-configured scope."
- },
- {
- "description": "Enables the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-enabled",
- "markdownDescription": "Enables the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focus",
- "markdownDescription": "Enables the set_focus command without any pre-configured scope."
- },
- {
- "description": "Enables the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-focusable",
- "markdownDescription": "Enables the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-fullscreen",
- "markdownDescription": "Enables the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-icon",
- "markdownDescription": "Enables the set_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-ignore-cursor-events",
- "markdownDescription": "Enables the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Enables the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-max-size",
- "markdownDescription": "Enables the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-maximizable",
- "markdownDescription": "Enables the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-min-size",
- "markdownDescription": "Enables the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-minimizable",
- "markdownDescription": "Enables the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-overlay-icon",
- "markdownDescription": "Enables the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Enables the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-position",
- "markdownDescription": "Enables the set_position command without any pre-configured scope."
- },
- {
- "description": "Enables the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-progress-bar",
- "markdownDescription": "Enables the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-resizable",
- "markdownDescription": "Enables the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Enables the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-shadow",
- "markdownDescription": "Enables the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Enables the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-simple-fullscreen",
- "markdownDescription": "Enables the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size",
- "markdownDescription": "Enables the set_size command without any pre-configured scope."
- },
- {
- "description": "Enables the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-size-constraints",
- "markdownDescription": "Enables the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Enables the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-skip-taskbar",
- "markdownDescription": "Enables the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Enables the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-theme",
- "markdownDescription": "Enables the set_theme command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title",
- "markdownDescription": "Enables the set_title command without any pre-configured scope."
- },
- {
- "description": "Enables the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-title-bar-style",
- "markdownDescription": "Enables the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Enables the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-set-visible-on-all-workspaces",
- "markdownDescription": "Enables the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Enables the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-dragging",
- "markdownDescription": "Enables the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-start-resize-dragging",
- "markdownDescription": "Enables the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Enables the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-theme",
- "markdownDescription": "Enables the theme command without any pre-configured scope."
- },
- {
- "description": "Enables the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-title",
- "markdownDescription": "Enables the title command without any pre-configured scope."
- },
- {
- "description": "Enables the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-toggle-maximize",
- "markdownDescription": "Enables the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unmaximize",
- "markdownDescription": "Enables the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Enables the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:allow-unminimize",
- "markdownDescription": "Enables the unminimize command without any pre-configured scope."
- },
- {
- "description": "Denies the available_monitors command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-available-monitors",
- "markdownDescription": "Denies the available_monitors command without any pre-configured scope."
- },
- {
- "description": "Denies the center command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-center",
- "markdownDescription": "Denies the center command without any pre-configured scope."
- },
- {
- "description": "Denies the close command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-close",
- "markdownDescription": "Denies the close command without any pre-configured scope."
- },
- {
- "description": "Denies the create command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-create",
- "markdownDescription": "Denies the create command without any pre-configured scope."
- },
- {
- "description": "Denies the current_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-current-monitor",
- "markdownDescription": "Denies the current_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-cursor-position",
- "markdownDescription": "Denies the cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the destroy command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-destroy",
- "markdownDescription": "Denies the destroy command without any pre-configured scope."
- },
- {
- "description": "Denies the get_all_windows command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-get-all-windows",
- "markdownDescription": "Denies the get_all_windows command without any pre-configured scope."
- },
- {
- "description": "Denies the hide command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-hide",
- "markdownDescription": "Denies the hide command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-position",
- "markdownDescription": "Denies the inner_position command without any pre-configured scope."
- },
- {
- "description": "Denies the inner_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-inner-size",
- "markdownDescription": "Denies the inner_size command without any pre-configured scope."
- },
- {
- "description": "Denies the internal_toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-internal-toggle-maximize",
- "markdownDescription": "Denies the internal_toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the is_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-always-on-top",
- "markdownDescription": "Denies the is_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the is_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-closable",
- "markdownDescription": "Denies the is_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_decorated command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-decorated",
- "markdownDescription": "Denies the is_decorated command without any pre-configured scope."
- },
- {
- "description": "Denies the is_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-enabled",
- "markdownDescription": "Denies the is_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the is_focused command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-focused",
- "markdownDescription": "Denies the is_focused command without any pre-configured scope."
- },
- {
- "description": "Denies the is_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-fullscreen",
- "markdownDescription": "Denies the is_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximizable",
- "markdownDescription": "Denies the is_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_maximized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-maximized",
- "markdownDescription": "Denies the is_maximized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimizable",
- "markdownDescription": "Denies the is_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_minimized command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-minimized",
- "markdownDescription": "Denies the is_minimized command without any pre-configured scope."
- },
- {
- "description": "Denies the is_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-resizable",
- "markdownDescription": "Denies the is_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the is_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-is-visible",
- "markdownDescription": "Denies the is_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-maximize",
- "markdownDescription": "Denies the maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the minimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-minimize",
- "markdownDescription": "Denies the minimize command without any pre-configured scope."
- },
- {
- "description": "Denies the monitor_from_point command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-monitor-from-point",
- "markdownDescription": "Denies the monitor_from_point command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-position",
- "markdownDescription": "Denies the outer_position command without any pre-configured scope."
- },
- {
- "description": "Denies the outer_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-outer-size",
- "markdownDescription": "Denies the outer_size command without any pre-configured scope."
- },
- {
- "description": "Denies the primary_monitor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-primary-monitor",
- "markdownDescription": "Denies the primary_monitor command without any pre-configured scope."
- },
- {
- "description": "Denies the request_user_attention command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-request-user-attention",
- "markdownDescription": "Denies the request_user_attention command without any pre-configured scope."
- },
- {
- "description": "Denies the scale_factor command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-scale-factor",
- "markdownDescription": "Denies the scale_factor command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_bottom command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-bottom",
- "markdownDescription": "Denies the set_always_on_bottom command without any pre-configured scope."
- },
- {
- "description": "Denies the set_always_on_top command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-always-on-top",
- "markdownDescription": "Denies the set_always_on_top command without any pre-configured scope."
- },
- {
- "description": "Denies the set_background_color command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-background-color",
- "markdownDescription": "Denies the set_background_color command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_count command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-count",
- "markdownDescription": "Denies the set_badge_count command without any pre-configured scope."
- },
- {
- "description": "Denies the set_badge_label command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-badge-label",
- "markdownDescription": "Denies the set_badge_label command without any pre-configured scope."
- },
- {
- "description": "Denies the set_closable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-closable",
- "markdownDescription": "Denies the set_closable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_content_protected command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-content-protected",
- "markdownDescription": "Denies the set_content_protected command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_grab command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-grab",
- "markdownDescription": "Denies the set_cursor_grab command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-icon",
- "markdownDescription": "Denies the set_cursor_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-position",
- "markdownDescription": "Denies the set_cursor_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_cursor_visible command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-cursor-visible",
- "markdownDescription": "Denies the set_cursor_visible command without any pre-configured scope."
- },
- {
- "description": "Denies the set_decorations command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-decorations",
- "markdownDescription": "Denies the set_decorations command without any pre-configured scope."
- },
- {
- "description": "Denies the set_effects command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-effects",
- "markdownDescription": "Denies the set_effects command without any pre-configured scope."
- },
- {
- "description": "Denies the set_enabled command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-enabled",
- "markdownDescription": "Denies the set_enabled command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focus command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focus",
- "markdownDescription": "Denies the set_focus command without any pre-configured scope."
- },
- {
- "description": "Denies the set_focusable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-focusable",
- "markdownDescription": "Denies the set_focusable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-fullscreen",
- "markdownDescription": "Denies the set_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-icon",
- "markdownDescription": "Denies the set_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_ignore_cursor_events command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-ignore-cursor-events",
- "markdownDescription": "Denies the set_ignore_cursor_events command without any pre-configured scope."
- },
- {
- "description": "Denies the set_max_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-max-size",
- "markdownDescription": "Denies the set_max_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_maximizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-maximizable",
- "markdownDescription": "Denies the set_maximizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_min_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-min-size",
- "markdownDescription": "Denies the set_min_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_minimizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-minimizable",
- "markdownDescription": "Denies the set_minimizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_overlay_icon command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-overlay-icon",
- "markdownDescription": "Denies the set_overlay_icon command without any pre-configured scope."
- },
- {
- "description": "Denies the set_position command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-position",
- "markdownDescription": "Denies the set_position command without any pre-configured scope."
- },
- {
- "description": "Denies the set_progress_bar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-progress-bar",
- "markdownDescription": "Denies the set_progress_bar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_resizable command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-resizable",
- "markdownDescription": "Denies the set_resizable command without any pre-configured scope."
- },
- {
- "description": "Denies the set_shadow command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-shadow",
- "markdownDescription": "Denies the set_shadow command without any pre-configured scope."
- },
- {
- "description": "Denies the set_simple_fullscreen command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-simple-fullscreen",
- "markdownDescription": "Denies the set_simple_fullscreen command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size",
- "markdownDescription": "Denies the set_size command without any pre-configured scope."
- },
- {
- "description": "Denies the set_size_constraints command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-size-constraints",
- "markdownDescription": "Denies the set_size_constraints command without any pre-configured scope."
- },
- {
- "description": "Denies the set_skip_taskbar command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-skip-taskbar",
- "markdownDescription": "Denies the set_skip_taskbar command without any pre-configured scope."
- },
- {
- "description": "Denies the set_theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-theme",
- "markdownDescription": "Denies the set_theme command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title",
- "markdownDescription": "Denies the set_title command without any pre-configured scope."
- },
- {
- "description": "Denies the set_title_bar_style command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-title-bar-style",
- "markdownDescription": "Denies the set_title_bar_style command without any pre-configured scope."
- },
- {
- "description": "Denies the set_visible_on_all_workspaces command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-set-visible-on-all-workspaces",
- "markdownDescription": "Denies the set_visible_on_all_workspaces command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "Denies the start_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-dragging",
- "markdownDescription": "Denies the start_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the start_resize_dragging command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-start-resize-dragging",
- "markdownDescription": "Denies the start_resize_dragging command without any pre-configured scope."
- },
- {
- "description": "Denies the theme command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-theme",
- "markdownDescription": "Denies the theme command without any pre-configured scope."
- },
- {
- "description": "Denies the title command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-title",
- "markdownDescription": "Denies the title command without any pre-configured scope."
- },
- {
- "description": "Denies the toggle_maximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-toggle-maximize",
- "markdownDescription": "Denies the toggle_maximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unmaximize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unmaximize",
- "markdownDescription": "Denies the unmaximize command without any pre-configured scope."
- },
- {
- "description": "Denies the unminimize command without any pre-configured scope.",
- "type": "string",
- "const": "core:window:deny-unminimize",
- "markdownDescription": "Denies the unminimize command without any pre-configured scope."
- },
- {
- "description": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`",
- "type": "string",
- "const": "dialog:default",
- "markdownDescription": "This permission set configures the types of dialogs\navailable from the dialog plugin.\n\n#### Granted Permissions\n\nAll dialog types are enabled.\n\n\n\n#### This default permission set includes:\n\n- `allow-ask`\n- `allow-confirm`\n- `allow-message`\n- `allow-save`\n- `allow-open`"
- },
- {
- "description": "Enables the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-ask",
- "markdownDescription": "Enables the ask command without any pre-configured scope."
- },
- {
- "description": "Enables the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-confirm",
- "markdownDescription": "Enables the confirm command without any pre-configured scope."
- },
- {
- "description": "Enables the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-message",
- "markdownDescription": "Enables the message command without any pre-configured scope."
- },
- {
- "description": "Enables the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-open",
- "markdownDescription": "Enables the open command without any pre-configured scope."
- },
- {
- "description": "Enables the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:allow-save",
- "markdownDescription": "Enables the save command without any pre-configured scope."
- },
- {
- "description": "Denies the ask command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-ask",
- "markdownDescription": "Denies the ask command without any pre-configured scope."
- },
- {
- "description": "Denies the confirm command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-confirm",
- "markdownDescription": "Denies the confirm command without any pre-configured scope."
- },
- {
- "description": "Denies the message command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-message",
- "markdownDescription": "Denies the message command without any pre-configured scope."
- },
- {
- "description": "Denies the open command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-open",
- "markdownDescription": "Denies the open command without any pre-configured scope."
- },
- {
- "description": "Denies the save command without any pre-configured scope.",
- "type": "string",
- "const": "dialog:deny-save",
- "markdownDescription": "Denies the save command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`",
- "type": "string",
- "const": "http:default",
- "markdownDescription": "This permission set configures what kind of\nfetch operations are available from the http plugin.\n\nThis enables all fetch operations but does not\nallow explicitly any origins to be fetched. This needs to\nbe manually configured before usage.\n\n#### Granted Permissions\n\nAll fetch operations are enabled.\n\n\n#### This default permission set includes:\n\n- `allow-fetch`\n- `allow-fetch-cancel`\n- `allow-fetch-send`\n- `allow-fetch-read-body`\n- `allow-fetch-cancel-body`"
- },
- {
- "description": "Enables the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch",
- "markdownDescription": "Enables the fetch command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel",
- "markdownDescription": "Enables the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-cancel-body",
- "markdownDescription": "Enables the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-read-body",
- "markdownDescription": "Enables the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Enables the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:allow-fetch-send",
- "markdownDescription": "Enables the fetch_send command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch",
- "markdownDescription": "Denies the fetch command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel",
- "markdownDescription": "Denies the fetch_cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_cancel_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-cancel-body",
- "markdownDescription": "Denies the fetch_cancel_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_read_body command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-read-body",
- "markdownDescription": "Denies the fetch_read_body command without any pre-configured scope."
- },
- {
- "description": "Denies the fetch_send command without any pre-configured scope.",
- "type": "string",
- "const": "http:deny-fetch-send",
- "markdownDescription": "Denies the fetch_send command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`",
- "type": "string",
- "const": "notification:default",
- "markdownDescription": "This permission set configures which\nnotification features are by default exposed.\n\n#### Granted Permissions\n\nIt allows all notification related features.\n\n\n#### This default permission set includes:\n\n- `allow-is-permission-granted`\n- `allow-request-permission`\n- `allow-notify`\n- `allow-register-action-types`\n- `allow-register-listener`\n- `allow-cancel`\n- `allow-get-pending`\n- `allow-remove-active`\n- `allow-get-active`\n- `allow-check-permissions`\n- `allow-show`\n- `allow-batch`\n- `allow-list-channels`\n- `allow-delete-channel`\n- `allow-create-channel`\n- `allow-permission-state`"
- },
- {
- "description": "Enables the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-batch",
- "markdownDescription": "Enables the batch command without any pre-configured scope."
- },
- {
- "description": "Enables the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-cancel",
- "markdownDescription": "Enables the cancel command without any pre-configured scope."
- },
- {
- "description": "Enables the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-check-permissions",
- "markdownDescription": "Enables the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Enables the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-create-channel",
- "markdownDescription": "Enables the create_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-delete-channel",
- "markdownDescription": "Enables the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Enables the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-active",
- "markdownDescription": "Enables the get_active command without any pre-configured scope."
- },
- {
- "description": "Enables the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-get-pending",
- "markdownDescription": "Enables the get_pending command without any pre-configured scope."
- },
- {
- "description": "Enables the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-is-permission-granted",
- "markdownDescription": "Enables the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Enables the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-list-channels",
- "markdownDescription": "Enables the list_channels command without any pre-configured scope."
- },
- {
- "description": "Enables the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-notify",
- "markdownDescription": "Enables the notify command without any pre-configured scope."
- },
- {
- "description": "Enables the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-permission-state",
- "markdownDescription": "Enables the permission_state command without any pre-configured scope."
- },
- {
- "description": "Enables the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-action-types",
- "markdownDescription": "Enables the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Enables the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-register-listener",
- "markdownDescription": "Enables the register_listener command without any pre-configured scope."
- },
- {
- "description": "Enables the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-remove-active",
- "markdownDescription": "Enables the remove_active command without any pre-configured scope."
- },
- {
- "description": "Enables the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-request-permission",
- "markdownDescription": "Enables the request_permission command without any pre-configured scope."
- },
- {
- "description": "Enables the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:allow-show",
- "markdownDescription": "Enables the show command without any pre-configured scope."
- },
- {
- "description": "Denies the batch command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-batch",
- "markdownDescription": "Denies the batch command without any pre-configured scope."
- },
- {
- "description": "Denies the cancel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-cancel",
- "markdownDescription": "Denies the cancel command without any pre-configured scope."
- },
- {
- "description": "Denies the check_permissions command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-check-permissions",
- "markdownDescription": "Denies the check_permissions command without any pre-configured scope."
- },
- {
- "description": "Denies the create_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-create-channel",
- "markdownDescription": "Denies the create_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the delete_channel command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-delete-channel",
- "markdownDescription": "Denies the delete_channel command without any pre-configured scope."
- },
- {
- "description": "Denies the get_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-active",
- "markdownDescription": "Denies the get_active command without any pre-configured scope."
- },
- {
- "description": "Denies the get_pending command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-get-pending",
- "markdownDescription": "Denies the get_pending command without any pre-configured scope."
- },
- {
- "description": "Denies the is_permission_granted command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-is-permission-granted",
- "markdownDescription": "Denies the is_permission_granted command without any pre-configured scope."
- },
- {
- "description": "Denies the list_channels command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-list-channels",
- "markdownDescription": "Denies the list_channels command without any pre-configured scope."
- },
- {
- "description": "Denies the notify command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-notify",
- "markdownDescription": "Denies the notify command without any pre-configured scope."
- },
- {
- "description": "Denies the permission_state command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-permission-state",
- "markdownDescription": "Denies the permission_state command without any pre-configured scope."
- },
- {
- "description": "Denies the register_action_types command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-action-types",
- "markdownDescription": "Denies the register_action_types command without any pre-configured scope."
- },
- {
- "description": "Denies the register_listener command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-register-listener",
- "markdownDescription": "Denies the register_listener command without any pre-configured scope."
- },
- {
- "description": "Denies the remove_active command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-remove-active",
- "markdownDescription": "Denies the remove_active command without any pre-configured scope."
- },
- {
- "description": "Denies the request_permission command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-request-permission",
- "markdownDescription": "Denies the request_permission command without any pre-configured scope."
- },
- {
- "description": "Denies the show command without any pre-configured scope.",
- "type": "string",
- "const": "notification:deny-show",
- "markdownDescription": "Denies the show command without any pre-configured scope."
- },
- {
- "description": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`",
- "type": "string",
- "const": "opener:default",
- "markdownDescription": "This permission set allows opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application\nas well as reveal file in directories using default file explorer\n#### This default permission set includes:\n\n- `allow-open-url`\n- `allow-reveal-item-in-dir`\n- `allow-default-urls`"
- },
- {
- "description": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application.",
- "type": "string",
- "const": "opener:allow-default-urls",
- "markdownDescription": "This enables opening `mailto:`, `tel:`, `https://` and `http://` urls using their default application."
- },
- {
- "description": "Enables the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-path",
- "markdownDescription": "Enables the open_path command without any pre-configured scope."
- },
- {
- "description": "Enables the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-open-url",
- "markdownDescription": "Enables the open_url command without any pre-configured scope."
- },
- {
- "description": "Enables the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:allow-reveal-item-in-dir",
- "markdownDescription": "Enables the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "Denies the open_path command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-path",
- "markdownDescription": "Denies the open_path command without any pre-configured scope."
- },
- {
- "description": "Denies the open_url command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-open-url",
- "markdownDescription": "Denies the open_url command without any pre-configured scope."
- },
- {
- "description": "Denies the reveal_item_in_dir command without any pre-configured scope.",
- "type": "string",
- "const": "opener:deny-reveal-item-in-dir",
- "markdownDescription": "Denies the reveal_item_in_dir command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`",
- "type": "string",
- "const": "process:default",
- "markdownDescription": "This permission set configures which\nprocess features are by default exposed.\n\n#### Granted Permissions\n\nThis enables to quit via `allow-exit` and restart via `allow-restart`\nthe application.\n\n#### This default permission set includes:\n\n- `allow-exit`\n- `allow-restart`"
- },
- {
- "description": "Enables the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-exit",
- "markdownDescription": "Enables the exit command without any pre-configured scope."
- },
- {
- "description": "Enables the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:allow-restart",
- "markdownDescription": "Enables the restart command without any pre-configured scope."
- },
- {
- "description": "Denies the exit command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-exit",
- "markdownDescription": "Denies the exit command without any pre-configured scope."
- },
- {
- "description": "Denies the restart command without any pre-configured scope.",
- "type": "string",
- "const": "process:deny-restart",
- "markdownDescription": "Denies the restart command without any pre-configured scope."
- },
- {
- "description": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`",
- "type": "string",
- "const": "updater:default",
- "markdownDescription": "This permission set configures which kind of\nupdater functions are exposed to the frontend.\n\n#### Granted Permissions\n\nThe full workflow from checking for updates to installing them\nis enabled.\n\n\n#### This default permission set includes:\n\n- `allow-check`\n- `allow-download`\n- `allow-install`\n- `allow-download-and-install`"
- },
- {
- "description": "Enables the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-check",
- "markdownDescription": "Enables the check command without any pre-configured scope."
- },
- {
- "description": "Enables the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download",
- "markdownDescription": "Enables the download command without any pre-configured scope."
- },
- {
- "description": "Enables the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-download-and-install",
- "markdownDescription": "Enables the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Enables the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:allow-install",
- "markdownDescription": "Enables the install command without any pre-configured scope."
- },
- {
- "description": "Denies the check command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-check",
- "markdownDescription": "Denies the check command without any pre-configured scope."
- },
- {
- "description": "Denies the download command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download",
- "markdownDescription": "Denies the download command without any pre-configured scope."
- },
- {
- "description": "Denies the download_and_install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-download-and-install",
- "markdownDescription": "Denies the download_and_install command without any pre-configured scope."
- },
- {
- "description": "Denies the install command without any pre-configured scope.",
- "type": "string",
- "const": "updater:deny-install",
- "markdownDescription": "Denies the install command without any pre-configured scope."
- },
- {
- "description": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`",
- "type": "string",
- "const": "window-state:default",
- "markdownDescription": "This permission set configures what kind of\noperations are available from the window state plugin.\n\n#### Granted Permissions\n\nAll operations are enabled by default.\n\n\n#### This default permission set includes:\n\n- `allow-filename`\n- `allow-restore-state`\n- `allow-save-window-state`"
- },
- {
- "description": "Enables the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-filename",
- "markdownDescription": "Enables the filename command without any pre-configured scope."
- },
- {
- "description": "Enables the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-restore-state",
- "markdownDescription": "Enables the restore_state command without any pre-configured scope."
- },
- {
- "description": "Enables the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:allow-save-window-state",
- "markdownDescription": "Enables the save_window_state command without any pre-configured scope."
- },
- {
- "description": "Denies the filename command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-filename",
- "markdownDescription": "Denies the filename command without any pre-configured scope."
- },
- {
- "description": "Denies the restore_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-restore-state",
- "markdownDescription": "Denies the restore_state command without any pre-configured scope."
- },
- {
- "description": "Denies the save_window_state command without any pre-configured scope.",
- "type": "string",
- "const": "window-state:deny-save-window-state",
- "markdownDescription": "Denies the save_window_state command without any pre-configured scope."
- }
- ]
- },
- "Value": {
- "description": "All supported ACL values.",
- "anyOf": [
- {
- "description": "Represents a null JSON value.",
- "type": "null"
- },
- {
- "description": "Represents a [`bool`].",
- "type": "boolean"
- },
- {
- "description": "Represents a valid ACL [`Number`].",
- "allOf": [
- {
- "$ref": "#/definitions/Number"
- }
- ]
- },
- {
- "description": "Represents a [`String`].",
- "type": "string"
- },
- {
- "description": "Represents a list of other [`Value`]s.",
- "type": "array",
- "items": {
- "$ref": "#/definitions/Value"
- }
- },
- {
- "description": "Represents a map of [`String`] keys to [`Value`]s.",
- "type": "object",
- "additionalProperties": {
- "$ref": "#/definitions/Value"
- }
- }
- ]
- },
- "Number": {
- "description": "A valid ACL number.",
- "anyOf": [
- {
- "description": "Represents an [`i64`].",
- "type": "integer",
- "format": "int64"
- },
- {
- "description": "Represents a [`f64`].",
- "type": "number",
- "format": "double"
- }
- ]
- },
- "Target": {
- "description": "Platform target.",
- "oneOf": [
- {
- "description": "MacOS.",
- "type": "string",
- "enum": [
- "macOS"
- ]
- },
- {
- "description": "Windows.",
- "type": "string",
- "enum": [
- "windows"
- ]
- },
- {
- "description": "Linux.",
- "type": "string",
- "enum": [
- "linux"
- ]
- },
- {
- "description": "Android.",
- "type": "string",
- "enum": [
- "android"
- ]
- },
- {
- "description": "iOS.",
- "type": "string",
- "enum": [
- "iOS"
- ]
- }
- ]
- },
- "Application": {
- "description": "Opener scope application.",
- "anyOf": [
- {
- "description": "Open in default application.",
- "type": "null"
- },
- {
- "description": "If true, allow open with any application.",
- "type": "boolean"
- },
- {
- "description": "Allow specific application to open with.",
- "type": "string"
- }
- ]
- }
- }
-}
\ No newline at end of file
diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png
deleted file mode 100644
index 6812f43..0000000
Binary files a/src-tauri/icons/128x128.png and /dev/null differ
diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png
deleted file mode 100644
index 60d77eb..0000000
Binary files a/src-tauri/icons/128x128@2x.png and /dev/null differ
diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png
deleted file mode 100644
index 7e49b32..0000000
Binary files a/src-tauri/icons/32x32.png and /dev/null differ
diff --git a/src-tauri/icons/Square107x107Logo.png b/src-tauri/icons/Square107x107Logo.png
deleted file mode 100644
index b9fe19f..0000000
Binary files a/src-tauri/icons/Square107x107Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png
deleted file mode 100644
index 7671f8d..0000000
Binary files a/src-tauri/icons/Square142x142Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png
deleted file mode 100644
index a54cc3d..0000000
Binary files a/src-tauri/icons/Square150x150Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png
deleted file mode 100644
index a2a6215..0000000
Binary files a/src-tauri/icons/Square284x284Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png
deleted file mode 100644
index 8426fee..0000000
Binary files a/src-tauri/icons/Square30x30Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png
deleted file mode 100644
index 6807a2f..0000000
Binary files a/src-tauri/icons/Square310x310Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square44x44Logo.png b/src-tauri/icons/Square44x44Logo.png
deleted file mode 100644
index 32ad97b..0000000
Binary files a/src-tauri/icons/Square44x44Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square71x71Logo.png b/src-tauri/icons/Square71x71Logo.png
deleted file mode 100644
index 0ccb652..0000000
Binary files a/src-tauri/icons/Square71x71Logo.png and /dev/null differ
diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png
deleted file mode 100644
index 3aed433..0000000
Binary files a/src-tauri/icons/Square89x89Logo.png and /dev/null differ
diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png
deleted file mode 100644
index b1f9929..0000000
Binary files a/src-tauri/icons/StoreLogo.png and /dev/null differ
diff --git a/src-tauri/icons/icon.ico.png b/src-tauri/icons/icon.ico.png
deleted file mode 100644
index 60d77eb..0000000
Binary files a/src-tauri/icons/icon.ico.png and /dev/null differ
diff --git a/src-tauri/src/background_sync.rs b/src-tauri/src/background_sync.rs
deleted file mode 100644
index 398bd34..0000000
--- a/src-tauri/src/background_sync.rs
+++ /dev/null
@@ -1,133 +0,0 @@
-//! Background sync module for Matrix client
-//!
-//! This module provides native Rust-based Matrix sync that runs independently
-//! of the WebView, allowing notifications to work even when the app is backgrounded.
-
-use std::sync::Arc;
-use tokio::sync::{Mutex, RwLock};
-use serde::{Deserialize, Serialize};
-
-/// Credentials needed to connect to Matrix homeserver
-#[derive(Debug, Clone, Serialize, Deserialize)]
-pub struct MatrixCredentials {
- pub homeserver_url: String,
- pub user_id: String,
- pub access_token: String,
- pub device_id: String,
-}
-
-/// State of the background sync
-#[derive(Debug, Clone, PartialEq, Eq)]
-pub enum SyncState {
- Stopped,
- Starting,
- Running,
- Error(String),
-}
-
-/// Background sync manager that handles Matrix sync in native Rust
-pub struct BackgroundSyncManager {
- credentials: RwLock