From 6ffd740366219f41ba38b8b60b72c26f9ed1861c Mon Sep 17 00:00:00 2001 From: Dmitrii Creed Date: Wed, 11 Feb 2026 20:55:21 +0400 Subject: [PATCH 1/6] Replace IPFS with Nix Signed-off-by: Dmitrii Creed --- README.md | 6 +- labs/lab18.md | 1462 ++++++++++++++++++++++++++++++++--------- labs/lab18/index.html | 927 -------------------------- 3 files changed, 1172 insertions(+), 1223 deletions(-) delete mode 100644 labs/lab18/index.html diff --git a/README.md b/README.md index 371d51f456..a66ee3dc20 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Master **production-grade DevOps practices** through hands-on labs. Build, conta | 16 | 16 | Cluster Monitoring | Kube-Prometheus, Init Containers | | — | **Exam Alternative Labs** | | | | 17 | 17 | Edge Deployment | Fly.io, Global Distribution | -| 18 | 18 | Decentralized Storage | 4EVERLAND, IPFS, Web3 | +| 18 | 18 | Reproducible Builds | Nix, Deterministic Builds, Flakes | --- @@ -61,7 +61,7 @@ Don't want to take the exam? Complete **both** bonus labs: | Lab | Topic | Points | |-----|-------|--------| | **Lab 17** | Fly.io Edge Deployment | 20 pts | -| **Lab 18** | 4EVERLAND & IPFS | 20 pts | +| **Lab 18** | Reproducible Builds with Nix | 20 pts | **Requirements:** - Complete both labs (17 + 18 = 40 pts, replaces exam) @@ -142,7 +142,7 @@ Each lab is worth **10 points** (main tasks) + **2.5 points** (bonus). - StatefulSets, Monitoring **Exam Alternative (Labs 17-18)** -- Fly.io, 4EVERLAND/IPFS +- Fly.io, Nix Reproducible Builds diff --git a/labs/lab18.md b/labs/lab18.md index 3491394659..864df70baa 100644 --- a/labs/lab18.md +++ b/labs/lab18.md @@ -1,430 +1,1306 @@ -# Lab 18 — Decentralized Hosting with 4EVERLAND & IPFS +# Lab 18 — Reproducible Builds with Nix ![difficulty](https://img.shields.io/badge/difficulty-intermediate-yellow) -![topic](https://img.shields.io/badge/topic-Web3%20Infrastructure-blue) -![points](https://img.shields.io/badge/points-20-orange) -![type](https://img.shields.io/badge/type-Exam%20Alternative-purple) +![topic](https://img.shields.io/badge/topic-Nix%20%26%20Reproducibility-blue) +![points](https://img.shields.io/badge/points-12-orange) -> Deploy content to the decentralized web using IPFS and 4EVERLAND for permanent, censorship-resistant hosting. +> **Goal:** Learn to create truly reproducible builds using Nix, eliminating "works on my machine" problems and achieving bit-for-bit reproducibility. +> **Deliverable:** A PR/MR from `feature/lab18` to the course repo with `labs/submission18.md` containing build artifacts, hash comparisons, Nix expressions, and analysis. Submit the PR/MR link via Moodle. -## Overview - -The decentralized web (Web3) offers an alternative to traditional hosting where content is stored across a distributed network rather than centralized servers. IPFS (InterPlanetary File System) is the foundation, and 4EVERLAND provides a user-friendly gateway to this ecosystem. +--- -**This is an Exam Alternative Lab** — Complete both Lab 17 and Lab 18 to replace the final exam. +## Overview -**What You'll Learn:** -- IPFS fundamentals and content addressing -- Decentralized storage concepts -- Pinning services and persistence -- 4EVERLAND hosting platform -- Centralized vs decentralized trade-offs +In this lab you will practice: +- Installing Nix and understanding the Nix philosophy +- Writing Nix derivations to build software reproducibly +- Creating reproducible Docker images using Nix +- Using Nix Flakes for modern, declarative dependency management +- **Comparing Nix with your previous work from Labs 1-2** -**Prerequisites:** Basic understanding of web hosting, completed Docker lab +**Why Nix?** Traditional build tools (Docker, npm, pip, etc.) claim to be reproducible, but they're not: +- `Dockerfile` with `apt-get install nodejs` gets different versions over time +- `pip install -r requirements.txt` without hash pinning can vary +- Docker builds include timestamps and vary across machines -**Tech Stack:** IPFS | 4EVERLAND | Docker | Content Addressing +**Nix solves this:** Every build is isolated in a sandbox with exact dependencies. The same Nix expression produces **identical binaries** on any machine, forever. -**Provided Files:** -- `labs/lab18/index.html` — A beautiful course landing page ready to deploy +**Building on Your Work:** Throughout this lab, you'll revisit your DevOps Info Service from Lab 1 and compare: +- **Lab 1**: `requirements.txt` vs Nix derivations for dependency management +- **Lab 2**: Traditional `Dockerfile` vs Nix `dockerTools` for containerization +- **Lab 10** *(bonus task)*: Helm `values.yaml` version pinning vs Nix Flakes locking --- -## Exam Alternative Requirements +## Prerequisites -| Requirement | Details | -|-------------|---------| -| **Deadline** | 1 week before exam date | -| **Minimum Score** | 16/20 points | -| **Must Complete** | Both Lab 17 AND Lab 18 | -| **Total Points** | 40 pts (replaces 40 pt exam) | +- **Required:** Completed Labs 1-16 (all required course labs) +- **Key Labs Referenced:** + - Lab 1: Python DevOps Info Service (you'll rebuild with Nix) + - Lab 2: Docker containerization (you'll compare with Nix dockerTools) + - Lab 10: Helm charts (you'll compare version pinning with Nix Flakes) +- Linux, macOS, or WSL2 +- Basic understanding of package managers +- Your `app_python/` directory from Lab 1-2 available --- ## Tasks -### Task 1 — IPFS Fundamentals (3 pts) +### Task 1 — Build Reproducible Python App (Revisiting Lab 1) (6 pts) + +**Objective:** Use Nix to build your DevOps Info Service from Lab 1 and compare Nix's reproducibility guarantees with traditional `pip install -r requirements.txt`. + +**Why This Matters:** You've already built this app in Lab 1 using `requirements.txt`. Now you'll see how Nix provides **true reproducibility** that `pip` cannot guarantee - the same derivation produces bit-for-bit identical results across different machines and times. + +#### 1.1: Install Nix Package Manager + +> ⚠️ **Important Installation Requirements:** +> - Requires sudo/admin access on your machine +> - Creates `/nix` directory at system root (Linux/macOS) or `C:\nix` (Windows WSL) +> - Modifies shell configuration files (`~/.bashrc`, `~/.zshrc`, etc.) +> - Installation size: ~500MB-1GB for base system +> - **Cannot be installed in home directory only** +> - Uninstallation requires manual cleanup (see [official guide](https://nixos.org/manual/nix/stable/installation/uninstall.html)) + +1. **Install Nix using the Determinate Systems installer (recommended):** + + ```bash + curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install + ``` + + > **Why Determinate Nix?** It enables flakes by default and provides better defaults for modern Nix usage. + +
+ 🐧 Alternative: Official Nix installer + + ```bash + sh <(curl -L https://nixos.org/nix/install) --daemon + ``` + + Then enable flakes by adding to `~/.config/nix/nix.conf`: + ``` + experimental-features = nix-command flakes + ``` + +
+ +2. **Verify Installation:** + + ```bash + nix --version + ``` + + You should see Nix 2.x or higher. + + **Restart your terminal** after installation to load Nix into your PATH. + +3. **Test Basic Nix Usage:** + + ```bash + # Try running a program without installing it + nix run nixpkgs#hello + ``` + + This downloads and runs `hello` without installing it permanently. + +#### 1.2: Prepare Your Python Application + +1. **Copy your Lab 1 app to the lab18 directory:** + + ```bash + mkdir -p labs/lab18/app_python + cp -r app_python/* labs/lab18/app_python/ + cd labs/lab18/app_python + ``` + + You should have: + - `app.py` - Your DevOps Info Service + - `requirements.txt` - Your Python dependencies (Flask/FastAPI) + +2. **Review your traditional workflow (Lab 1):** + + Recall how you built this in Lab 1: + ```bash + python -m venv venv + source venv/bin/activate + pip install -r requirements.txt + python app.py + ``` + + **Problems with this approach:** + - Different Python versions on different machines + - `pip install` without hashes can pull different package versions + - Virtual environment is not portable + - No guarantee of reproducibility over time + +#### 1.3: Write a Nix Derivation for Your Python App + +1. **Create a Nix derivation:** + + Create `default.nix` in `labs/lab18/app_python/`: + +
+ 📚 Where to learn Nix Python derivation syntax + + - [nix.dev - Python](https://nix.dev/tutorials/nixos/building-and-running-python-apps) + - [nixpkgs Python documentation](https://nixos.org/manual/nixpkgs/stable/#python) + - [Nix Pills - Chapter 6: Our First Derivation](https://nixos.org/guides/nix-pills/our-first-derivation.html) + + **Key concepts you need:** + - `python3Packages.buildPythonApplication` - Function to build Python apps + - `propagatedBuildInputs` - Python dependencies (Flask/FastAPI) + - `makeWrapper` - Wraps Python script with interpreter + - `pname` - Package name + - `version` - Package version + - `src` - Source code location (use `./.` for current directory) + - `format = "other"` - For apps without setup.py + + **Translating requirements.txt to Nix:** + Your Lab 1 `requirements.txt` might have: + ``` + Flask==3.1.0 + Werkzeug>=2.0 + click + ``` + + In Nix, you reference packages from nixpkgs (not exact PyPI versions): + - `Flask==3.1.0` → `pkgs.python3Packages.flask` + - `fastapi==0.115.0` → `pkgs.python3Packages.fastapi` + - `uvicorn[standard]` → `pkgs.python3Packages.uvicorn` + + **Note:** Nix uses versions from the pinned nixpkgs, not PyPI directly. This is intentional for reproducibility. + + **Example structure (Flask):** + ```nix + { pkgs ? import {} }: + + pkgs.python3Packages.buildPythonApplication { + pname = "devops-info-service"; + version = "1.0.0"; + src = ./.; + + format = "other"; + + propagatedBuildInputs = with pkgs.python3Packages; [ + flask + ]; + + nativeBuildInputs = [ pkgs.makeWrapper ]; + + installPhase = '' + mkdir -p $out/bin + cp app.py $out/bin/devops-info-service + + # Wrap with Python interpreter so it can execute + wrapProgram $out/bin/devops-info-service \ + --prefix PYTHONPATH : "$PYTHONPATH" + ''; + } + ``` + + **Example for FastAPI:** + ```nix + propagatedBuildInputs = with pkgs.python3Packages; [ + fastapi + uvicorn + ]; + ``` + + **Hint:** If you get "command not found" errors, make sure you're using `makeWrapper` in the installPhase. + +
+ +2. **Build your application with Nix:** + + ```bash + nix-build + ``` + + This creates a `result` symlink pointing to the Nix store path. + +3. **Run the Nix-built application:** + + ```bash + ./result/bin/devops-info-service + ``` + + Visit `http://localhost:5000` (or your configured port) - it should work identically to your Lab 1 version! + +#### 1.4: Prove Reproducibility (Compare with Lab 1 approach) + +1. **Record the Nix store path:** + + ```bash + readlink result + ``` + + Note the store path (e.g., `/nix/store/abc123-devops-info-service-1.0.0/`) + +2. **Build again and compare:** + + ```bash + rm result + nix-build + readlink result + ``` + + **Observation:** The store path is **identical**! But wait - did Nix rebuild it or reuse it? + + **Answer: Nix reused the cached build!** Same inputs = same hash = reuse existing store path. + +3. **Force an actual rebuild to prove reproducibility:** + + ```bash + # First, find your build's store path + STORE_PATH=$(readlink result) + echo "Original store path: $STORE_PATH" + + # Delete it from the Nix store + nix-store --delete $STORE_PATH + + # Now rebuild (this forces actual compilation) + rm result + nix-build + readlink result + ``` + + **Observation:** Same store path returns! Nix rebuilt it from scratch and got the exact same hash. -**Objective:** Understand IPFS concepts and run a local node. +3. **Compare with traditional pip approach:** -**Requirements:** + **Demonstrate pip's limitations:** -1. **Study IPFS Concepts** - - Content addressing vs location addressing - - CIDs (Content Identifiers) - - Pinning and garbage collection - - IPFS gateways + ```bash + # Test 1: Install without version pins (shows immediate non-reproducibility) + echo "flask" > requirements-unpinned.txt # No version specified -2. **Run Local IPFS Node** - - Use Docker to run IPFS node - - Access the Web UI - - Understand node configuration + python -m venv venv1 + source venv1/bin/activate + pip install -r requirements-unpinned.txt + pip freeze | grep -i flask > freeze1.txt + deactivate -3. **Add Content Locally** - - Add a file to your local IPFS node - - Retrieve the CID - - Access via local gateway + # Simulate time passing: clear pip cache + pip cache purge 2>/dev/null || rm -rf ~/.cache/pip + + python -m venv venv2 + source venv2/bin/activate + pip install -r requirements-unpinned.txt + pip freeze | grep -i flask > freeze2.txt + deactivate + + # Compare Flask versions + diff freeze1.txt freeze2.txt + ``` + + **Observation:** + - Without version pins, you get whatever's latest + - **Even with pinned versions** in requirements.txt, you only pin direct dependencies + - Transitive dependencies (dependencies of your dependencies) can still drift + - Over weeks/months, `pip install -r requirements.txt` can produce different environments + + **The fundamental problem:** + ``` + Lab 1 approach: requirements.txt pins what YOU install + Problem: Doesn't pin what FLASK installs (Werkzeug, Click, etc.) + Result: Different machines = different transitive dependency versions + + Nix approach: Pins EVERYTHING in the entire dependency tree + Result: Bit-for-bit identical on all machines, forever + ``` + +4. **Understand Nix's caching behavior:** + + **Key insight:** Nix uses content-addressable storage: + ``` + Store path format: /nix/store/-- + Example: /nix/store/abc123xyz-devops-info-service-1.0.0 + + The is computed from: + - All source code + - All dependencies (transitively!) + - Build instructions + - Compiler flags + - Everything needed to reproduce the build + + Same inputs → Same hash → Reuse existing build (cache hit) + Different inputs → Different hash → New build required + ``` + +5. **Nix's guarantee:** + + ```bash + # Hash the entire Nix output + nix-hash --type sha256 result + ``` + + This hash will be **identical** on any machine, any time, forever - if the inputs don't change. + + This is why Nix can safely share binary caches (cache.nixos.org) - the hash proves the content! + +**📊 Comparison Table - Lab 1 vs Lab 18:** + +| Aspect | Lab 1 (pip + venv) | Lab 18 (Nix) | +|--------|-------------------|--------------| +| Python version | System-dependent | Pinned in derivation | +| Dependency resolution | Runtime (`pip install`) | Build-time (pure) | +| Reproducibility | Approximate (with lockfiles) | Bit-for-bit identical | +| Portability | Requires same OS + Python | Works anywhere Nix runs | +| Binary cache | No | Yes (cache.nixos.org) | +| Isolation | Virtual environment | Sandboxed build | +| Store path | N/A | Content-addressable hash | + +#### 1.5: Optional - Go Application (If you completed Lab 1 Bonus)
-💡 Hints +🎁 For students who built the Go version in Lab 1 Bonus -**IPFS Concepts:** -- **Content Addressing:** Files identified by hash of content, not location -- **CID:** Unique identifier derived from content hash (e.g., `QmXxx...` or `bafyxxx...`) -- **Pinning:** Marking content to keep it (prevent garbage collection) -- **Gateway:** HTTP interface to IPFS network +If you implemented the compiled language bonus in Lab 1, you can also build it with Nix: -**Run IPFS with Docker:** -```bash -docker run -d --name ipfs \ - -p 4001:4001 \ - -p 8080:8080 \ - -p 5001:5001 \ - ipfs/kubo:latest - -# Web UI at http://localhost:5001/webui -# Gateway at http://localhost:8080 -``` +1. **Copy your Go app:** + ```bash + mkdir -p labs/lab18/app_go + cp -r app_go/* labs/lab18/app_go/ + cd labs/lab18/app_go + ``` -**Add Content:** -```bash -# Create test file -echo "Hello IPFS from DevOps course!" > hello.txt +2. **Create `default.nix` for Go:** + ```nix + { pkgs ? import {} }: -# Add to IPFS -docker exec ipfs ipfs add /hello.txt -# Returns: added QmXxx... hello.txt + pkgs.buildGoModule { + pname = "devops-info-service-go"; + version = "1.0.0"; + src = ./.; -# Access via gateway -curl http://localhost:8080/ipfs/QmXxx... -``` + vendorHash = null; # or use pkgs.lib.fakeHash if you have dependencies + } + ``` -**Resources:** -- [IPFS Docs](https://docs.ipfs.tech/) -- [IPFS Concepts](https://docs.ipfs.tech/concepts/) +3. **Build and compare binary size:** + ```bash + nix-build + ls -lh result/bin/ + ``` + + Compare this with your multi-stage Docker build from Lab 2 Bonus!
+In `labs/submission18.md`, document: +- Installation steps and verification output +- Your `default.nix` file with explanations of each field +- Store path from multiple builds (prove they're identical) +- Comparison table: `pip install` vs Nix derivation +- Why does `requirements.txt` provide weaker guarantees than Nix? +- Screenshots showing your Lab 1 app running from Nix-built version +- Explanation of the Nix store path format and what each part means +- **Reflection:** How would Nix have helped in Lab 1 if you had used it from the start? + --- -### Task 2 — 4EVERLAND Setup (3 pts) +### Task 2 — Reproducible Docker Images (Revisiting Lab 2) (4 pts) + +**Objective:** Use Nix's `dockerTools` to containerize your DevOps Info Service and compare with your traditional Dockerfile from Lab 2. + +**Why This Matters:** In Lab 2, you created a `Dockerfile` that built your Python app. While Docker provides isolation, it's **not reproducible**: +- Build timestamps differ between builds +- Base image tags like `python:3.13-slim` can point to different versions over time +- `apt-get` installs latest packages, which change +- Two builds of the same Dockerfile can produce different image hashes + +Nix's `dockerTools` creates **truly reproducible** container images with content-addressable layers. + +#### 2.1: Review Your Lab 2 Dockerfile + +1. **Find your Dockerfile from Lab 2:** + + ```bash + # From repository root directory + cat app_python/Dockerfile + ``` + + You likely have something like: + ```dockerfile + FROM python:3.13-slim + RUN useradd -m appuser + WORKDIR /app + COPY requirements.txt . + RUN pip install -r requirements.txt + COPY app.py . + USER appuser + EXPOSE 5000 + CMD ["python", "app.py"] + ``` + +
+ 💡 Don't have your Lab 2 Dockerfile? + + If you lost your Lab 2 work, create a minimal Dockerfile now: + + ```dockerfile + FROM python:3.13-slim + WORKDIR /app + COPY requirements.txt app.py ./ + RUN pip install -r requirements.txt + EXPOSE 5000 + CMD ["python", "app.py"] + ``` + + Save as `app_python/Dockerfile`. + +
+ +2. **Test Lab 2 Dockerfile reproducibility:** + + ```bash + # Make sure you're in repository root + cd ~/path/to/DevOps-Core-Course # Adjust to your path + + # Build from app_python directory + docker build -t lab2-app:v1 ./app_python + docker inspect lab2-app:v1 | grep Created + + # Wait a few seconds, then rebuild + sleep 5 + docker build -t lab2-app:v2 ./app_python + docker inspect lab2-app:v2 | grep Created + ``` + + **Observation:** Different creation timestamps! The image hashes are different even though the content is identical. + +#### 2.2: Build Docker Image with Nix + +1. **Create a Nix Docker image using `dockerTools`:** + + Create `labs/lab18/app_python/docker.nix`: + +
+ 📚 Where to learn about dockerTools + + - [nix.dev - Building Docker images](https://nix.dev/tutorials/nixos/building-and-running-docker-images.html) + - [nixpkgs dockerTools documentation](https://ryantm.github.io/nixpkgs/builders/images/dockertools/) + + **Key concepts:** + - `pkgs.dockerTools.buildLayeredImage` - Builds efficient layered images + - `name` - Image name + - `tag` - Image tag (optional, defaults to latest) + - `contents` - Packages/derivations to include in the image + - `config.Cmd` - Default command to run + - `config.ExposedPorts` - Ports to expose + + **Critical for reproducibility:** + - **DO NOT** use `created = "now"` - this breaks reproducibility! + - **DO** use `created = "1970-01-01T00:00:01Z"` for reproducible builds + - **DO** use exact derivations (from Task 1) instead of arbitrary packages + + **Example structure:** + ```nix + { pkgs ? import {} }: + + let + app = import ./default.nix { inherit pkgs; }; + in + pkgs.dockerTools.buildLayeredImage { + name = "devops-info-service-nix"; + tag = "1.0.0"; + + contents = [ app ]; + + config = { + Cmd = [ "${app}/bin/devops-info-service" ]; + ExposedPorts = { + "5000/tcp" = {}; + }; + }; + + created = "1970-01-01T00:00:01Z"; # Reproducible timestamp + } + ``` + +
+ +2. **Build the Nix Docker image:** + + ```bash + cd labs/lab18/app_python + nix-build docker.nix + ``` + + This creates a tarball in `result`. + +3. **Load into Docker:** + + ```bash + docker load < result + ``` + + Output shows the image was loaded with a specific tag. + +4. **Run both containers side-by-side:** + + ```bash + # First, clean up any existing containers to avoid port conflicts + docker stop lab2-container nix-container 2>/dev/null || true + docker rm lab2-container nix-container 2>/dev/null || true + + # Run Lab 2 traditional Docker image on port 5000 + docker run -d -p 5000:5000 --name lab2-container lab2-app:v1 + + # Run Nix-built image on port 5001 (mapped to container's 5000) + docker run -d -p 5001:5000 --name nix-container devops-info-service-nix:1.0.0 + ``` + + Test both: + ```bash + curl http://localhost:5000/health # Lab 2 version + curl http://localhost:5001/health # Nix version + ``` + + Both should work identically! + + **Troubleshooting:** + - If port 5000 is in use: `lsof -i :5000` to find the process + - Container won't start: Check logs with `docker logs lab2-container` + - Permission denied: Make sure Docker daemon is running + +#### 2.3: Compare Reproducibility - Lab 2 vs Lab 18 + +**Test 1: Rebuild Reproducibility** -**Objective:** Set up 4EVERLAND account and explore the platform. +1. **Rebuild Nix image multiple times:** -**Requirements:** + ```bash + rm result + nix-build docker.nix + sha256sum result -1. **Create Account** - - Sign up at [4everland.org](https://www.4everland.org/) - - Connect with GitHub or wallet - - Explore dashboard + rm result + nix-build docker.nix + sha256sum result + ``` -2. **Understand Services** - - Hosting: Deploy websites/apps - - Storage: IPFS pinning - - Gateway: Access IPFS content + **Observation:** Identical SHA256 hashes! The tarball is bit-for-bit identical. -3. **Explore Free Tier** - - Understand limits and capabilities - - Review pricing for reference +2. **Compare with Lab 2 Dockerfile:** + + ```bash + # Make sure you're in repository root + # Build Lab 2 Dockerfile twice and compare saved image hashes + + docker build -t lab2-app:test1 ./app_python/ + docker save lab2-app:test1 | sha256sum + + sleep 2 # Wait a moment + + docker build -t lab2-app:test2 ./app_python/ + docker save lab2-app:test2 | sha256sum + ``` + + **Observation:** Different hashes! Even though the Dockerfile and source are identical, Lab 2's approach is not reproducible. + +**Test 2: Image Size Comparison** + +```bash +docker images | grep -E "lab2-app|devops-info-service-nix" +``` + +Create a comparison table: + +| Metric | Lab 2 Dockerfile | Lab 18 Nix dockerTools | +|--------|------------------|------------------------| +| Image size | ~150MB (with python:3.13-slim) | ~50-80MB (minimal closure) | +| Reproducibility | ❌ Different hashes each build | ✅ Identical hashes | +| Build caching | Layer-based (timestamp-dependent) | Content-addressable | +| Base image dependency | Yes (python:3.13-slim) | No base image needed | + +**Test 3: Layer Analysis** + +1. **Examine Lab 2 image layers:** + + ```bash + docker history lab2-app:v1 + ``` + + Note the timestamps in the "CREATED" column - they vary between builds! + +2. **Examine Nix image layers:** + + ```bash + docker history devops-info-service-nix:1.0.0 + ``` + + Nix uses content-addressable layers - same content = same layer hash. + +#### 2.4: Advanced Comparison - Multi-Stage Builds
-💡 Hints +🎁 Optional: Compare with Lab 2 Bonus Multi-Stage Build -**4EVERLAND Services:** -- **Hosting:** Deploy from Git repos, automatic builds -- **Bucket (Storage):** Upload files, get IPFS CIDs -- **Gateway:** Access content via 4everland.link +If you completed the Lab 2 bonus with Go and multi-stage builds, you can compare: -**Dashboard:** -- Projects: Your deployed sites -- Bucket: File storage -- Domains: Custom domain setup +**Your Lab 2 multi-stage Dockerfile:** +```dockerfile +FROM golang:1.22 AS builder +COPY . . +RUN go build -o app main.go -**Free Tier Includes:** -- 100 deployments/month -- 5GB storage -- 100GB bandwidth +FROM alpine:latest +COPY --from=builder /app/app /app +ENTRYPOINT ["/app"] +``` + +**Problems:** +- `golang:1.22` and `alpine:latest` change over time +- Build includes timestamps +- Not reproducible across machines + +**Nix equivalent (fully reproducible):** +```nix +pkgs.dockerTools.buildLayeredImage { + name = "go-app-nix"; + contents = [ goApp ]; # Built in Task 1.5 + config.Cmd = [ "${goApp}/bin/go-app" ]; + created = "1970-01-01T00:00:01Z"; +} +``` -**Resources:** -- [4EVERLAND Docs](https://docs.4everland.org/) +Same result size, but **fully reproducible**!
+**📊 Comprehensive Comparison - Lab 2 vs Lab 18:** + +| Aspect | Lab 2 Traditional Dockerfile | Lab 18 Nix dockerTools | +|--------|------------------------------|------------------------| +| **Base images** | `python:3.13-slim` (changes over time) | No base image (pure derivations) | +| **Timestamps** | Different on each build | Fixed or deterministic | +| **Package installation** | `pip install` at build time | Nix store paths (immutable) | +| **Reproducibility** | ❌ Same Dockerfile → Different images | ✅ Same docker.nix → Identical images | +| **Caching** | Layer-based (breaks on timestamp) | Content-addressable (perfect caching) | +| **Image size** | ~150MB+ with full base image | ~50-80MB with minimal closure | +| **Portability** | Requires Docker | Requires Nix (then loads to Docker) | +| **Security** | Base image vulnerabilities | Minimal dependencies, easier auditing | +| **Lab 2 Learning** | Best practices, non-root user | Build on Lab 2 knowledge | + +In `labs/submission18.md`, document: +- Your `docker.nix` file with explanations of each field +- Side-by-side comparison: Lab 2 Dockerfile vs Nix docker.nix +- SHA256 hash comparison proving Nix reproducibility +- Image size comparison table with analysis +- `docker history` output for both approaches +- Screenshots showing both containers running simultaneously +- **Analysis:** Why can't traditional Dockerfiles achieve bit-for-bit reproducibility? +- **Reflection:** If you could redo Lab 2 with Nix, what would you do differently? +- Practical scenarios where Nix's reproducibility matters (CI/CD, security audits, rollbacks) + --- -### Task 3 — Deploy Static Content (4 pts) +### Bonus Task — Modern Nix with Flakes (Includes Lab 10 Comparison) (2 pts) + +**Objective:** Modernize your Nix expressions using Flakes for better dependency locking and reproducibility. Compare Nix Flakes with Helm's version pinning approach from Lab 10. + +**Why This Matters:** Nix Flakes are the modern standard (2026) for Nix projects. They provide: +- Automatic dependency locking via `flake.lock` +- Standardized project structure +- Better reproducibility across time +- Easier sharing and collaboration + +**Comparison with Lab 10:** In Lab 10 (Helm), you used `values.yaml` to pin image versions. Flakes take this concept further by locking **all** dependencies, not just container images. + +#### Bonus.1: Convert to Flake + +1. **Create a `flake.nix`:** + + Create `labs/lab18/app_python/flake.nix`: + +
+ 📚 Where to learn about Flakes + + - [Zero to Nix - Flakes](https://zero-to-nix.com/concepts/flakes) + - [NixOS Wiki - Flakes](https://wiki.nixos.org/wiki/Flakes) + - [Nix Flakes explained](https://nix.dev/concepts/flakes) + + **Key structure:** + ```nix + { + description = "DevOps Info Service - Reproducible Build"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; # Pin exact nixpkgs version + }; + + outputs = { self, nixpkgs }: + let + # ⚠️ Architecture note: This example uses x86_64-linux + # - Works on: Linux (x86_64), WSL2 + # - Mac Intel: Change to "x86_64-darwin" + # - Mac M1/M2/M3: Change to "aarch64-darwin" + # - For multi-system support, see: https://github.com/numtide/flake-utils + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in + { + packages.${system} = { + default = import ./default.nix { inherit pkgs; }; + dockerImage = import ./docker.nix { inherit pkgs; }; + }; + + # Development shell with all dependencies + devShells.${system}.default = pkgs.mkShell { + buildInputs = with pkgs; [ + python313 + python313Packages.flask # or fastapi + ]; + }; + }; + } + ``` + + **Platform-specific adjustments:** + - **Linux/WSL2**: Use `system = "x86_64-linux";` (shown above) + - **Mac Intel**: Use `system = "x86_64-darwin";` + - **Mac ARM (M1/M2/M3)**: Use `system = "aarch64-darwin";` + + **Hint:** Use `nix flake init` to generate a template, then modify it. + +
+ +2. **Generate lock file:** + + ```bash + cd labs/lab18/app_python + nix flake update + ``` + + This creates `flake.lock` with pinned dependencies. + +3. **Build using flake:** + + ```bash + nix build # Builds default package + nix build .#dockerImage # Builds Docker image + ./result/bin/devops-info-service # Run the app + ``` + +#### Bonus.2: Compare with Lab 10 Helm Values + +**Lab 10 Helm approach to version pinning:** + +In `k8s/mychart/values.yaml`: +```yaml +image: + repository: yourusername/devops-info-service + tag: "1.0.0" # Pin specific version + pullPolicy: IfNotPresent + +# Environment-specific overrides +# values-prod.yaml: +image: + tag: "1.0.0" # Explicit version for prod +``` + +**Limitations:** +- Only pins the container image tag +- Doesn't lock Python dependencies inside the image +- Doesn't lock Helm chart dependencies +- Image tag `1.0.0` could point to different content if rebuilt + +**Nix Flakes approach:** + +`flake.lock` locks **everything**: +```json +{ + "nodes": { + "nixpkgs": { + "locked": { + "lastModified": 1704321342, + "narHash": "sha256-abc123...", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "52e3e80afff4b16ccb7c52e9f0f5220552f03d04", + "type": "github" + } + } + } +} +``` + +This locks: +- ✅ Exact nixpkgs revision (all 80,000+ packages) +- ✅ Python version and all dependencies +- ✅ Build tools and compilers +- ✅ Everything in the closure + +**Combined Approach:** + +You can use both together! +1. Build reproducible image with Nix: `nix build .#dockerImage` +2. Load to Docker and tag: `docker load < result` +3. Reference in Helm with content hash: `image.tag: "sha256-abc123..."` + +This gives you: +- Helm's declarative Kubernetes deployment +- Nix's perfect reproducibility for the image + +Create a comparison table in your submission. + +#### Bonus.3: Test Cross-Machine Reproducibility + +1. **Commit your flake to git:** + + ```bash + git add flake.nix flake.lock default.nix docker.nix + git commit -m "feat: add Nix flake for reproducible builds" + git push + ``` + +2. **Test on another machine or ask a classmate:** + + ```bash + # Build directly from GitHub + nix build github:yourusername/DevOps-Core-Course?dir=labs/lab18/app_python#default + ``` + +3. **Compare store paths:** + + ```bash + readlink result + ``` + + Both machines should get **identical store paths** - same hash, same content! + +#### Bonus.4: Add Development Shell + +1. **Enter the dev shell:** + + ```bash + nix develop + ``` + + This gives you an isolated environment with exact Python version and dependencies. -**Objective:** Deploy a static site to 4EVERLAND. +2. **Compare with Lab 1 virtual environment:** -**Requirements:** + **Lab 1 approach:** + ```bash + python -m venv venv + source venv/bin/activate + pip install -r requirements.txt + ``` -1. **Use the Provided Static Site** - - A course landing page is provided at `labs/lab18/index.html` - - Review the HTML/CSS to understand the structure - - You may customize it or create your own + **Lab 18 Nix approach:** + ```bash + nix develop + # Python and all dependencies instantly available + # Same environment on every machine + ``` -2. **Deploy via 4EVERLAND** - - Connect your GitHub repository - - Configure build settings - - Deploy to IPFS via 4EVERLAND +3. **Try it:** -3. **Verify Deployment** - - Access via 4EVERLAND URL - - Access via IPFS gateway - - Note the CID + ```bash + nix develop + python --version # Exact pinned version + python -c "import flask; print(flask.__version__)" + ``` -4. **Test Permanence** - - Understand that content with same hash = same CID - - Make a change, redeploy, observe new CID + Exit and enter again - same versions, always! + +**📊 Dependency Management Comparison:** + +| Aspect | Lab 1 (venv + requirements.txt) | Lab 10 (Helm values.yaml) | Lab 18 (Nix Flakes) | +|--------|--------------------------------|---------------------------|---------------------| +| **Locks Python version** | ❌ Uses system Python | ❌ Uses image Python | ✅ Pinned in flake | +| **Locks dependencies** | ⚠️ Approximate (versions drift) | ❌ Only image tag | ✅ Exact hashes | +| **Locks build tools** | ❌ No | ❌ No | ✅ Yes | +| **Reproducibility** | ⚠️ Probabilistic | ⚠️ Tag-based | ✅ Cryptographic | +| **Cross-machine** | ❌ Varies | ⚠️ Depends on image | ✅ Identical | +| **Dev environment** | ✅ Yes (venv) | ❌ No | ✅ Yes (nix develop) | +| **Time-stable** | ❌ Packages update | ⚠️ Tags can change | ✅ Locked forever | + +In `labs/submission18.md`, document: +- Your complete `flake.nix` with explanations +- `flake.lock` snippet showing locked dependencies (especially nixpkgs revision) +- Build outputs from `nix build` +- Proof that builds are identical across machines/time +- Dev shell experience: Compare `nix develop` vs Lab 1's `venv` +- Comparison with Lab 10 Helm values.yaml approach (Bonus.2) +- **Reflection:** How do Flakes improve upon traditional dependency management? +- Practical scenarios where flake.lock prevented a "works on my machine" problem + +--- + +## Troubleshooting Common Issues
-💡 Hints - -**Provided Static Site:** -The course provides a beautiful landing page at `labs/lab18/index.html` that you can deploy. It includes: -- Modern responsive design -- Course curriculum overview -- Learning roadmap -- "Deployed on IPFS" badge - -**Deployment Steps:** -1. Go to 4EVERLAND Dashboard → Hosting -2. Click "New Project" -3. Import from GitHub -4. Select your repository and branch -5. Configure: - - Framework: None (static) - - Build command: (leave empty for static) - - Output directory: `labs/lab18` (or root if you moved the file) -6. Deploy - -**Alternative: Create Your Own** -You can also create your own static site. Keep it simple: -```html - - - - My DevOps Portfolio - - -

Welcome to My DevOps Journey

-

Deployed on IPFS via 4EVERLAND

- - +🔧 Python app doesn't run: "command not found" or "No such file or directory" + +**Problem:** Your `app.py` doesn't have a shebang line and isn't being wrapped with Python interpreter. + +**Solution:** Ensure you're using `makeWrapper` in your `default.nix`: + +```nix +nativeBuildInputs = [ pkgs.makeWrapper ]; + +installPhase = '' + mkdir -p $out/bin + cp app.py $out/bin/devops-info-service + + wrapProgram $out/bin/devops-info-service \ + --prefix PYTHONPATH : "$PYTHONPATH" +''; ``` -**Access URLs:** -- 4EVERLAND: `https://your-project.4everland.app` -- IPFS Gateway: `https://ipfs.4everland.link/ipfs/CID` +Alternatively, add a shebang to your `app.py`: +```python +#!/usr/bin/env python3 +```
---- +
+🔧 "error: hash mismatch in fixed-output derivation" + +**Problem:** The hash you specified doesn't match the actual content. + +**Solution:** +1. Use `pkgs.lib.fakeHash` initially to get the correct hash +2. Nix will fail and tell you the expected hash +3. Replace `fakeHash` with the correct hash from the error message + +Example: +```nix +vendorHash = pkgs.lib.fakeHash; # Start with this +# Error will say: "got: sha256-abc123..." +# Then use: vendorHash = "sha256-abc123..."; +``` -### Task 4 — IPFS Pinning (4 pts) +
-**Objective:** Use 4EVERLAND's storage (Bucket) for IPFS pinning. +
+🔧 Docker image doesn't load or fails to run -**Requirements:** +**Common causes:** -1. **Upload Files to Bucket** - - Upload multiple files (images, documents, etc.) - - Get CIDs for each file +1. **Image tarball not built:** Check `result` is a `.tar.gz` file + ```bash + file result + # Should show: gzip compressed data + ``` -2. **Create a Directory Structure** - - Upload a folder with multiple files - - Understand directory CIDs +2. **Wrong Cmd path:** Verify the app path in docker.nix + ```nix + config.Cmd = [ "${app}/bin/devops-info-service" ]; + # Make sure this matches your installPhase output + ``` -3. **Access via Multiple Gateways** - - Access your content via: - - 4EVERLAND gateway - - Public IPFS gateways (ipfs.io, dweb.link) - - Understand gateway differences +3. **Missing dependencies in image:** Add required packages to `contents` + ```nix + contents = [ app pkgs.coreutils ]; # Add tools if needed + ``` -4. **Verify Pinning** - - Confirm content is pinned - - Understand pinning vs local storage +
-💡 Hints +🔧 Port conflicts when running containers -**Bucket Upload:** -1. Dashboard → Bucket -2. Create new bucket -3. Upload files or folders -4. Get CID from file details +**Problem:** Port 5000 or 5001 already in use. -**Multiple Gateways:** +**Solution:** ```bash -# 4EVERLAND -https://ipfs.4everland.link/ipfs/QmXxx... - -# IPFS.io -https://ipfs.io/ipfs/QmXxx... +# Find what's using the port +lsof -i :5000 -# Cloudflare -https://cloudflare-ipfs.com/ipfs/QmXxx... +# Stop old containers +docker stop $(docker ps -aq) 2>/dev/null -# DWeb.link -https://dweb.link/ipfs/QmXxx... +# Or use different ports +docker run -d -p 5002:5000 --name my-container my-image ``` -**Directory Upload:** -- Upload entire folder -- Get directory CID -- Access files: `gateway/ipfs/DirCID/filename` +
+ +
+🔧 Flakes don't work: "experimental features" error -**Pinning Importance:** -- Unpinned content may be garbage collected -- Pinning services keep content available -- Multiple pins = more redundancy +**Problem:** Flakes not enabled in your Nix configuration. + +**Solution:** +```bash +# Check if flakes are enabled +nix flake --help + +# If error, enable flakes: +mkdir -p ~/.config/nix +echo "experimental-features = nix-command flakes" >> ~/.config/nix/nix.conf + +# Restart terminal +```
---- +
+🔧 Build fails on macOS: "unsupported system" -### Task 5 — IPNS & Updates (3 pts) +**Problem:** Flake hardcodes `x86_64-linux` but you're on macOS. -**Objective:** Understand mutable content with IPNS. +**Solution:** Change the system in `flake.nix`: +```nix +# For Mac Intel: +system = "x86_64-darwin"; -**Requirements:** +# For Mac M1/M2/M3: +system = "aarch64-darwin"; +``` -1. **Understand IPNS** - - IPFS = immutable (content changes = new CID) - - IPNS = mutable pointer to IPFS content - - IPNS name stays same, content can change +
-2. **Explore 4EVERLAND Domains** - - Custom domains for your deployment - - How 4EVERLAND handles updates +
+🔧 "cannot build derivation: no builder for this system" + +**Problem:** Trying to build Linux binaries on macOS or vice versa. -3. **Update Deployment** - - Make changes to your static site - - Redeploy - - Observe: same URL, new CID +**Solution:** Either: +1. Match your system architecture in the flake +2. Use Docker builds which work cross-platform +3. Use Nix's cross-compilation features (advanced) + +
-💡 Hints +🔧 Don't have Lab 1/2 artifacts to use + +**No problem!** Create a minimal example: -**IPFS vs IPNS:** -- **IPFS CID:** `QmXxx...` - changes when content changes -- **IPNS Name:** `/ipns/k51xxx...` - stays same, points to current CID +1. **Create simple Flask app:** + ```python + # app.py + from flask import Flask, jsonify + app = Flask(__name__) -**4EVERLAND Handles This:** -- Your project URL stays constant -- Behind scenes, updates the IPNS pointer -- Users always get latest version + @app.route('/health') + def health(): + return jsonify({"status": "healthy"}) -**Domain Configuration:** -1. Dashboard → Hosting → Your Project -2. Settings → Domains -3. Add custom domain or use provided subdomain + if __name__ == '__main__': + app.run(host='0.0.0.0', port=5000) + ``` + +2. **Create requirements.txt:** + ``` + flask + ``` + +3. **Create basic Dockerfile:** + ```dockerfile + FROM python:3.13-slim + WORKDIR /app + COPY requirements.txt app.py ./ + RUN pip install -r requirements.txt + EXPOSE 5000 + CMD ["python", "app.py"] + ``` + +Now you can proceed with the lab using these minimal examples!
--- -### Task 6 — Documentation & Analysis (3 pts) +## How to Submit -**Objective:** Document your work and analyze decentralized hosting. +1. Create a branch for this lab and push it: -**Create `4EVERLAND.md` with:** + ```bash + git switch -c feature/lab18 + # create labs/submission18.md with your findings + git add labs/submission18.md labs/lab18/ + git commit -m "docs: add lab18 submission - Nix reproducible builds" + git push -u origin feature/lab18 + ``` -1. **Deployment Summary** - - What you deployed - - URLs (4EVERLAND and IPFS gateways) - - CIDs obtained +2. **Open a PR (GitHub) or MR (GitLab)** from your fork's `feature/lab18` branch → **course repository's main branch**. -2. **Screenshots** - - 4EVERLAND dashboard - - Deployed site - - Bucket storage - - Multiple gateway access +3. In the PR/MR description, include: -3. **Centralized vs Decentralized Comparison** + ```text + Platform: [GitHub / GitLab] -| Aspect | Traditional Hosting | IPFS/4EVERLAND | -|--------|---------------------|----------------| -| Content addressing | | | -| Single point of failure | | | -| Censorship resistance | | | -| Update mechanism | | | -| Cost model | | | -| Speed/latency | | | -| Best use cases | | | + - [x] Task 1 — Build Reproducible Artifacts from Scratch (6 pts) + - [x] Task 2 — Reproducible Docker Images with Nix (4 pts) + - [ ] Bonus Task — Modern Nix with Flakes (2 pts) [if completed] + ``` -4. **Use Case Analysis** - - When decentralized hosting makes sense - - When traditional hosting is better - - Your recommendations +4. **Copy the PR/MR URL** and submit it via **Moodle before the deadline**. --- -## Checklist +## Acceptance Criteria -- [ ] IPFS concepts understood -- [ ] Local IPFS node running -- [ ] Content added to local IPFS -- [ ] 4EVERLAND account created -- [ ] Static site deployed via 4EVERLAND -- [ ] Files uploaded to Bucket -- [ ] Content accessed via multiple gateways -- [ ] IPNS/updates understood -- [ ] `4EVERLAND.md` documentation complete -- [ ] Comparison analysis complete +- ✅ Branch `feature/lab18` exists with commits for each task +- ✅ File `labs/submission18.md` contains required outputs and analysis for all completed tasks +- ✅ Directory `labs/lab18/` contains your application code and Nix expressions +- ✅ Nix derivations successfully build reproducible artifacts +- ✅ Docker image built with Nix and compared to traditional Dockerfile +- ✅ Hash comparisons prove reproducibility +- ✅ **Bonus (if attempted):** `flake.nix` and `flake.lock` present and working +- ✅ PR/MR from `feature/lab18` → **course repo main branch** is open +- ✅ PR/MR link submitted via Moodle before the deadline --- -## Rubric - -| Criteria | Points | -|----------|--------| -| **IPFS Fundamentals** | 3 pts | -| **4EVERLAND Setup** | 3 pts | -| **Static Deployment** | 4 pts | -| **IPFS Pinning** | 4 pts | -| **IPNS & Updates** | 3 pts | -| **Documentation** | 3 pts | -| **Total** | **20 pts** | +## Rubric (12 pts max) -**Grading:** -- **18-20:** Excellent understanding, thorough deployment, insightful analysis -- **16-17:** Working deployment, good documentation -- **14-15:** Basic deployment, incomplete analysis -- **<14:** Incomplete deployment +| Criterion | Points | +| --------------------------------------------------- | -----: | +| Task 1 — Build Reproducible Artifacts from Scratch | **6** | +| Task 2 — Reproducible Docker Images with Nix | **4** | +| Bonus Task — Modern Nix with Flakes | **2** | +| **Total** | **12** | --- -## Resources +## Guidelines + +- Use clear Markdown headers to organize sections in `submission18.md` +- Include command outputs and written analysis for each task +- Explain WHY Nix provides better reproducibility than traditional tools +- Compare before/after results when proving reproducibility +- Document challenges encountered and how you solved them +- Include code snippets with explanations, not just paste
-📚 IPFS Documentation +📚 Helpful Resources + +**Official Documentation:** +- [nix.dev - Official tutorials](https://nix.dev/) +- [Zero to Nix - Beginner-friendly guide](https://zero-to-nix.com/) +- [Nix Pills - Deep dive](https://nixos.org/guides/nix-pills/) +- [NixOS Package Search](https://search.nixos.org/) + +**Docker with Nix:** +- [Building Docker images - nix.dev](https://nix.dev/tutorials/nixos/building-and-running-docker-images.html) +- [dockerTools reference](https://ryantm.github.io/nixpkgs/builders/images/dockertools/) + +**Flakes:** +- [Nix Flakes - NixOS Wiki](https://wiki.nixos.org/wiki/Flakes) +- [Flakes - Zero to Nix](https://zero-to-nix.com/concepts/flakes) +- [Practical Nix Flakes](https://serokell.io/blog/practical-nix-flakes) -- [IPFS Docs](https://docs.ipfs.tech/) -- [IPFS Concepts](https://docs.ipfs.tech/concepts/) -- [Content Addressing](https://docs.ipfs.tech/concepts/content-addressing/) -- [IPNS](https://docs.ipfs.tech/concepts/ipns/) +**Community:** +- [awesome-nix - Curated resources](https://github.com/nix-community/awesome-nix) +- [NixOS Discourse](https://discourse.nixos.org/)
-🌐 4EVERLAND +💡 Nix Tips -- [4EVERLAND Docs](https://docs.4everland.org/) -- [Hosting Guide](https://docs.4everland.org/hosting/overview) -- [Bucket (Storage)](https://docs.4everland.org/storage/bucket) +1. **Store paths are content-addressable:** Same inputs = same output hash +2. **Use `nix-shell -p pkg` for quick testing** before adding to derivations +3. **Garbage collect unused builds:** `nix-collect-garbage -d` +4. **Search for packages:** `nix search nixpkgs golang` +5. **Read error messages carefully:** Nix errors are verbose but informative +6. **Use `lib.fakeHash` initially** when you don't know the hash yet +7. **Avoid network access in builds:** Nix sandboxes block network by default +8. **Pin nixpkgs version** for maximum reproducibility
-🔗 Public Gateways +🔧 Troubleshooting + +**If Nix installation fails:** +- Ensure you have multi-user support (daemon mode recommended) +- Check `/nix` directory permissions +- Try the Determinate Systems installer instead of official + +**If builds fail with "hash mismatch":** +- Update the hash in your derivation to match the error message +- Use `lib.fakeHash` to discover the correct hash + +**If Docker load fails:** +- Verify result is a valid tarball: `file result` +- Check Docker daemon is running: `docker info` +- Try `docker load -i result` instead of `docker load < result` + +**If flakes don't work:** +- Ensure experimental features are enabled in `~/.config/nix/nix.conf` +- Run `nix flake check` to validate flake syntax +- Make sure your flake is in a git repository -- [IPFS Gateway Checker](https://ipfs.github.io/public-gateway-checker/) -- [Gateway List](https://docs.ipfs.tech/concepts/ipfs-gateway/#gateway-providers) +**If cross-machine builds differ:** +- Check nixpkgs input is locked in `flake.lock` +- Verify both machines use same Nix version +- Ensure no `created = "now"` or timestamps in image builds
---- +
+🎯 Understanding Reproducibility + +**What makes a build reproducible?** +- ✅ Deterministic inputs (exact versions, hashes) +- ✅ Isolated environment (no system dependencies) +- ✅ No timestamps or random values +- ✅ Same compiler, same flags, same libraries +- ✅ Content-addressable storage + +**Why traditional tools fail:** +```bash +# Docker - timestamps in layers +docker build . # Different timestamp = different image hash + +# npm - lockfiles help but aren't perfect +npm install # Still uses local cache, system libraries + +# apt/yum - version drift +apt-get install nodejs # Gets different version next week +``` -**Good luck!** 🌐 +**How Nix succeeds:** +```bash +# Nix - pure, sandboxed, content-addressed +nix-build # Same inputs = bit-for-bit identical output + # Today, tomorrow, on any machine +``` + +**Real-world impact:** +- **CI/CD:** No more "works on my machine" +- **Security:** Audit exact dependency tree +- **Rollback:** Atomic updates with perfect rollbacks +- **Collaboration:** Everyone gets identical environment + +
+ +
+🌟 Advanced Concepts (Optional Reading) + +**Content-Addressable Store:** +- Every package has a unique hash based on its inputs +- `/nix/store/abc123...` where `abc123` = hash of inputs +- Same inputs = same hash = reuse existing build + +**Sandboxing:** +- Builds run in isolated namespaces +- No network access (except for fixed-output derivations) +- No access to `/home`, `/tmp`, or system paths +- Only declared dependencies are available + +**Lazy Evaluation:** +- Nix expressions are lazily evaluated +- Only builds what's actually needed +- Enables massive codebase (all of nixpkgs) without performance issues + +**Binary Cache:** +- cache.nixos.org provides pre-built binaries +- If your build matches a cached hash, download instead of rebuild +- Set up private caches for your team + +**Cross-Compilation:** +- Nix makes cross-compilation trivial +- `pkgs.pkgsCross.aarch64-multiplatform.hello` +- Same reproducibility guarantees across architectures -> **Remember:** Decentralized hosting trades some convenience for resilience and censorship resistance. Content-addressed storage ensures integrity - the same content always has the same identifier. +
diff --git a/labs/lab18/index.html b/labs/lab18/index.html deleted file mode 100644 index b3de65bc8b..0000000000 --- a/labs/lab18/index.html +++ /dev/null @@ -1,927 +0,0 @@ - - - - - - DevOps Core Course | Production-Grade Practices - - - - - - - -
- -
- -
-
-
-
-
- 2026 Edition — 7th Year — Evolved every semester -
-

Master Production-Grade DevOps Practices

-

16 lectures and hands-on labs covering Kubernetes, GitOps, CI/CD, Monitoring, and beyond. 18 weeks of learning to build real-world skills.

- -
-
-
- -
-
-
-
7
-
Years Running
-
-
-
1000+
-
Students Trained
-
-
-
16
-
Lectures & Labs
-
-
-
18
-
Weeks of Learning
-
-
-
- -
-
-

Why This Course?

-

Build production-ready skills through hands-on practice with tools used by top tech companies worldwide.

-
-
-
-
-

Cloud-Native Architecture

-

Master Kubernetes, Helm, StatefulSets, and container orchestration for scalable deployments.

-
-
-
-

GitOps & Automation

-

Implement ArgoCD, Argo Rollouts, and progressive delivery for safe, automated deployments.

-
-
-
🔒
-

Security & Secrets

-

Learn HashiCorp Vault, Kubernetes Secrets, and secure configuration management practices.

-
-
-
📊
-

Observability

-

Build monitoring stacks with Prometheus, Grafana, Loki, and implement effective alerting.

-
-
-
-

Infrastructure as Code

-

Automate infrastructure with Terraform and Ansible for reproducible environments.

-
-
-
🌐
-

Beyond Kubernetes

-

Explore edge computing with Fly.io and decentralized hosting with IPFS and 4EVERLAND.

-
-
-
- -
-
-

Lectures & Labs

-

16 lectures with corresponding hands-on labs, plus 2 bonus labs as exam alternatives.

-
-
-
-
01
-
-

Web Application Development

-

Python/Go, Best Practices

-
-
-
-
02
-
-

Containerization

-

Docker, Multi-stage Builds

-
-
-
-
03
-
-

Continuous Integration

-

GitHub Actions, Snyk

-
-
-
-
04
-
-

Infrastructure as Code

-

Terraform, Cloud Providers

-
-
-
-
05
-
-

Configuration Management

-

Ansible Basics

-
-
-
-
06
-
-

Continuous Deployment

-

Ansible Advanced

-
-
-
-
07
-
-

Logging

-

Promtail, Loki, Grafana

-
-
-
-
08
-
-

Monitoring

-

Prometheus, Grafana

-
-
-
-
09
-
-

Kubernetes Basics

-

Minikube, Deployments, Services

-
-
-
-
10
-
-

Helm Charts

-

Templating, Hooks

-
-
-
-
11
-
-

Secrets Management

-

K8s Secrets, HashiCorp Vault

-
-
-
-
12
-
-

Configuration & Storage

-

ConfigMaps, PVCs

-
-
-
-
13
-
-

GitOps

-

ArgoCD

-
-
-
-
14
-
-

Progressive Delivery

-

Argo Rollouts

-
-
-
-
15
-
-

StatefulSets

-

Persistent Storage, Headless Services

-
-
-
-
16
-
-

Cluster Monitoring

-

Kube-Prometheus, Init Containers

-
-
-
-
17
-
-

Fly.io Edge Deployment

-

Global Distribution, PaaS

- Exam Alternative -
-
-
-
18
-
-

4EVERLAND & IPFS

-

Decentralized Hosting

- Exam Alternative -
-
-
-
- -
-
-

Learning Roadmap

-

A structured 16-week journey from foundations to advanced production patterns, plus 2 weeks for bonus labs or exam preparation.

-
-
-
-
- Phase - 1 -
-
-

Foundations (Weeks 1-6)

-

Build core skills in containerization, CI/CD, and infrastructure automation.

-
- Docker - GitHub Actions - Terraform - Ansible -
-
-
-
-
- Phase - 2 -
-
-

Observability (Weeks 7-8)

-

Master logging and monitoring for production visibility.

-
- Prometheus - Grafana - Loki - Alerting -
-
-
-
-
- Phase - 3 -
-
-

Kubernetes Core (Weeks 9-12)

-

Deep dive into Kubernetes orchestration and package management.

-
- Kubernetes - Helm - Secrets - ConfigMaps -
-
-
-
-
- Phase - 4 -
-
-

Advanced Patterns (Weeks 13-16)

-

Implement GitOps, progressive delivery, stateful workloads, and production monitoring.

-
- ArgoCD - Argo Rollouts - StatefulSets - Vault -
-
-
-
-
- Bonus - +2 -
-
-

Bonus Labs / Exam Prep (Weeks 17-18)

-

Complete exam alternative labs or prepare for the final exam.

-
- Fly.io - IPFS - 4EVERLAND - Edge Computing -
-
-
-
-
- -
-
-

Ready to Start Your DevOps Journey?

-

Join 1000+ students who have built production-ready skills through this battle-tested curriculum.

- - Get Started Free → - -
-
-
- -
-
-

© 2020–2026 DevOps Core Course. 7 years of continuous improvement. Open source educational content.

- -
-
- -
-
🌐
-
- Deployed on
- IPFS via 4EVERLAND -
-
- - From 2a181bbf77796e33cceb792116541594310f2129 Mon Sep 17 00:00:00 2001 From: Dmitrii Creed Date: Sat, 21 Feb 2026 11:27:35 +0400 Subject: [PATCH 2/6] Update lab04 Signed-off-by: Dmitrii Creed --- labs/lab04.md | 97 +++++++++------------------------------------------ 1 file changed, 16 insertions(+), 81 deletions(-) diff --git a/labs/lab04.md b/labs/lab04.md index eefa858953..4651a351c2 100644 --- a/labs/lab04.md +++ b/labs/lab04.md @@ -33,11 +33,11 @@ By using both Terraform and Pulumi for the same task, you'll understand: - How to evaluate IaC tools for your needs **Important for Lab 5:** -The VM you create in this lab will be used in **Lab 5 (Ansible)** for configuration management. You have two options: -- **Option A (Recommended):** Keep your cloud VM running until you complete Lab 5 -- **Option B:** Use a local VM (see Local VM Alternative section below) +The VM you create in this lab will be used in **Lab 5 (Ansible)** for configuration management. -If you choose to destroy your cloud VM after Lab 4, you can easily recreate it later using your Terraform/Pulumi code! +Recommended approach: +- Keep **one** cloud VM running until you complete Lab 5 (to avoid re-creating it). +- If you destroy it after Lab 4, recreate it later from your Terraform/Pulumi code. --- @@ -91,71 +91,6 @@ If Yandex Cloud is unavailable, choose any of these: --- -## Local VM Alternative - -If you cannot or prefer not to use cloud providers, you can use a local VM instead. This VM will need to meet specific requirements for Lab 5 (Ansible). - -### Option 1: VirtualBox/VMware VM - -**Requirements:** -- Ubuntu 24.04 LTS (recommended) or Ubuntu 22.04 LTS -- 1 GB RAM minimum (2 GB recommended) -- 10 GB disk space -- Network adapter in Bridged mode (or NAT with port forwarding) -- SSH server installed and configured -- Your SSH public key added to `~/.ssh/authorized_keys` -- Static or predictable IP address - -**Setup Steps:** -```bash -# Install SSH server (if not installed) -sudo apt update -sudo apt install openssh-server - -# Add your SSH public key -mkdir -p ~/.ssh -echo "your-public-key-here" >> ~/.ssh/authorized_keys -chmod 700 ~/.ssh -chmod 600 ~/.ssh/authorized_keys - -# Verify SSH access from your host machine -ssh username@vm-ip-address -``` - -### Option 2: Vagrant VM - -**Requirements:** -- Vagrant installed on your machine -- VirtualBox (or another Vagrant provider) - -**Basic Vagrantfile:** -```ruby -Vagrant.configure("2") do |config| - config.vm.box = "ubuntu/noble64" # Ubuntu 24.04 LTS - # Or use "ubuntu/jammy64" for Ubuntu 22.04 LTS - config.vm.network "private_network", ip: "192.168.56.10" - config.vm.provider "virtualbox" do |vb| - vb.memory = "2048" - end -end -``` - -### Option 3: WSL2 (Windows Subsystem for Linux) - -**Note:** WSL2 can work but has networking limitations. Bridged mode VM is preferred. - -**If using local VM:** -- You can skip Terraform/Pulumi cloud provider setup -- Document your local VM setup instead -- For Task 1, show VM creation (manual or Vagrant) -- For Task 2, you can skip Pulumi (or use Pulumi to manage Vagrant) -- Focus on understanding IaC concepts with cloud provider research - -**Recommended Approach:** -Even with a local VM, complete the Terraform/Pulumi tasks with a cloud provider to gain real IaC experience. You can destroy the cloud VM after Lab 4 and use your local VM for Lab 5. - ---- - ## Tasks ### Task 1 — Terraform VM Creation (4 pts) @@ -905,7 +840,7 @@ Brief comparison (3-5 sentences each): **VM for Lab 5:** - Are you keeping your VM for Lab 5? (Yes/No) - If yes: Which VM (Terraform or Pulumi created)? -- If no: What will you use for Lab 5? (Local VM/Will recreate cloud VM) +- If no: How will you recreate the VM for Lab 5? (Terraform/Pulumi + steps) **Cleanup Status:** - If keeping VM for Lab 5: Show VM is still running and accessible @@ -1339,13 +1274,13 @@ terraform import github_repository.course_repo DevOps-Core-Course - ✅ Check no secrets in code - ✅ Review .gitignore is correct - **If NOT keeping VM for Lab 5:** - - ✅ Run `terraform destroy` - - ✅ Run `pulumi destroy` - - ✅ Verify no resources in cloud console - - ✅ Check no secrets in code - - ✅ Review .gitignore is correct - - ✅ Document your Lab 5 plan (local VM or recreate cloud VM) + **If NOT keeping VM for Lab 5:** + - ✅ Run `terraform destroy` + - ✅ Run `pulumi destroy` + - ✅ Verify no resources in cloud console + - ✅ Check no secrets in code + - ✅ Review .gitignore is correct + - ✅ Document your Lab 5 plan (how you'll recreate the cloud VM from IaC) 4. **Create Pull Requests:** - **PR #1:** `your-fork:lab04` → `course-repo:master` @@ -1386,7 +1321,7 @@ terraform import github_repository.course_repo DevOps-Core-Course - [ ] Terraform implementation documented - [ ] Pulumi implementation documented - [ ] Terraform vs Pulumi comparison provided -- [ ] Lab 5 preparation documented (keeping VM or using local/recreating) + - [ ] Lab 5 preparation documented (keeping VM or recreating it from IaC) - [ ] Cleanup status documented (what's kept, what's destroyed) - [ ] Terminal outputs provided (sanitized, no secrets) @@ -1431,7 +1366,7 @@ terraform import github_repository.course_repo DevOps-Core-Course **Critical Requirements:** - ✅ MUST use free tier resources only -- ✅ MUST document Lab 5 VM plan (keeping, local, or recreating) +- ✅ MUST document Lab 5 VM plan (keeping one VM or recreating it from IaC) - ✅ MUST NOT commit secrets or state files - ✅ MUST provide SSH access proof - ⚠️ Keeping ONE VM for Lab 5 is acceptable (document it!) @@ -1498,7 +1433,7 @@ terraform import github_repository.course_repo DevOps-Core-Course ## Looking Ahead - **Lab 5:** Ansible will provision software on your VM (install Docker, deploy your app from Labs 1-3) - - **You'll need a VM ready** - either keep your cloud VM from this lab, use a local VM, or recreate later + - **You'll need a VM ready** - keep your cloud VM from this lab or recreate later from your IaC code - **Lab 6:** Ansible + Terraform integration (provision and configure in one workflow) - **Lab 9:** Kubernetes will replace individual VMs (but concepts are same) - **Lab 13:** ArgoCD will manage infrastructure changes (GitOps for infrastructure) @@ -1507,4 +1442,4 @@ terraform import github_repository.course_repo DevOps-Core-Course **Good luck!** 🚀 -> **Remember:** Infrastructure as Code is about automation, repeatability, and collaboration. Focus on understanding WHY we define infrastructure in code, not just HOW. Consider keeping one VM for Lab 5 (Ansible). If destroying resources, document your Lab 5 plan. Never commit secrets! +> **Remember:** Infrastructure as Code is about automation, repeatability, and collaboration. Focus on understanding WHY we define infrastructure in code, not just HOW. Consider keeping one VM for Lab 5 (Ansible). If destroying resources, document how you'll recreate the VM from your IaC code. Never commit secrets! From 7631380c0d640141ce6de935a9bce7f5675d786b Mon Sep 17 00:00:00 2001 From: Dmitrii Creed Date: Wed, 25 Mar 2026 11:59:28 +0400 Subject: [PATCH 3/6] Update lab17 Signed-off-by: Dmitrii Creed --- README.md | 6 +- labs/lab16.md | 2 +- labs/lab17.md | 577 +++++++++++++++++++++++++++-------------------- lectures/lec8.md | 8 +- 4 files changed, 338 insertions(+), 255 deletions(-) diff --git a/README.md b/README.md index a66ee3dc20..9955b0c611 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Master **production-grade DevOps practices** through hands-on labs. Build, conta | 15 | 15 | StatefulSets | Persistent Storage, Headless Services | | 16 | 16 | Cluster Monitoring | Kube-Prometheus, Init Containers | | — | **Exam Alternative Labs** | | | -| 17 | 17 | Edge Deployment | Fly.io, Global Distribution | +| 17 | 17 | Edge Deployment | Cloudflare Workers, Global Edge | | 18 | 18 | Reproducible Builds | Nix, Deterministic Builds, Flakes | --- @@ -60,7 +60,7 @@ Don't want to take the exam? Complete **both** bonus labs: | Lab | Topic | Points | |-----|-------|--------| -| **Lab 17** | Fly.io Edge Deployment | 20 pts | +| **Lab 17** | Cloudflare Workers Edge Deployment | 20 pts | | **Lab 18** | Reproducible Builds with Nix | 20 pts | **Requirements:** @@ -142,7 +142,7 @@ Each lab is worth **10 points** (main tasks) + **2.5 points** (bonus). - StatefulSets, Monitoring **Exam Alternative (Labs 17-18)** -- Fly.io, Nix Reproducible Builds +- Cloudflare Workers, Nix Reproducible Builds diff --git a/labs/lab16.md b/labs/lab16.md index 6fa7220f36..b5fd6455e0 100644 --- a/labs/lab16.md +++ b/labs/lab16.md @@ -252,7 +252,7 @@ kubectl port-forward svc/monitoring-kube-prometheus-prometheus -n monitoring 909 Congratulations on completing the core Kubernetes labs! You now have experience with the complete DevOps lifecycle from development to production monitoring. -**Optional:** Labs 17-18 are exam alternatives covering Fly.io and 4EVERLAND. +**Optional:** Labs 17-18 are exam alternatives covering Cloudflare Workers and Nix. --- diff --git a/labs/lab17.md b/labs/lab17.md index c0ca8ed79d..e0ecdf23d4 100644 --- a/labs/lab17.md +++ b/labs/lab17.md @@ -1,28 +1,35 @@ -# Lab 17 — Fly.io Edge Deployment +# Lab 17 — Cloudflare Workers Edge Deployment ![difficulty](https://img.shields.io/badge/difficulty-intermediate-yellow) ![topic](https://img.shields.io/badge/topic-Edge%20Computing-blue) ![points](https://img.shields.io/badge/points-20-orange) ![type](https://img.shields.io/badge/type-Exam%20Alternative-purple) -> Deploy your application globally on Fly.io's edge infrastructure and experience simplified cloud deployment. +> Build and deploy a serverless HTTP API on Cloudflare's global edge network using Cloudflare Workers. ## Overview -Fly.io is a platform for running applications close to users worldwide. Unlike Kubernetes which requires cluster management, Fly.io abstracts infrastructure away while still giving you control over deployment, scaling, and observability. +Cloudflare Workers is a serverless edge platform for running code close to users worldwide without managing servers or choosing VM regions manually. Unlike Kubernetes or Docker-based PaaS platforms, Workers uses a lightweight runtime, automatic global distribution, built-in `workers.dev` URLs, and platform bindings for configuration, secrets, and state. **This is an Exam Alternative Lab** — Complete both Lab 17 and Lab 18 to replace the final exam. **What You'll Learn:** - Edge computing concepts -- Platform-as-a-Service deployment -- Global application distribution -- Kubernetes vs PaaS trade-offs -- Modern deployment workflows +- Serverless deployment workflows +- Cloudflare Workers and Wrangler CLI +- Global request metadata and routing +- Secrets, environment variables, and KV persistence +- Rollbacks and observability +- Kubernetes vs Workers trade-offs -**Prerequisites:** Working Docker image from Lab 2 +**Prerequisites:** +- Git +- Node.js 18+ and npm +- Basic HTTP/JSON familiarity -**Tech Stack:** Fly.io | flyctl CLI | Docker | Multi-region deployment +**Important:** This lab does not deploy your Docker image from Lab 2. Cloudflare Workers is a serverless runtime, not a Docker host. You will build a Workers-native API that preserves similar operational concerns: routes, health checks, configuration, state, logs, deployments, and public access. + +**Tech Stack:** Cloudflare Workers | Wrangler | TypeScript | Workers KV | `workers.dev` --- @@ -39,363 +46,408 @@ Fly.io is a platform for running applications close to users worldwide. Unlike K ## Tasks -### Task 1 — Fly.io Setup (3 pts) +### Task 1 — Cloudflare Setup (3 pts) -**Objective:** Set up Fly.io account and CLI. +**Objective:** Set up your Cloudflare account and Workers tooling. **Requirements:** 1. **Create Account** - - Sign up at [fly.io](https://fly.io) - - No credit card required for free tier - - Verify email + - Sign up for a Cloudflare account + - Confirm you can access Workers from the dashboard + - Understand what a `workers.dev` subdomain is + +2. **Create Project** + - Create a new Workers project using C3 (`create-cloudflare`) + - Choose the `Worker only` template + - Use TypeScript for the required path in this lab -2. **Install flyctl CLI** - - Install for your operating system - - Authenticate with `fly auth login` - - Verify with `fly version` +3. **Authenticate CLI** + - Log in with Wrangler + - Verify your account with `npx wrangler whoami` + - Understand the role of `wrangler.jsonc` -3. **Explore Platform Concepts** - - Understand Fly Machines (VMs) - - Understand Fly Volumes (persistent storage) - - Understand Regions and edge deployment +4. **Explore Platform Concepts** + - Understand the Workers runtime + - Understand `workers.dev` URLs + - Understand bindings: vars, secrets, and KV namespaces
💡 Hints -**Installation:** +**Create the project:** ```bash -# macOS -brew install flyctl - -# Linux -curl -L https://fly.io/install.sh | sh - -# Windows (PowerShell) -pwsh -Command "iwr https://fly.io/install.ps1 -useb | iex" +npm create cloudflare@latest -- edge-api +cd edge-api ``` -**Authentication:** -```bash -fly auth login -# Opens browser for authentication +**Recommended choices during setup:** +- Hello World example +- Worker only +- TypeScript +- Git: Yes +- Deploy now: No -fly auth whoami -# Verify logged in +**Authenticate:** +```bash +npx wrangler login +npx wrangler whoami ``` -**Free Tier Includes:** -- 3 shared-cpu-1x VMs (256MB RAM) -- 3GB persistent storage -- 160GB outbound bandwidth +**What to look for in the generated project:** +- `src/index.ts` - Worker source code +- `wrangler.jsonc` - Worker configuration +- `package.json` - local scripts and dependencies **Resources:** -- [Fly.io Docs](https://fly.io/docs/) -- [Getting Started](https://fly.io/docs/getting-started/) +- [Cloudflare Workers Overview](https://developers.cloudflare.com/workers/) +- [Get started with Wrangler](https://developers.cloudflare.com/workers/get-started/guide/) +- [Wrangler commands](https://developers.cloudflare.com/workers/wrangler/commands/)
--- -### Task 2 — Deploy Application (4 pts) +### Task 2 — Build and Deploy a Worker API (4 pts) -**Objective:** Deploy your application to Fly.io. +**Objective:** Build a small HTTP API and deploy it to Cloudflare's edge. **Requirements:** -1. **Prepare Application** - - Ensure Dockerfile works locally - - Application should listen on port 8080 (or configure in fly.toml) +1. **Implement Routes** + - Create at least 3 HTTP endpoints + - Include `/health` + - Include one endpoint that returns JSON metadata about the deployment -2. **Launch Application** - - Run `fly launch` in your app directory - - Configure app name and region - - Review generated `fly.toml` +2. **Run Locally** + - Start local development with `npx wrangler dev` + - Test routes in the browser or with `curl` + - Verify correct status codes and JSON responses 3. **Deploy** - - Run `fly deploy` - - Wait for deployment to complete - - Access your application via provided URL + - Deploy with `npx wrangler deploy` + - Access the public `workers.dev` URL + - Confirm the deployed Worker responds correctly -4. **Verify** - - Test all endpoints work - - Check application logs - - Verify health checks pass +4. **Use Versioned Source Control** + - Commit your Worker project to Git + - Keep a clean deployment history you can refer to later
💡 Hints -**Launch Process:** -```bash -cd app_python # or app_go - -fly launch -# Follow prompts: -# - App name: your-unique-name -# - Region: select closest -# - Postgres/Redis: No (for now) -# - Deploy now: Yes +**Example route set:** +- `/` - general app information +- `/health` - health status +- `/edge` - edge metadata +- `/counter` - KV-backed persisted counter + +**Minimal TypeScript example:** +```ts +export interface Env { + APP_NAME: string; +} + +export default { + async fetch(request: Request, env: Env): Promise { + const url = new URL(request.url); + + if (url.pathname === "/health") { + return Response.json({ status: "ok" }); + } + + if (url.pathname === "/") { + return Response.json({ + app: env.APP_NAME, + message: "Hello from Cloudflare Workers", + timestamp: new Date().toISOString(), + }); + } + + return new Response("Not Found", { status: 404 }); + }, +}; ``` -**fly.toml Configuration:** -```toml -app = "your-app-name" -primary_region = "ams" # Amsterdam, or your choice - -[build] - dockerfile = "Dockerfile" - -[http_service] - internal_port = 8080 - force_https = true - auto_stop_machines = true - auto_start_machines = true - min_machines_running = 0 - -[checks] - [checks.health] - type = "http" - port = 8080 - path = "/health" - interval = "10s" - timeout = "2s" +**Local development:** +```bash +npx wrangler dev ``` -**Useful Commands:** +**Deploy:** ```bash -fly status # App status -fly logs # View logs -fly open # Open in browser -fly ssh console # SSH into machine +npx wrangler deploy +``` + +**Expected public URL format:** +```text +https://..workers.dev ```
--- -### Task 3 — Multi-Region Deployment (4 pts) +### Task 3 — Global Edge Behavior (4 pts) -**Objective:** Deploy your application to multiple regions worldwide. +**Objective:** Inspect how your Worker behaves on Cloudflare's global network. **Requirements:** -1. **Add Regions** - - Deploy to at least 3 regions (e.g., ams, iad, sin) - - Understand region codes +1. **Add Edge Metadata Endpoint** + - Return information from the incoming request context + - Include at least `colo` and `country` + - Include at least 1 additional field such as `asn`, `city`, `httpProtocol`, or `tlsVersion` -2. **Verify Global Distribution** - - Check machines in each region - - Access from different regions if possible +2. **Verify Public Edge Execution** + - Call your deployed Worker using the public URL + - Capture the JSON response from the metadata endpoint + - Show evidence that Cloudflare provides request metadata at the edge -3. **Test Latency** - - Document response times from different regions - - Understand how Fly routes requests to nearest region +3. **Explain Global Distribution** + - Briefly explain how Workers distributes execution globally + - Compare this with manually choosing regions in VM or PaaS platforms + - Explain why there is no `deploy to 3 regions` step in Workers -4. **Scale Machines** - - Scale to 2 machines in primary region - - Understand scaling commands +4. **Document Routing Concepts** + - Explain the difference between `workers.dev`, Routes, and Custom Domains + - Use `workers.dev` for the required deployment + - Custom domain setup is optional
💡 Hints -**Region Codes:** -- `ams` - Amsterdam -- `iad` - Virginia, USA -- `sin` - Singapore -- `syd` - Sydney -- `lhr` - London - -**Adding Regions:** -```bash -# Add regions -fly regions add iad sin - -# List regions -fly regions list - -# Check machines -fly machines list +**Useful request metadata:** +```ts +if (url.pathname === "/edge") { + return Response.json({ + colo: request.cf?.colo, + country: request.cf?.country, + city: request.cf?.city, + asn: request.cf?.asn, + httpProtocol: request.cf?.httpProtocol, + tlsVersion: request.cf?.tlsVersion, + }); +} ``` -**Scaling:** +**Test with `curl`:** ```bash -# Scale in specific region -fly scale count 2 --region ams - -# Or modify fly.toml and deploy +curl https://..workers.dev/edge ``` -**Verify Distribution:** -```bash -fly status -# Shows machines in each region +**Routing concepts:** +- `workers.dev` gives you a public URL quickly +- Routes attach Workers to traffic for an existing Cloudflare zone +- Custom Domains make your Worker the origin for a domain or subdomain -fly ping -# Test connectivity to regions -``` +**Resources:** +- [Request API and `request.cf`](https://developers.cloudflare.com/workers/runtime-apis/request/) +- [How Workers works](https://developers.cloudflare.com/workers/reference/how-workers-works/) +- [`workers.dev` routing](https://developers.cloudflare.com/workers/configuration/routing/workers-dev/) +- [Routes and domains](https://developers.cloudflare.com/workers/configuration/routing/)
--- -### Task 4 — Secrets & Persistence (3 pts) +### Task 4 — Configuration, Secrets & Persistence (3 pts) -**Objective:** Configure secrets and persistent storage. +**Objective:** Configure your Worker with variables, secrets, and persistent state. **Requirements:** -1. **Configure Secrets** - - Set at least 2 secrets using `fly secrets` - - Verify secrets are available in application - - Understand secret management on Fly +1. **Add Environment Variables** + - Define at least 1 plaintext variable in `wrangler.jsonc` + - Use it in your Worker response + - Explain why plaintext vars are not suitable for secrets -2. **Attach Volume** (if app needs persistence) - - Create Fly Volume - - Attach to application - - Verify data persists across deployments +2. **Add Secrets** + - Create at least 2 secrets with Wrangler + - Use the values through the `env` object + - Do not commit secret values to Git + +3. **Add Persistence with Workers KV** + - Create a KV namespace + - Bind it to your Worker + - Store and retrieve at least 1 value through your API + +4. **Verify Persistence** + - Confirm the stored value still exists after a redeploy + - Document what you stored and how you verified it
💡 Hints +**Plaintext vars in `wrangler.jsonc`:** +```json +{ + "vars": { + "APP_NAME": "edge-api", + "COURSE_NAME": "devops-core" + } +} +``` + **Secrets:** ```bash -# Set secrets -fly secrets set DATABASE_URL="postgres://..." API_KEY="secret123" - -# List secrets (names only) -fly secrets list - -# Secrets available as env vars in app +npx wrangler secret put API_TOKEN +npx wrangler secret put ADMIN_EMAIL ``` -**Volumes:** +**Create KV namespace:** ```bash -# Create volume -fly volumes create myapp_data --size 1 --region ams - -# Update fly.toml -[mounts] - source = "myapp_data" - destination = "/data" +npx wrangler kv namespace create SETTINGS +``` -# Deploy -fly deploy +Add the returned namespace ID to `wrangler.jsonc`: +```json +{ + "kv_namespaces": [ + { + "binding": "SETTINGS", + "id": "" + } + ] +} ``` -**Verify Persistence:** -```bash -fly ssh console -# Inside machine -cat /data/visits +**Example KV-backed counter:** +```ts +export interface Env { + APP_NAME: string; + API_TOKEN: string; + ADMIN_EMAIL: string; + SETTINGS: KVNamespace; +} + +if (url.pathname === "/counter") { + const raw = await env.SETTINGS.get("visits"); + const visits = Number(raw ?? "0") + 1; + await env.SETTINGS.put("visits", String(visits)); + return Response.json({ visits }); +} ``` +**Resources:** +- [Environment variables](https://developers.cloudflare.com/workers/configuration/environment-variables/) +- [Secrets](https://developers.cloudflare.com/workers/configuration/secrets/) +- [Workers KV getting started](https://developers.cloudflare.com/kv/get-started/) +- [Workers KV pricing](https://developers.cloudflare.com/kv/platform/pricing/) +
--- -### Task 5 — Monitoring & Operations (3 pts) +### Task 5 — Observability & Operations (3 pts) -**Objective:** Monitor and manage your deployed application. +**Objective:** Observe your Worker in production and manage deployments. **Requirements:** -1. **View Metrics** - - Access Fly.io dashboard - - View CPU, memory, network metrics - - Understand machine states +1. **Inspect Logs** + - Add at least 1 `console.log()` statement + - View logs with `npx wrangler tail` or in the dashboard + - Capture an example log entry -2. **Manage Deployments** - - Deploy a new version - - View deployment history - - Understand rollback capability +2. **Inspect Metrics** + - Open the Worker in the Cloudflare dashboard + - Review request counts, errors, or execution metrics + - Briefly explain what metric you looked at -3. **Health Checks** - - Configure HTTP health checks - - Verify health check execution - - Understand failure behavior +3. **Manage Deployments** + - Deploy at least 2 versions of your Worker + - View deployment history + - Perform or describe a rollback to a previous version
💡 Hints -**Dashboard:** -- Visit https://fly.io/dashboard -- Select your app -- View Metrics, Machines, Volumes tabs +**Console logging example:** +```ts +console.log("path", url.pathname, "colo", request.cf?.colo); +``` -**Deployments:** +**Tail logs from the terminal:** ```bash -fly releases -# Shows deployment history - -fly deploy --strategy rolling -# Rolling deployment +npx wrangler tail +``` -fly deploy --strategy immediate -# Immediate replacement +**View deployments:** +```bash +npx wrangler deployments list ``` -**Health Checks in fly.toml:** -```toml -[checks] - [checks.health] - type = "http" - port = 8080 - path = "/health" - interval = "10s" - timeout = "2s" - grace_period = "30s" +**Rollback:** +```bash +npx wrangler rollback ``` +**Resources:** +- [Observability overview](https://developers.cloudflare.com/workers/observability/) +- [Workers Logs](https://developers.cloudflare.com/workers/observability/logs/workers-logs/) +- [Versions & Deployments](https://developers.cloudflare.com/workers/configuration/versions-and-deployments/) +- [Rollbacks](https://developers.cloudflare.com/workers/configuration/versions-and-deployments/rollbacks/) +
--- ### Task 6 — Documentation & Comparison (3 pts) -**Objective:** Document deployment and compare with Kubernetes. +**Objective:** Document your deployment and compare Workers with Kubernetes. -**Create `FLYIO.md` with:** +**Create `WORKERS.md` with:** 1. **Deployment Summary** - - App URL - - Regions deployed + - Worker URL + - Main routes - Configuration used -2. **Screenshots** - - Fly.io dashboard - - Multi-region machines - - Metrics view +2. **Evidence** + - Screenshot of Cloudflare dashboard + - Example `/edge` JSON response + - Example log or metrics screenshot -3. **Kubernetes vs Fly.io Comparison** +3. **Kubernetes vs Cloudflare Workers Comparison** -| Aspect | Kubernetes | Fly.io | -|--------|------------|--------| +| Aspect | Kubernetes | Cloudflare Workers | +|--------|------------|--------------------| | Setup complexity | | | | Deployment speed | | | | Global distribution | | | | Cost (for small apps) | | | -| Learning curve | | | +| State/persistence model | | | | Control/flexibility | | | | Best use case | | | 4. **When to Use Each** - Scenarios favoring Kubernetes - - Scenarios favoring Fly.io + - Scenarios favoring Workers - Your recommendation +5. **Reflection** + - What felt easier than Kubernetes? + - What felt more constrained? + - What changed because Workers is not a Docker host? + --- ## Checklist -- [ ] Fly.io account created -- [ ] flyctl CLI installed and authenticated -- [ ] Application deployed successfully -- [ ] Multiple regions configured (3+) -- [ ] Secrets configured -- [ ] Persistence tested (if applicable) -- [ ] Health checks working -- [ ] Metrics accessible -- [ ] `FLYIO.md` documentation complete +- [ ] Cloudflare account created +- [ ] Workers project initialized +- [ ] Wrangler authenticated +- [ ] Worker deployed to `workers.dev` +- [ ] `/health` endpoint working +- [ ] Edge metadata endpoint implemented +- [ ] At least 1 plaintext variable configured +- [ ] At least 2 secrets configured +- [ ] KV namespace created and bound +- [ ] Persistence verified after redeploy +- [ ] Logs or metrics reviewed +- [ ] Deployment history viewed +- [ ] `WORKERS.md` documentation complete - [ ] Kubernetes comparison documented --- @@ -405,43 +457,74 @@ fly deploy --strategy immediate | Criteria | Points | |----------|--------| | **Setup** | 3 pts | -| **Deployment** | 4 pts | -| **Multi-Region** | 4 pts | -| **Secrets & Persistence** | 3 pts | -| **Monitoring** | 3 pts | +| **Worker API** | 4 pts | +| **Edge Behavior** | 4 pts | +| **Configuration & Persistence** | 3 pts | +| **Operations** | 3 pts | | **Documentation** | 3 pts | | **Total** | **20 pts** | **Grading:** -- **18-20:** Excellent global deployment, thorough comparison -- **16-17:** Working deployment, good documentation -- **14-15:** Basic deployment, missing regions or docs -- **<14:** Incomplete deployment +- **18-20:** Excellent deployment, strong edge analysis, thorough comparison +- **16-17:** Working Worker, good documentation, minor gaps +- **14-15:** Basic deployment works, missing KV, observability, or analysis detail +- **<14:** Incomplete implementation --- ## Resources
-📚 Fly.io Documentation +📚 Core Cloudflare Workers Docs + +- [Cloudflare Workers Overview](https://developers.cloudflare.com/workers/) +- [Get started with Wrangler](https://developers.cloudflare.com/workers/get-started/guide/) +- [Wrangler commands](https://developers.cloudflare.com/workers/wrangler/commands/) +- [Workers pricing](https://developers.cloudflare.com/workers/platform/pricing/) + +
+ +
+🌍 Edge Runtime & Routing + +- [How Workers works](https://developers.cloudflare.com/workers/reference/how-workers-works/) +- [Request API and `request.cf`](https://developers.cloudflare.com/workers/runtime-apis/request/) +- [`workers.dev`](https://developers.cloudflare.com/workers/configuration/routing/workers-dev/) +- [Routes and domains](https://developers.cloudflare.com/workers/configuration/routing/) +- [Custom Domains](https://developers.cloudflare.com/workers/configuration/routing/custom-domains/) + +
+ +
+🔐 Config, Secrets & State + +- [Environment variables](https://developers.cloudflare.com/workers/configuration/environment-variables/) +- [Secrets](https://developers.cloudflare.com/workers/configuration/secrets/) +- [Workers KV getting started](https://developers.cloudflare.com/kv/get-started/) +- [Workers KV pricing](https://developers.cloudflare.com/kv/platform/pricing/) + +
+ +
+📊 Observability & Deployments -- [Fly.io Docs](https://fly.io/docs/) -- [flyctl Reference](https://fly.io/docs/flyctl/) -- [Fly Machines](https://fly.io/docs/machines/) -- [Fly Volumes](https://fly.io/docs/volumes/) +- [Observability overview](https://developers.cloudflare.com/workers/observability/) +- [Workers Logs](https://developers.cloudflare.com/workers/observability/logs/workers-logs/) +- [Versions & Deployments](https://developers.cloudflare.com/workers/configuration/versions-and-deployments/) +- [Rollbacks](https://developers.cloudflare.com/workers/configuration/versions-and-deployments/rollbacks/)
-🌍 Regions +🐍 Optional Python Track -- [Available Regions](https://fly.io/docs/reference/regions/) -- [Region Selection](https://fly.io/docs/reference/scaling/#regions) +- [Python Workers](https://developers.cloudflare.com/workers/languages/python/) +- [Python Worker packages](https://developers.cloudflare.com/workers/languages/python/packages/)
--- -**Good luck!** ✈️ +**Good luck!** 🌍 -> **Remember:** Fly.io is great for global, low-latency applications. Kubernetes gives more control but requires more management. Choose the right tool for your use case. +> **Remember:** Cloudflare Workers is excellent for globally distributed APIs and lightweight edge logic. Kubernetes gives you more control, broader runtime flexibility, and stronger patterns for long-running container workloads. Choose the right model for the workload. diff --git a/lectures/lec8.md b/lectures/lec8.md index 0b921df100..e049286422 100644 --- a/lectures/lec8.md +++ b/lectures/lec8.md @@ -93,12 +93,12 @@ flowchart LR ```mermaid flowchart TD - subgraph 📋 Logs + subgraph Logs L1[What happened?] L2[Detailed events] L3[High cardinality] end - subgraph 📊 Metrics + subgraph Metrics M1[How much/fast?] M2[Aggregated numbers] M3[Low cardinality] @@ -187,11 +187,11 @@ flowchart LR ```mermaid flowchart TD - subgraph Pull (Prometheus) + subgraph Pull Prometheus P1[💾 Prometheus] -->|🔄 Scrape| T1[📦 Target] P1 -->|🔄 Scrape| T2[📦 Target] end - subgraph Push (StatsD) + subgraph Push StatsD S1[📦 App] -->|📤 Push| D1[💾 Collector] S2[📦 App] -->|📤 Push| D1 end From 8226c944e1e57f05bb1b6aa8b2b26033d4eff037 Mon Sep 17 00:00:00 2001 From: Dmitrii Creed Date: Thu, 26 Mar 2026 16:22:32 +0400 Subject: [PATCH 4/6] Update lab17 Signed-off-by: Dmitrii Creed --- labs/lab17.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/labs/lab17.md b/labs/lab17.md index e0ecdf23d4..957a8800e1 100644 --- a/labs/lab17.md +++ b/labs/lab17.md @@ -29,6 +29,8 @@ Cloudflare Workers is a serverless edge platform for running code close to users **Important:** This lab does not deploy your Docker image from Lab 2. Cloudflare Workers is a serverless runtime, not a Docker host. You will build a Workers-native API that preserves similar operational concerns: routes, health checks, configuration, state, logs, deployments, and public access. +> **Regional connectivity note:** In some countries and networks, including Russia, Cloudflare services may be partially restricted. If commands such as `npx wrangler whoami` or `npx wrangler deploy` fail with vague network errors, the problem may be your network path rather than your code. If you use a VPN, prefer full-tunnel or global-routing mode. Proxy or split-tunnel setups can allow Node.js and Wrangler traffic to bypass the VPN and still hit the restricted network. + **Tech Stack:** Cloudflare Workers | Wrangler | TypeScript | Workers KV | `workers.dev` --- From f5c458ba229c3a5601ad64f27f7739299ae48f83 Mon Sep 17 00:00:00 2001 From: LocalT0aster Dan <90502400+LocalT0aster@users.noreply.github.com> Date: Wed, 15 Apr 2026 12:23:12 +0300 Subject: [PATCH 5/6] Merge pull request #3565 from LocalT0aster/fix-flowcharts fix: Mermaid flowcharts in lectures --- lectures/lec1.md | 20 ++++++++++---------- lectures/lec11.md | 26 +++++++++++++------------- lectures/lec12.md | 27 ++++++++++++++++----------- lectures/lec13.md | 34 +++++++++++++++++++--------------- lectures/lec14.md | 15 ++++++++------- lectures/lec15.md | 19 +++++++++++-------- lectures/lec16.md | 2 +- lectures/lec2.md | 24 +++++++++++++----------- lectures/lec3.md | 2 +- lectures/lec4.md | 14 +++++++++----- lectures/lec5.md | 11 +++++++---- lectures/lec6.md | 20 ++++++++++++-------- lectures/lec7.md | 12 +++++++----- lectures/lec8.md | 10 ++++++---- lectures/lec9.md | 22 +++++++++++++--------- 15 files changed, 146 insertions(+), 112 deletions(-) diff --git a/lectures/lec1.md b/lectures/lec1.md index 00ead8aabc..4b319056f7 100644 --- a/lectures/lec1.md +++ b/lectures/lec1.md @@ -518,16 +518,16 @@ flowchart LR ```mermaid flowchart TD - subgraph 📋 Plan & Code + subgraph "📋 Plan & Code" L1[🔬 Labs 1-3: Git, GitHub] end - subgraph 🔨 Build & Test + subgraph "🔨 Build & Test" L2[🐳 Labs 4-6: Docker, CI/CD] end - subgraph 🚀 Deploy & Operate + subgraph "🚀 Deploy & Operate" L3[☸️ Labs 7-10: K8s, Helm] end - subgraph 🔐 Secure & Monitor + subgraph "🔐 Secure & Monitor" L4[📊 Labs 11-15: Vault, Monitoring] end ``` @@ -560,16 +560,16 @@ flowchart TD ```mermaid flowchart LR - subgraph 😱 Chaos - Manual[📋 Manual Work] - Silos[🧱 Silos] - Fear[😨 Fear] - end - subgraph 🌊 Flow + subgraph "🌊 Flow" Auto[🤖 Automation] Collab[🤝 Collaboration] Confidence[💪 Confidence] end + subgraph "😱 Chaos" + Manual[📋 Manual Work] + Silos[🧱 Silos] + Fear[😨 Fear] + end Chaos -->|🚀 DevOps| Flow ``` diff --git a/lectures/lec11.md b/lectures/lec11.md index 779e7917bd..97738c1fb2 100644 --- a/lectures/lec11.md +++ b/lectures/lec11.md @@ -76,11 +76,11 @@ Section 5: Production Patterns → 📝 POST Quiz ```mermaid flowchart LR - subgraph 😰 Developer + subgraph "😰 Developer" D1[🚀 Ship Fast] D2[🔧 Easy Access] end - subgraph 🔐 Security + subgraph "🔐 Security" S1[🛡️ Protect Data] S2[📋 Audit Access] end @@ -333,7 +333,7 @@ resources: ```mermaid flowchart TD - subgraph 😰 Limitations + subgraph "😰 Limitations" A[🔄 No Rotation] B[📊 Limited Audit] C[🌍 K8s Only] @@ -359,7 +359,7 @@ flowchart TD ```mermaid flowchart LR - subgraph 🏰 Vault + subgraph "🏰 Vault" A[🔐 Secret Engine] B[🔑 Auth Methods] C[📋 Policies] @@ -377,18 +377,18 @@ flowchart LR ```mermaid flowchart TD - subgraph 👥 Clients + subgraph "👥 Clients" K8s[☸️ K8s Pods] CLI[💻 CLI] API[🔌 API] end - subgraph 🏰 Vault Server + subgraph "🏰 Vault Server" Auth[🔑 Auth Methods] Policy[📋 Policies] Secrets[🔐 Secret Engines] Audit[📊 Audit Device] end - subgraph 💾 Storage + subgraph "💾 Storage" Backend[🗄️ Storage Backend] end K8s --> Auth @@ -460,12 +460,12 @@ path "secret/data/admin/*" { ```mermaid flowchart LR - subgraph 📦 Pod + Vault[🏰 Vault Server] + subgraph "📦 Pod" App[🚀 App Container] Agent[🔐 Vault Agent] Vol[📁 Shared Volume] end - Vault[🏰 Vault Server] Agent -->|🔑 Auth| Vault Vault -->|🔐 Secrets| Agent Agent -->|📝 Write| Vol @@ -561,17 +561,17 @@ vault read database/creds/readonly ```mermaid flowchart TD - subgraph 🏗️ Foundation + subgraph "🏗️ Foundation" L2[📦 Lab 2: Docker] L10[⛵ Lab 10: Helm] end - subgraph 🔐 Security + subgraph "🔐 Security" L11[🔒 Lab 11: Secrets] end - subgraph 📋 Config + subgraph "📋 Config" L12[📁 Lab 12: ConfigMaps] end - subgraph 🚀 Deployment + subgraph "🚀 Deployment" L13[🔄 Lab 13: ArgoCD] end L2 --> L10 diff --git a/lectures/lec12.md b/lectures/lec12.md index ef8ff54778..13b08692f7 100644 --- a/lectures/lec12.md +++ b/lectures/lec12.md @@ -93,18 +93,23 @@ By the end of this lecture, you will: ```mermaid flowchart TD - subgraph 😰 Hardcoded - A[app-dev.jar] --> D1[Dev DB] - B[app-staging.jar] --> D2[Staging DB] - C[app-prod.jar] --> D3[Prod DB] + subgraph "😰 Hardcoded" + A[app-dev.jar] + B[app-staging.jar] + C[app-prod.jar] end - - subgraph 🚀 Externalized + subgraph "🚀 Externalized" E[app.jar] --> F{Config} - F --> D1 - F --> D2 - F --> D3 end + D1[Dev DB] + D2[Staging DB] + D3[Prod DB] + F --> D1 + F --> D2 + F --> D3 + A --> D1 + B --> D2 + C --> D3 ``` * 😰 **Hardcoded:** Different artifact per environment @@ -155,7 +160,7 @@ COPY . /app **Stateless containers + persistent data = 💥** ```mermaid -flowchart LR +flowchart TD A[📦 Container v1] --> B[💾 /app/uploads] B --> C[🔄 Deployment] C --> D[📦 Container v2] @@ -331,7 +336,7 @@ Your application: **Situation:** Developer accidentally deploys with staging database URL to production ```mermaid -flowchart LR +flowchart TD A[👨‍💻 Dev pushes] --> B[🔄 CI/CD] B --> C[📦 Deploy to Prod] C --> D[🔗 Connects to Staging DB] diff --git a/lectures/lec13.md b/lectures/lec13.md index 370ae7821a..3ec5195ac1 100644 --- a/lectures/lec13.md +++ b/lectures/lec13.md @@ -91,17 +91,19 @@ By the end of this lecture, you will: **Traditional Deployment Models:** ```mermaid -flowchart TD - subgraph 😰 Manual - A[👨‍💻 Developer] --> B[⌨️ kubectl apply] - B --> C[☸️ Cluster] - end - - subgraph 🔄 CI/CD Push +flowchart LR + subgraph "🔄 CI/CD Push" + direction LR D[📝 Git Push] --> E[🔧 CI Pipeline] E --> F[⌨️ kubectl apply] F --> G[☸️ Cluster] end + + subgraph "😰 Manual" + direction LR + A[👨‍💻 Developer] --> B[⌨️ kubectl apply] + B --> C[☸️ Cluster] + end ``` * 😰 **Manual:** No audit trail, human error, inconsistent @@ -227,16 +229,18 @@ flowchart LR ## 📍 Slide 13 – 🔄 Push vs Pull Deployment ```mermaid -flowchart TD - subgraph 🔄 Push Model - A[📝 Git] --> B[🔧 CI/CD] - B --> |Push credentials needed| C[☸️ Cluster] - end - - subgraph 🚀 Pull Model - GitOps +flowchart LR + subgraph "🚀 Pull Model - GitOps" + direction LR D[📝 Git] --> |Pull| E[🤖 Agent in Cluster] E --> |Apply| F[☸️ Same Cluster] end + + subgraph "🔄 Push Model" + direction LR + A[📝 Git] --> B[🔧 CI/CD] + B --> |Push credentials needed| C[☸️ Cluster] + end ``` | 📋 Aspect | 🔄 Push | 🚀 Pull (GitOps) | @@ -743,7 +747,7 @@ flowchart TD **Adopting GitOps incrementally:** ```mermaid -flowchart LR +flowchart TD A[1️⃣ Non-critical app] --> B[2️⃣ Dev environment] B --> C[3️⃣ More apps] C --> D[4️⃣ Staging] diff --git a/lectures/lec14.md b/lectures/lec14.md index 9ca7297ccd..39fc2b6d5f 100644 --- a/lectures/lec14.md +++ b/lectures/lec14.md @@ -250,16 +250,17 @@ flowchart TD **Two identical environments, instant switchover** ```mermaid -flowchart LR +flowchart TD + subgraph "After Switch" + direction TD + D[🔵 Blue v1] --> |0%| F[🌐 Traffic] + E[🟢 Green v2] --> |100%| F + end subgraph Before + direction TD A[🔵 Blue v1] --> |100%| C[🌐 Traffic] B[🟢 Green v2] --> |0%| C end - - subgraph After Switch - D[🔵 Blue v1] --> |0%| F[🌐 Traffic] - E[🟢 Green v2] --> |100%| F - end ``` **Characteristics:** @@ -710,7 +711,7 @@ kubectl argo rollouts dashboard **Netflix Progressive Delivery:** ```mermaid -flowchart LR +flowchart TD A[📦 v2] --> B[🎯 Internal 1%] B --> C[🌍 One Region 5%] C --> D[🌍 All Regions 25%] diff --git a/lectures/lec15.md b/lectures/lec15.md index eb828de609..3ca6365e67 100644 --- a/lectures/lec15.md +++ b/lectures/lec15.md @@ -90,13 +90,16 @@ By the end of this lecture, you will: ```mermaid flowchart TD - A[📦 Deployment] --> B[📦 Pod-abc123] - A --> C[📦 Pod-def456] - A --> D[📦 Pod-ghi789] - - E[Pods are interchangeable] - F[Random names] - G[Any pod can be replaced] + subgraph Deployments + A[📦 Deployment] --> B[📦 Pod-abc123] + A --> C[📦 Pod-def456] + A --> D[📦 Pod-ghi789] + end + subgraph Characteristics + E[Pods are interchangeable] + F[Random names] + G[Any pod can be replaced] + end ``` * ✅ **Great for:** Web servers, API services, workers @@ -499,7 +502,7 @@ topk(5, sum by (pod) (rate(container_cpu_usage_seconds_total[5m]))) **All-in-one monitoring solution:** ```mermaid -flowchart TD +flowchart LR A[📦 kube-prometheus-stack] --> B[📊 Prometheus] A --> C[📈 Grafana] A --> D[🔔 Alertmanager] diff --git a/lectures/lec16.md b/lectures/lec16.md index 2f8bf01d5b..23b3cc12bc 100644 --- a/lectures/lec16.md +++ b/lectures/lec16.md @@ -124,7 +124,7 @@ flowchart TD ## 📍 Slide 8 – 📊 The Abstraction Spectrum ```mermaid -flowchart LR +flowchart TD A[🖥️ Bare Metal] --> B[☁️ VMs/IaaS] B --> C[☸️ Kubernetes] C --> D[✈️ PaaS] diff --git a/lectures/lec2.md b/lectures/lec2.md index 46a3e0485a..7523c9ebdf 100644 --- a/lectures/lec2.md +++ b/lectures/lec2.md @@ -122,11 +122,13 @@ flowchart TD ```mermaid flowchart TD - subgraph VM1[🖥️ VM 1 - 15GB] + subgraph VM1["🖥️ VM 1 - 15GB"] + direction TD App1[📱 App] --> OS1[🖥️ Full OS] OS1 --> Kernel1[🧠 Kernel] end - subgraph VM2[🖥️ VM 2 - 15GB] + subgraph VM2["🖥️ VM 2 - 15GB"] + direction TD App2[📱 App] --> OS2[🖥️ Full OS] OS2 --> Kernel2[🧠 Kernel] end @@ -226,12 +228,12 @@ flowchart LR ```mermaid flowchart TD - subgraph Host[🖥️ Host System] - subgraph NS1[📦 Container 1 Namespace] + subgraph Host["🖥️ Host System"] + subgraph NS1["📦 Container 1 Namespace"] P1[PID 1: app] Net1[eth0: 172.17.0.2] end - subgraph NS2[📦 Container 2 Namespace] + subgraph NS2["📦 Container 2 Namespace"] P2[PID 1: app] Net2[eth0: 172.17.0.3] end @@ -275,12 +277,12 @@ flowchart LR ```mermaid flowchart TD - subgraph Image[📦 Image Layers - Read Only] + subgraph Image["📦 Image Layers - Read Only"] L1[🐧 Layer 1: Base OS] L2[📦 Layer 2: Dependencies] L3[📁 Layer 3: App Code] end - subgraph Container[🏃 Container Layer - Read/Write] + subgraph Container["🏃 Container Layer - Read/Write"] L4[✏️ Layer 4: Runtime Changes] end L1 --> L2 --> L3 --> L4 @@ -297,13 +299,13 @@ flowchart TD ```mermaid flowchart TD - subgraph Docker[🐳 Docker Engine] + subgraph Docker["🐳 Docker Engine"] CLI[🖥️ Docker CLI] Daemon[⚙️ dockerd] Containerd[📦 containerd] Runc[🏃 runc] end - subgraph Kernel[🐧 Linux Kernel] + subgraph Kernel["🐧 Linux Kernel"] NS[🔒 Namespaces] CG[🎛️ cgroups] UFS[📂 overlay2] @@ -694,11 +696,11 @@ tests/ ```mermaid flowchart LR - subgraph Stage1[🔨 Builder Stage] + subgraph Stage1["🔨 Builder Stage"] SDK[📦 Full SDK] Compile[⚙️ Compile] end - subgraph Stage2[🚀 Runtime Stage] + subgraph Stage2["🚀 Runtime Stage"] Binary[📦 Binary Only] Minimal[🐧 Minimal OS] end diff --git a/lectures/lec3.md b/lectures/lec3.md index 9afebb8b15..428f4032c6 100644 --- a/lectures/lec3.md +++ b/lectures/lec3.md @@ -233,7 +233,7 @@ flowchart LR ```mermaid flowchart TD - subgraph Pyramid[🔺 Testing Pyramid] + subgraph Pyramid["🔺 Testing Pyramid"] E2E[🌐 E2E Tests
Few, Slow, Expensive] INT[🔗 Integration Tests
Some, Moderate] UNIT[🧪 Unit Tests
Many, Fast, Cheap] diff --git a/lectures/lec4.md b/lectures/lec4.md index acfe810526..a710d34350 100644 --- a/lectures/lec4.md +++ b/lectures/lec4.md @@ -98,12 +98,12 @@ flowchart LR ```mermaid flowchart TD - subgraph 🐶 Pets + subgraph Pets["🐶 Pets"] P1[web-prod-01] P2[db-master] P3[app-legacy] end - subgraph 🐄 Cattle + subgraph Cattle["🐄 Cattle"] C1[instance-001] C2[instance-002] C3[instance-003] @@ -223,11 +223,13 @@ flowchart LR ```mermaid flowchart TD subgraph Declarative + direction TD D1[📝 Define desired state] D2[🤖 Tool figures out how] D1 --> D2 end subgraph Imperative + direction TD I1[📝 Define exact steps] I2[🔧 Execute step by step] I1 --> I2 @@ -602,16 +604,18 @@ flowchart TD ## 📍 Slide 30 – 🌊 From Snowflakes to Cattle ```mermaid -flowchart LR - subgraph 😱 Snowflakes +flowchart TD + subgraph Snowflakes["😱 Snowflakes"] Manual[🔧 Manual Setup] Unique[❄️ Unique Servers] Drift[📋 Configuration Drift] + Manual --> Unique --> Drift end - subgraph 🐄 Cattle + subgraph Cattle["🐄 Cattle"] Code[📝 Code-Defined] Identical[🔄 Identical Servers] Reproducible[✅ Reproducible] + Code --> Identical --> Reproducible end Snowflakes -->|🚀 IaC| Cattle ``` diff --git a/lectures/lec5.md b/lectures/lec5.md index 5bcfba6c1a..cac8b28512 100644 --- a/lectures/lec5.md +++ b/lectures/lec5.md @@ -330,11 +330,12 @@ ansible-playbook -i inventory/hosts.ini playbook.yml ```mermaid flowchart TD - subgraph ❌ Without Roles + subgraph "❌ Without Roles" + direction TD P1[📝 One huge playbook] P1 --> Problem[😰 Hard to maintain] end - subgraph ✅ With Roles + subgraph "✅ With Roles" R1[📦 common role] R2[📦 docker role] R3[📦 app role] @@ -623,15 +624,17 @@ server1 : ok=15 changed=0 unreachable=0 failed=0 ```mermaid flowchart LR - subgraph 😱 Manual + subgraph Manual["😱 Manual"] SSH[🔌 SSH Sessions] Commands[💻 Run Commands] Hope[🙏 Hope It Works] + SSH --> Commands --> Hope end - subgraph 🤖 Automated + subgraph Automated["🤖 Automated"] Playbook[📝 Playbooks] Roles[📦 Roles] Consistent[✅ Consistent] + Playbook --> Roles --> Consistent end Manual -->|🚀 Ansible| Automated ``` diff --git a/lectures/lec6.md b/lectures/lec6.md index a78ba20b5b..8473690b74 100644 --- a/lectures/lec6.md +++ b/lectures/lec6.md @@ -221,15 +221,17 @@ flowchart TD ## 📍 Slide 13 – 🛡️ Block Benefits ```mermaid -flowchart LR - subgraph Without Blocks - T1[Task 1] --> T2[Task 2] - T2 -->|❌ Fail| Stop[😱 Playbook Stops] - end - subgraph With Blocks +flowchart TD + subgraph "With Blocks" + direction TD B1[🧱 Block] -->|❌ Fail| R1[🔧 Rescue] R1 --> A1[✅ Always] end + subgraph "Without Blocks" + direction TD + T1[Task 1] --> T2[Task 2] + T2 -->|❌ Fail| Stop[😱 Playbook Stops] + end ``` **🛡️ Advantages:** @@ -651,15 +653,17 @@ flowchart TD ```mermaid flowchart LR - subgraph 😱 Manual + subgraph Manual["😱 Manual"] SSH[🔌 SSH to servers] Commands[💻 Run commands] Hope[🙏 Hope it works] + SSH --> Commands --> Hope end - subgraph 🤖 Automated + subgraph Automated["🤖 Automated"] Push[📤 Git push] CI[🔄 CI/CD] Deploy[🚀 Ansible] + Push --> CI --> Deploy end Manual -->|🚀 Automate| Automated ``` diff --git a/lectures/lec7.md b/lectures/lec7.md index b00d0ad39f..555253856b 100644 --- a/lectures/lec7.md +++ b/lectures/lec7.md @@ -247,10 +247,10 @@ flowchart LR ```mermaid flowchart LR - subgraph ❌ Unstructured + subgraph "❌ Unstructured" U1[ERROR: Failed to connect to db at 10:23] end - subgraph ✅ Structured + subgraph "✅ Structured" S1[JSON with fields] end U1 --> Hard[😰 Hard to parse] @@ -637,15 +637,17 @@ flowchart LR ```mermaid flowchart LR - subgraph 😱 Blind + subgraph Blind["😱 Blind"] SSH[🔌 SSH grep] Guess[🤷 Guesswork] Slow[⏱️ Hours] + SSH --- Guess --- Slow end - subgraph 🔍 Observable + subgraph Observable["🔍 Observable"] Dashboard[📊 Dashboard] Query[🔍 LogQL] Fast[⚡ Minutes] + Dashboard --- Query --- Fast end Blind -->|🚀 Loki| Observable ``` @@ -730,7 +732,7 @@ healthcheck: ## 📍 Slide 34 – 📈 Career Path: Observability Skills ```mermaid -flowchart LR +flowchart TD Junior[🌱 Junior: Basic logging] --> Mid[💼 Mid: Structured logging & dashboards] Mid --> Senior[⭐ Senior: Full observability stack] Senior --> Principal[🏆 Principal: Observability strategy] diff --git a/lectures/lec8.md b/lectures/lec8.md index e049286422..563d095570 100644 --- a/lectures/lec8.md +++ b/lectures/lec8.md @@ -187,11 +187,11 @@ flowchart LR ```mermaid flowchart TD - subgraph Pull Prometheus + subgraph "Pull Prometheus" P1[💾 Prometheus] -->|🔄 Scrape| T1[📦 Target] P1 -->|🔄 Scrape| T2[📦 Target] end - subgraph Push StatsD + subgraph "Push StatsD" S1[📦 App] -->|📤 Push| D1[💾 Collector] S2[📦 App] -->|📤 Push| D1 end @@ -584,15 +584,17 @@ flowchart LR ```mermaid flowchart LR - subgraph 😱 Guessing + subgraph Guessing["😱 Guessing"] NoData[🤷 No Data] Reactive[🔥 Reactive] Slow[⏱️ Slow Detection] + NoData --- Reactive --- Slow end - subgraph 📊 Measuring + subgraph Measuring["📊 Measuring"] Metrics[📈 Real Metrics] Proactive[⚡ Proactive] Fast[🚀 Instant Detection] + Metrics --- Proactive --- Fast end Guessing -->|🚀 Prometheus| Measuring ``` diff --git a/lectures/lec9.md b/lectures/lec9.md index e5a265fd11..181d506508 100644 --- a/lectures/lec9.md +++ b/lectures/lec9.md @@ -185,11 +185,13 @@ flowchart LR ```mermaid flowchart TD subgraph Declarative + direction TD D1[📝 Define: 3 replicas] D2[☸️ K8s makes it happen] D1 --> D2 end subgraph Imperative + direction TD I1[💻 Run: create pod 1] I2[💻 Run: create pod 2] I3[💻 Run: create pod 3] @@ -209,18 +211,18 @@ flowchart TD ## 📍 Slide 13 – 🏗️ Kubernetes Architecture ```mermaid -flowchart TD - subgraph Control Plane +flowchart LR + subgraph "Worker Nodes" + Kubelet[🤖 kubelet] + Proxy[🌐 kube-proxy] + Runtime[🐳 Container Runtime] + end + subgraph "Control Plane" API[📡 API Server] Scheduler[📊 Scheduler] Controller[🔄 Controller Manager] ETCD[💾 etcd] end - subgraph Worker Nodes - Kubelet[🤖 kubelet] - Proxy[🌐 kube-proxy] - Runtime[🐳 Container Runtime] - end API --> Scheduler API --> Controller API --> ETCD @@ -644,15 +646,17 @@ spec: ```mermaid flowchart LR - subgraph 😱 Manual + subgraph Manual["😱 Manual"] SSH[🔌 SSH to servers] Docker[🐳 docker run] Restart[🔄 Manual restart] + SSH --- Docker --- Restart end - subgraph ☸️ Orchestrated + subgraph Orchestrated["☸️ Orchestrated"] Manifest[📝 YAML Manifest] Apply[kubectl apply] AutoHeal[🏥 Auto-healing] + Manifest --- Apply --- AutoHeal end Manual -->|🚀 Kubernetes| Orchestrated ``` From fc197a6a191d5aa82d47df1a525c734980645ac9 Mon Sep 17 00:00:00 2001 From: Bulat Gazizov Date: Thu, 14 May 2026 21:28:10 +0300 Subject: [PATCH 6/6] lab 17 --- WORKERS.md | 145 + edge-api/.editorconfig | 12 + edge-api/.gitignore | 167 + edge-api/.prettierrc | 6 + edge-api/.vscode/settings.json | 5 + edge-api/package-lock.json | 2826 ++++++ edge-api/package.json | 19 + edge-api/src/index.ts | 59 + edge-api/tsconfig.json | 46 + edge-api/vitest.config.mts | 11 + edge-api/worker-configuration.d.ts | 13573 +++++++++++++++++++++++++++ edge-api/wrangler.jsonc | 55 + screenshots/image-1.png | Bin 0 -> 174994 bytes screenshots/image.png | Bin 0 -> 108556 bytes 14 files changed, 16924 insertions(+) create mode 100644 WORKERS.md create mode 100644 edge-api/.editorconfig create mode 100644 edge-api/.gitignore create mode 100644 edge-api/.prettierrc create mode 100644 edge-api/.vscode/settings.json create mode 100644 edge-api/package-lock.json create mode 100644 edge-api/package.json create mode 100644 edge-api/src/index.ts create mode 100644 edge-api/tsconfig.json create mode 100644 edge-api/vitest.config.mts create mode 100644 edge-api/worker-configuration.d.ts create mode 100644 edge-api/wrangler.jsonc create mode 100644 screenshots/image-1.png create mode 100644 screenshots/image.png diff --git a/WORKERS.md b/WORKERS.md new file mode 100644 index 0000000000..d5d3a6365d --- /dev/null +++ b/WORKERS.md @@ -0,0 +1,145 @@ +# Lab 17 + +## **Deployment Summary** + +### Worker URL + +- + +### Main routes + +| Route | Purpose | Returns | +|-------|---------|---------| +| **`/`** | Root endpoint with app metadata | JSON with app name, greeting, and timestamp | +| **`/health`** | Health check | `{ "status": "ok" }` | +| **`/edge`** | Edge metadata (geolocation, network info) | JSON with colo, country, city, ASN, HTTP protocol, TLS version | +| **`/counter`** | KV-backed persistent visit counter | JSON with current visit count | + +### Configuration used + +**Plaintext Environment Variables (in `wrangler.jsonc`):** + +- `APP_NAME`: "edge-api" +- `COURSE_NAME`: "devops-core" + +**Secrets (configured with `npx wrangler secret put`):** + +- `API_TOKEN` +- `ADMIN_EMAIL` + +**Bindings:** + +- **KV Namespace:** `SETTINGS` + - Stores: visit counter with key `"visits"` + - Persists across deployments and redeployments + +## **Evidence** + +- Screenshot of Cloudflare dashboard + +![alt text](screenshots/image-1.png) + +- Example `/edge` JSON response + +```bash +curl https://edge-api.pizza1093.workers.dev/edge +{"colo":"WAW","country":"PL","city":"Warsaw","asn":209693,"httpProtocol":"HTTP/2","tlsVersion":"TLSv1.3"} +``` + +- Example log or metrics screenshot + +```bash + npx wrangler tail + + ⛅️ wrangler 4.90.1 +─────────────────── +Successfully created tail, expires at 2026-05-14T13:35:12Z +Connected to edge-api, waiting for logs... + +GET https://edge-api.pizza1093.workers.dev/edge - Ok @ 5/14/2026, 10:41:55 AM + (log) path /edge colo WAW +GET https://edge-api.pizza1093.workers.dev/counter - Ok @ 5/14/2026, 10:42:08 AM + (log) path /counter colo WAW + +``` + +![alt text](screenshots/image.png) + +- Persistency verification + +```bash +curl https://edge-api.pizza1093.workers.dev/counter +{"visits":4} +curl https://edge-api.pizza1093.workers.dev/counter +{"visits":5} +``` + +## **Kubernetes vs Cloudflare Workers Comparison** + +| Aspect | Kubernetes | Cloudflare Workers | +| ------ | ---------- | ------------------ | +| Setup complexity | Very high, requires deep kubernetes understanding | Low enough, just some commands and one config file | +| Deployment speed | several minutes (it depends) | about minute | +| Global distribution | Manual choose region | Automatic | +| Cost (for small apps) | expensive, because you pay also for the cluster itself | very cheap | +| State/persistence model | external database or pv | workers KV: simple key-value store at the edge; automatic global replication | +| Control/flexibility | very high, any runtime, any network configuration and etc | V8 runtime only, no arbitrary system access | +| Best use case | Long-running services, stateful applications, monoliths, complex microservices, batch jobs, custom infrastructure | Lightweight APIs, edge routing, request transformation, serverless functions, globally distributed logic | + +1. **When to Use Each** + +- Scenarios favoring Kubernetes + - Long-running background jobs - Workers cold-start in milliseconds but are designed for request-response cycles, not persistent processes + - Complex stateful systems - Multi-service architectures with inter-service communication, transactions, and shared databases + - Custom runtime requirements - Need Python, Go, Java, or other languages; Workers is JavaScript/TypeScript only + - Direct hardware/OS access - Require low-level networking, file system control, or specific system libraries + - High compute intensity - CPU-heavy workloads (video processing, ML models); Workers have execution time limits (~30 seconds) + - Large teams - RBAC, audit logs, resource quotas, and multi-tenant isolation are native to Kubernetes + +- Scenarios favoring Workers + + - Global low-latency APIs - Your code runs in 300+ data centers; no "cold region" problem like Kubernetes + - Request/response workflows - HTTP APIs, webhooks, reverse proxies, content transformation + - Rapid deployment cycles - Deploy new versions in seconds; rollbacks are instant + - Low traffic, high uptime - Pay for what you use; no idle cluster costs + - Edge logic & routing - Request modification, authentication, A/B testing, geolocation-based responses + - Simple persistence needs - KV is perfect for sessions, caches, feature flags, leaderboards + - Teams starting serverless - Less operational overhead; no cluster management, networking, or scaling configuration + +- Your recommendation + + **Choose Cloudflare Workers if:** + - You're building a lightweight, globally distributed API or edge function + - Your deployment speed and operational simplicity matter + - You want to avoid infrastructure management + + **Choose Kubernetes if:** + - You need advanced runtime features, multiple languages, or direct system access + - Your workload is complex, stateful, or requires long-running processes + - Your team has Kubernetes expertise and wants maximum control + +1. **Reflection** + +- What felt easier than Kubernetes? + - Deployment is actually trivial, no need to build docker image, configure and etc. +- What felt more constrained? + - I cannot run anything that I may want, only specific runtimes, Also, If I understand it right, I cannot use custom protocols, sockets and etc. Only http based. I can deploy it only to Cloudflare. +- What changed because Workers is not a Docker host? + - Now app running in sandboxed env with his own rules. + +## Checklist + +- [X] Cloudflare account created +- [X] Workers project initialized +- [X] Wrangler authenticated +- [X] Worker deployed to `workers.dev` +- [X] `/health` endpoint working +- [X] Edge metadata endpoint implemented +- [X] At least 1 plaintext variable configured +- [X] At least 2 secrets configured +- [X] KV namespace created and bound +- [X] Persistence verified after redeploy +- [X] Logs or metrics reviewed +- [X] Deployment history viewed +- [] `WORKERS.md` documentation complete +- [] Kubernetes comparison documented diff --git a/edge-api/.editorconfig b/edge-api/.editorconfig new file mode 100644 index 0000000000..a727df347a --- /dev/null +++ b/edge-api/.editorconfig @@ -0,0 +1,12 @@ +# http://editorconfig.org +root = true + +[*] +indent_style = tab +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.yml] +indent_style = space diff --git a/edge-api/.gitignore b/edge-api/.gitignore new file mode 100644 index 0000000000..4138168d75 --- /dev/null +++ b/edge-api/.gitignore @@ -0,0 +1,167 @@ +# Logs + +logs +_.log +npm-debug.log_ +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) + +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# Runtime data + +pids +_.pid +_.seed +\*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover + +lib-cov + +# Coverage directory used by tools like istanbul + +coverage +\*.lcov + +# nyc test coverage + +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) + +.grunt + +# Bower dependency directory (https://bower.io/) + +bower_components + +# node-waf configuration + +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) + +build/Release + +# Dependency directories + +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) + +web_modules/ + +# TypeScript cache + +\*.tsbuildinfo + +# Optional npm cache directory + +.npm + +# Optional eslint cache + +.eslintcache + +# Optional stylelint cache + +.stylelintcache + +# Microbundle cache + +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history + +.node_repl_history + +# Output of 'npm pack' + +\*.tgz + +# Yarn Integrity file + +.yarn-integrity + +# parcel-bundler cache (https://parceljs.org/) + +.cache +.parcel-cache + +# Next.js build output + +.next +out + +# Nuxt.js build / generate output + +.nuxt +dist + +# Gatsby files + +.cache/ + +# Comment in the public line in if your project uses Gatsby and not Next.js + +# https://nextjs.org/blog/next-9-1#public-directory-support + +# public + +# vuepress build output + +.vuepress/dist + +# vuepress v2.x temp and cache directory + +.temp +.cache + +# Docusaurus cache and generated files + +.docusaurus + +# Serverless directories + +.serverless/ + +# FuseBox cache + +.fusebox/ + +# DynamoDB Local files + +.dynamodb/ + +# TernJS port file + +.tern-port + +# Stores VSCode versions used for testing VSCode extensions + +.vscode-test + +# yarn v2 + +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.\* + +# wrangler project + +.dev.vars* +!.dev.vars.example +.env* +!.env.example +.wrangler/ diff --git a/edge-api/.prettierrc b/edge-api/.prettierrc new file mode 100644 index 0000000000..5c7b5d3c7a --- /dev/null +++ b/edge-api/.prettierrc @@ -0,0 +1,6 @@ +{ + "printWidth": 140, + "singleQuote": true, + "semi": true, + "useTabs": true +} diff --git a/edge-api/.vscode/settings.json b/edge-api/.vscode/settings.json new file mode 100644 index 0000000000..0126e59b82 --- /dev/null +++ b/edge-api/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "wrangler.json": "jsonc" + } +} \ No newline at end of file diff --git a/edge-api/package-lock.json b/edge-api/package-lock.json new file mode 100644 index 0000000000..b65fe16c5a --- /dev/null +++ b/edge-api/package-lock.json @@ -0,0 +1,2826 @@ +{ + "name": "edge-api", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "edge-api", + "version": "0.0.0", + "devDependencies": { + "@cloudflare/vitest-pool-workers": "^0.12.4", + "@types/node": "^25.7.0", + "typescript": "^5.5.2", + "vitest": "~3.2.0", + "wrangler": "^4.90.1" + } + }, + "node_modules/@cloudflare/kv-asset-handler": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.5.0.tgz", + "integrity": "sha512-jxQYkj8dSIzc0cD6cMMNdOc1UVjqSqu8BZdor5s8cGjW2I8BjODt/kWPVdY+u9zj3ms75Q5qaZgnxUad83+eAg==", + "dev": true, + "license": "MIT OR Apache-2.0", + "engines": { + "node": ">=22.0.0" + } + }, + "node_modules/@cloudflare/unenv-preset": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.16.1.tgz", + "integrity": "sha512-ECxObrMfyTl5bhQf/lZCXwo5G6xX9IAUo+nDMKK4SZ8m4Jvvxp52vilxyySSWh2YTZz8+HQ07qGH/2rEom1vDw==", + "dev": true, + "license": "MIT OR Apache-2.0", + "peerDependencies": { + "unenv": "2.0.0-rc.24", + "workerd": ">1.20260305.0 <2.0.0-0" + }, + "peerDependenciesMeta": { + "workerd": { + "optional": true + } + } + }, + "node_modules/@cloudflare/vitest-pool-workers": { + "version": "0.12.21", + "resolved": "https://registry.npmjs.org/@cloudflare/vitest-pool-workers/-/vitest-pool-workers-0.12.21.tgz", + "integrity": "sha512-xqvqVR+qAhekXWaTNY36UtFFmHrz13yGUoWVGOu6LDC2ABiQqI1E1lQ3eUZY8KVB+1FXY/mP5dB6oD07XUGnPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cjs-module-lexer": "^1.2.3", + "esbuild": "0.27.3", + "miniflare": "4.20260310.0", + "wrangler": "4.72.0" + }, + "peerDependencies": { + "@vitest/runner": "2.0.x - 3.2.x", + "@vitest/snapshot": "2.0.x - 3.2.x", + "vitest": "2.0.x - 3.2.x" + } + }, + "node_modules/@cloudflare/vitest-pool-workers/node_modules/@cloudflare/kv-asset-handler": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.4.2.tgz", + "integrity": "sha512-SIOD2DxrRRwQ+jgzlXCqoEFiKOFqaPjhnNTGKXSRLvp1HiOvapLaFG2kEr9dYQTYe8rKrd9uvDUzmAITeNyaHQ==", + "dev": true, + "license": "MIT OR Apache-2.0", + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/@cloudflare/vitest-pool-workers/node_modules/@cloudflare/unenv-preset": { + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/@cloudflare/unenv-preset/-/unenv-preset-2.15.0.tgz", + "integrity": "sha512-EGYmJaGZKWl+X8tXxcnx4v2bOZSjQeNI5dWFeXivgX9+YCT69AkzHHwlNbVpqtEUTbew8eQurpyOpeN8fg00nw==", + "dev": true, + "license": "MIT OR Apache-2.0", + "peerDependencies": { + "unenv": "2.0.0-rc.24", + "workerd": "1.20260301.1 || ~1.20260302.1 || ~1.20260303.1 || ~1.20260304.1 || >1.20260305.0 <2.0.0-0" + }, + "peerDependenciesMeta": { + "workerd": { + "optional": true + } + } + }, + "node_modules/@cloudflare/vitest-pool-workers/node_modules/wrangler": { + "version": "4.72.0", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.72.0.tgz", + "integrity": "sha512-bKkb8150JGzJZJWiNB2nu/33smVfawmfYiecA6rW4XH7xS23/jqMbgpdelM34W/7a1IhR66qeQGVqTRXROtAZg==", + "dev": true, + "license": "MIT OR Apache-2.0", + "dependencies": { + "@cloudflare/kv-asset-handler": "0.4.2", + "@cloudflare/unenv-preset": "2.15.0", + "blake3-wasm": "2.1.5", + "esbuild": "0.27.3", + "miniflare": "4.20260310.0", + "path-to-regexp": "6.3.0", + "unenv": "2.0.0-rc.24", + "workerd": "1.20260310.1" + }, + "bin": { + "wrangler": "bin/wrangler.js", + "wrangler2": "bin/wrangler.js" + }, + "engines": { + "node": ">=20.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@cloudflare/workers-types": "^4.20260310.1" + }, + "peerDependenciesMeta": { + "@cloudflare/workers-types": { + "optional": true + } + } + }, + "node_modules/@cloudflare/workerd-darwin-64": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260310.1.tgz", + "integrity": "sha512-hF2VpoWaMb1fiGCQJqCY6M8I+2QQqjkyY4LiDYdTL5D/w6C1l5v1zhc0/jrjdD1DXfpJtpcSMSmEPjHse4p9Ig==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-darwin-arm64": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260310.1.tgz", + "integrity": "sha512-h/Vl3XrYYPI6yFDE27XO1QPq/1G1lKIM8tzZGIWYpntK3IN5XtH3Ee/sLaegpJ49aIJoqhF2mVAZ6Yw+Vk2gJw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-linux-64": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260310.1.tgz", + "integrity": "sha512-XzQ0GZ8G5P4d74bQYOIP2Su4CLdNPpYidrInaSOuSxMw+HamsHaFrjVsrV2mPy/yk2hi6SY2yMbgKFK9YjA7vw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-linux-arm64": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260310.1.tgz", + "integrity": "sha512-sxv4CxnN4ZR0uQGTFVGa0V4KTqwdej/czpIc5tYS86G8FQQoGIBiAIs2VvU7b8EROPcandxYHDBPTb+D9HIMPw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cloudflare/workerd-windows-64": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260310.1.tgz", + "integrity": "sha512-+1ZTViWKJypLfgH/luAHCqkent0DEBjAjvO40iAhOMHRLYP/SPphLvr4Jpi6lb+sIocS8Q1QZL4uM5Etg1Wskg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@emnapi/runtime": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.10.0.tgz", + "integrity": "sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "tslib": "^2.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.3.tgz", + "integrity": "sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.3.tgz", + "integrity": "sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.3.tgz", + "integrity": "sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.3.tgz", + "integrity": "sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.3.tgz", + "integrity": "sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.3.tgz", + "integrity": "sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.3.tgz", + "integrity": "sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.3.tgz", + "integrity": "sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.3.tgz", + "integrity": "sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.3.tgz", + "integrity": "sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.3.tgz", + "integrity": "sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.3.tgz", + "integrity": "sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.3.tgz", + "integrity": "sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.3.tgz", + "integrity": "sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.3.tgz", + "integrity": "sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.3.tgz", + "integrity": "sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.3.tgz", + "integrity": "sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.3.tgz", + "integrity": "sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.3.tgz", + "integrity": "sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.3.tgz", + "integrity": "sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.3.tgz", + "integrity": "sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openharmony-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.3.tgz", + "integrity": "sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.3.tgz", + "integrity": "sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.3.tgz", + "integrity": "sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.3.tgz", + "integrity": "sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.3.tgz", + "integrity": "sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/colour": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz", + "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@img/sharp-darwin-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz", + "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-darwin-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz", + "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-darwin-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-libvips-darwin-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz", + "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-darwin-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz", + "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "darwin" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz", + "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz", + "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-ppc64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz", + "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-riscv64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz", + "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-s390x": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz", + "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linux-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz", + "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-arm64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz", + "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-libvips-linuxmusl-x64": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz", + "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "LGPL-3.0-or-later", + "optional": true, + "os": [ + "linux" + ], + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-linux-arm": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz", + "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz", + "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-ppc64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz", + "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-ppc64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-riscv64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz", + "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-riscv64": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-s390x": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz", + "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-s390x": "1.2.4" + } + }, + "node_modules/@img/sharp-linux-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz", + "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linux-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz", + "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4" + } + }, + "node_modules/@img/sharp-linuxmusl-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz", + "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-libvips-linuxmusl-x64": "1.2.4" + } + }, + "node_modules/@img/sharp-wasm32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz", + "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==", + "cpu": [ + "wasm32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT", + "optional": true, + "dependencies": { + "@emnapi/runtime": "^1.7.0" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-arm64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz", + "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-ia32": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz", + "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@img/sharp-win32-x64": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz", + "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND LGPL-3.0-or-later", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@poppinss/colors": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/@poppinss/colors/-/colors-4.1.6.tgz", + "integrity": "sha512-H9xkIdFswbS8n1d6vmRd8+c10t2Qe+rZITbbDHHkQixH5+2x1FDGmi/0K+WgWiqQFKPSlIYB7jlH6Kpfn6Fleg==", + "dev": true, + "license": "MIT", + "dependencies": { + "kleur": "^4.1.5" + } + }, + "node_modules/@poppinss/dumper": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/@poppinss/dumper/-/dumper-0.6.5.tgz", + "integrity": "sha512-NBdYIb90J7LfOI32dOewKI1r7wnkiH6m920puQ3qHUeZkxNkQiFnXVWoE6YtFSv6QOiPPf7ys6i+HWWecDz7sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@poppinss/colors": "^4.1.5", + "@sindresorhus/is": "^7.0.2", + "supports-color": "^10.0.0" + } + }, + "node_modules/@poppinss/exception": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@poppinss/exception/-/exception-1.2.3.tgz", + "integrity": "sha512-dCED+QRChTVatE9ibtoaxc+WkdzOSjYTKi/+uacHWIsfodVfpsueo3+DKpgU5Px8qXjgmXkSvhXvSCz3fnP9lw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.3.tgz", + "integrity": "sha512-x35CNW/ANXG3hE/EZpRU8MXX1JDN86hBb2wMGAtltkz7pc6cxgjpy1OMMfDosOQ+2hWqIkag/fGok1Yady9nGw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.3.tgz", + "integrity": "sha512-xw3xtkDApIOGayehp2+Rz4zimfkaX65r4t47iy+ymQB2G4iJCBBfj0ogVg5jpvjpn8UWn/+q9tprxleYeNp3Hw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.3.tgz", + "integrity": "sha512-vo6Y5Qfpx7/5EaamIwi0WqW2+zfiusVihKatLvtN1VFVy3D13uERk/6gZLU1UiHRL6fDXqj/ELIeVRGnvcTE1g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.3.tgz", + "integrity": "sha512-D+0QGcZhBzTN82weOnsSlY7V7+RMmPuF1CkbxyMAGE8+ZHeUjyb76ZiWmBlCu//AQQONvxcqRbwZTajZKqjuOw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.3.tgz", + "integrity": "sha512-6HnvHCT7fDyj6R0Ph7A6x8dQS/S38MClRWeDLqc0MdfWkxjiu1HSDYrdPhqSILzjTIC/pnXbbJbo+ft+gy/9hQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.3.tgz", + "integrity": "sha512-KHLgC3WKlUYW3ShFKnnosZDOJ0xjg9zp7au3sIm2bs/tGBeC2ipmvRh/N7JKi0t9Ue20C0dpEshi8WUubg+cnA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.3.tgz", + "integrity": "sha512-DV6fJoxEYWJOvaZIsok7KrYl0tPvga5OZ2yvKHNNYyk/2roMLqQAbGhr78EQ5YhHpnhLKJD3S1WFusAkmUuV5g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.3.tgz", + "integrity": "sha512-mQKoJAzvuOs6F+TZybQO4GOTSMUu7v0WdxEk24krQ/uUxXoPTtHjuaUuPmFhtBcM4K0ons8nrE3JyhTuCFtT/w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.3.tgz", + "integrity": "sha512-Whjj2qoiJ6+OOJMGptTYazaJvjOJm+iKHpXQM1P3LzGjt7Ff++Tp7nH4N8J/BUA7R9IHfDyx4DJIflifwnbmIA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.3.tgz", + "integrity": "sha512-4YTNHKqGng5+yiZt3mg77nmyuCfmNfX4fPmyUapBcIk+BdwSwmCWGXOUxhXbBEkFHtoN5boLj/5NON+u5QC9tg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.3.tgz", + "integrity": "sha512-SU3kNlhkpI4UqlUc2VXPGK9o886ZsSeGfMAX2ba2b8DKmMXq4AL7KUrkSWVbb7koVqx41Yczx6dx5PNargIrEA==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.3.tgz", + "integrity": "sha512-6lDLl5h4TXpB1mTf2rQWnAk/LcXrx9vBfu/DT5TIPhvMhRWaZ5MxkIc8u4lJAmBo6klTe1ywXIUHFjylW505sg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.3.tgz", + "integrity": "sha512-BMo8bOw8evlup/8G+cj5xWtPyp93xPdyoSN16Zy90Q2QZ0ZYRhCt6ZJSwbrRzG9HApFabjwj2p25TUPDWrhzqQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.3.tgz", + "integrity": "sha512-E0L8X1dZN1/Rph+5VPF6Xj2G7JJvMACVXtamTJIDrVI44Y3K+G8gQaMEAavbqCGTa16InptiVrX6eM6pmJ+7qA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.3.tgz", + "integrity": "sha512-oZJ/WHaVfHUiRAtmTAeo3DcevNsVvH8mbvodjZy7D5QKvCefO371SiKRpxoDcCxB3PTRTLayWBkvmDQKTcX/sw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.3.tgz", + "integrity": "sha512-Dhbyh7j9FybM3YaTgaHmVALwA8AkUwTPccyCQ79TG9AJUsMQqgN1DDEZNr4+QUfwiWvLDumW5vdwzoeUF+TNxQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.3.tgz", + "integrity": "sha512-cJd1X5XhHHlltkaypz1UcWLA8AcoIi1aWhsvaWDskD1oz2eKCypnqvTQ8ykMNI0RSmm7NkTdSqSSD7zM0xa6Ig==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.3.tgz", + "integrity": "sha512-DAZDBHQfG2oQuhY7mc6I3/qB4LU2fQCjRvxbDwd/Jdvb9fypP4IJ4qmtu6lNjes6B531AI8cg1aKC2di97bUxA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.3.tgz", + "integrity": "sha512-cRxsE8c13mZOh3vP+wLDxpQBRrOHDIGOWyDL93Sy0Ga8y515fBcC2pjUfFwUe5T7tqvTvWbCpg1URM/AXdWIXA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.3.tgz", + "integrity": "sha512-QaWcIgRxqEdQdhJqW4DJctsH6HCmo5vHxY0krHSX4jMtOqfzC+dqDGuHM87bu4H8JBeibWx7jFz+h6/4C8wA5Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.3.tgz", + "integrity": "sha512-AaXwSvUi3QIPtroAUw1t5yHGIyqKEXwH54WUocFolZhpGDruJcs8c+xPNDRn4XiQsS7MEwnYsHW2l0MBLDMkWg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.3.tgz", + "integrity": "sha512-65LAKM/bAWDqKNEelHlcHvm2V+Vfb8C6INFxQXRHCvaVN1rJfwr4NvdP4FyzUaLqWfaCGaadf6UbTm8xJeYfEg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.3.tgz", + "integrity": "sha512-EEM2gyhBF5MFnI6vMKdX1LAosE627RGBzIoGMdLloPZkXrUN0Ckqgr2Qi8+J3zip/8NVVro3/FjB+tjhZUgUHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.3.tgz", + "integrity": "sha512-E5Eb5H/DpxaoXH++Qkv28RcUJboMopmdDUALBczvHMf7hNIxaDZqwY5lK12UK1BHacSmvupoEWGu+n993Z0y1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.3.tgz", + "integrity": "sha512-hPt/bgL5cE+Qp+/TPHBqptcAgPzgj46mPcg/16zNUmbQk0j+mOEQV/+Lqu8QRtDV3Ek95Q6FeFITpuhl6OTsAA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sindresorhus/is": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-7.2.0.tgz", + "integrity": "sha512-P1Cz1dWaFfR4IR+U13mqqiGsLFf1KbayybWwdd2vfctdV6hDpUkgCY0nKOLLTMSoRd/jJNjtbqzf13K8DCCXQw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@speed-highlight/core": { + "version": "1.2.15", + "resolved": "https://registry.npmjs.org/@speed-highlight/core/-/core-1.2.15.tgz", + "integrity": "sha512-BMq1K3DsElxDWawkX6eLg9+CKJrTVGCBAWVuHXVUV2u0s2711qiChLSId6ikYPfxhdYocLNt3wWwSvDiTvFabw==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/@types/chai": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.3.tgz", + "integrity": "sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/deep-eql": "*", + "assertion-error": "^2.0.1" + } + }, + "node_modules/@types/deep-eql": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/deep-eql/-/deep-eql-4.0.2.tgz", + "integrity": "sha512-c9h9dVVMigMPc4bwTvC5dxqtqJZwQPePsWjPlpSOnojbor6pGqdk541lfA7AqFQr5pB1BRdq0juY9db81BwyFw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.7.0.tgz", + "integrity": "sha512-z+pdZyxE+RTQE9AcboAZCb4otwcrvgHD+GlBpPgn0emDVt0ohrTMhAwlr2Wd9nZ+nihhYFxO2pThz3C5qSu2Eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~7.21.0" + } + }, + "node_modules/@vitest/expect": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.4.tgz", + "integrity": "sha512-Io0yyORnB6sikFlt8QW5K7slY4OjqNX9jmJQ02QDda8lyM6B5oNgVWoSoKPac8/kgnCUzuHQKrSLtu/uOqqrig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/mocker": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.4.tgz", + "integrity": "sha512-46ryTE9RZO/rfDd7pEqFl7etuyzekzEhUbTW3BvmeO/BcCMEgq59BKhek3dXDWgAj4oMK6OZi+vRr1wPW6qjEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/spy": "3.2.4", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.17" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "msw": "^2.4.9", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "peerDependenciesMeta": { + "msw": { + "optional": true + }, + "vite": { + "optional": true + } + } + }, + "node_modules/@vitest/pretty-format": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.4.tgz", + "integrity": "sha512-IVNZik8IVRJRTr9fxlitMKeJeXFFFN0JaB9PHPGQ8NKQbGpfjlTx9zO4RefN8gp7eqjNy8nyK3NZmBzOPeIxtA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.4.tgz", + "integrity": "sha512-oukfKT9Mk41LreEW09vt45f8wx7DordoWUZMYdY/cyAk7w5TWkTRCNZYF7sX7n2wB7jyGAl74OxgwhPgKaqDMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/utils": "3.2.4", + "pathe": "^2.0.3", + "strip-literal": "^3.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/snapshot": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.4.tgz", + "integrity": "sha512-dEYtS7qQP2CjU27QBC5oUOxLE/v5eLkGqPE0ZKEIDGMs4vKWe7IjgLOeauHsR0D5YuuycGRO5oSRXnwnmA78fQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "magic-string": "^0.30.17", + "pathe": "^2.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/spy": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.4.tgz", + "integrity": "sha512-vAfasCOe6AIK70iP5UD11Ac4siNUNJ9i/9PZ3NKx07sG6sUxeag1LWdNrMWeKKYBLlzuK+Gn65Yd5nyL6ds+nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tinyspy": "^4.0.3" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/utils": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.4.tgz", + "integrity": "sha512-fB2V0JFrQSMsCo9HiSq3Ezpdv4iYaXRG1Sx8edX3MwxfyNn83mKiGzOcH+Fkxt4MHxr3y42fQi1oeAInqgX2QA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vitest/pretty-format": "3.2.4", + "loupe": "^3.1.4", + "tinyrainbow": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/assertion-error": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-2.0.1.tgz", + "integrity": "sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/blake3-wasm": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/blake3-wasm/-/blake3-wasm-2.1.5.tgz", + "integrity": "sha512-F1+K8EbfOZE49dtoPtmxUQrpXaBIl3ICvasLh+nJta0xkz+9kF/7uet9fLnwKqhDrmj6g+6K3Tw9yQPUg2ka5g==", + "dev": true, + "license": "MIT" + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/chai": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.3.3.tgz", + "integrity": "sha512-4zNhdJD/iOjSH0A05ea+Ke6MU5mmpQcbQsSOkgdaUMJ9zTlDTD/GYlwohmIE2u0gaxHYiVHEn1Fw9mZ/ktJWgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "assertion-error": "^2.0.1", + "check-error": "^2.1.1", + "deep-eql": "^5.0.1", + "loupe": "^3.1.0", + "pathval": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/check-error": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-2.1.3.tgz", + "integrity": "sha512-PAJdDJusoxnwm1VwW07VWwUN1sl7smmC3OKggvndJFadxxDRyFJBX/ggnu/KE4kQAB7a3Dp8f/YXC1FlUprWmA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 16" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/cookie": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz", + "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-eql": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-5.0.2.tgz", + "integrity": "sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/detect-libc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz", + "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=8" + } + }, + "node_modules/error-stack-parser-es": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-1.0.5.tgz", + "integrity": "sha512-5qucVt2XcuGMcEGgWI7i+yZpmpByQ8J1lHhcL7PwqCwu9FPP3VUXzT4ltHe5i2z9dePwEHcDVOAfSnHsOlCXRA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/es-module-lexer": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.27.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz", + "integrity": "sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.27.3", + "@esbuild/android-arm": "0.27.3", + "@esbuild/android-arm64": "0.27.3", + "@esbuild/android-x64": "0.27.3", + "@esbuild/darwin-arm64": "0.27.3", + "@esbuild/darwin-x64": "0.27.3", + "@esbuild/freebsd-arm64": "0.27.3", + "@esbuild/freebsd-x64": "0.27.3", + "@esbuild/linux-arm": "0.27.3", + "@esbuild/linux-arm64": "0.27.3", + "@esbuild/linux-ia32": "0.27.3", + "@esbuild/linux-loong64": "0.27.3", + "@esbuild/linux-mips64el": "0.27.3", + "@esbuild/linux-ppc64": "0.27.3", + "@esbuild/linux-riscv64": "0.27.3", + "@esbuild/linux-s390x": "0.27.3", + "@esbuild/linux-x64": "0.27.3", + "@esbuild/netbsd-arm64": "0.27.3", + "@esbuild/netbsd-x64": "0.27.3", + "@esbuild/openbsd-arm64": "0.27.3", + "@esbuild/openbsd-x64": "0.27.3", + "@esbuild/openharmony-arm64": "0.27.3", + "@esbuild/sunos-x64": "0.27.3", + "@esbuild/win32-arm64": "0.27.3", + "@esbuild/win32-ia32": "0.27.3", + "@esbuild/win32-x64": "0.27.3" + } + }, + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/expect-type": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.3.0.tgz", + "integrity": "sha512-knvyeauYhqjOYvQ66MznSMs83wmHrCycNEN6Ao+2AeYEfxUIkuiVxdEa1qlGEPK+We3n0THiDciYSsCcgW/DoA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.0.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/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/js-tokens": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.1.tgz", + "integrity": "sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/loupe": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-3.2.1.tgz", + "integrity": "sha512-CdzqowRJCeLU72bHvWqwRBBlLcMEtIvGrlvef74kMnV2AolS9Y8xUv1I0U/MNAWMhBlKIoyuEgoJ0t/bbwHbLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/miniflare": { + "version": "4.20260310.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260310.0.tgz", + "integrity": "sha512-uC5vNPenFpDSj5aUU3wGSABG6UUqMr+Xs1m4AkCrTHo37F4Z6xcQw5BXqViTfPDVT/zcYH1UgTVoXhr1l6ZMXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "0.8.1", + "sharp": "^0.34.5", + "undici": "7.18.2", + "workerd": "1.20260310.1", + "ws": "8.18.0", + "youch": "4.1.0-beta.10" + }, + "bin": { + "miniflare": "bootstrap.js" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "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==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.12", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.12.tgz", + "integrity": "sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/path-to-regexp": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", + "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathe": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", + "dev": true, + "license": "MIT" + }, + "node_modules/pathval": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-2.0.1.tgz", + "integrity": "sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.16" + } + }, + "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.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/postcss": { + "version": "8.5.14", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.14.tgz", + "integrity": "sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/rollup": { + "version": "4.60.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.3.tgz", + "integrity": "sha512-pAQK9HalE84QSm4Po3EmWIZPd3FnjkShVkiMlz1iligWYkWQ7wHYd1PF/T7QZ5TVSD6uSTon5gBVMSM4JfBV+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.3", + "@rollup/rollup-android-arm64": "4.60.3", + "@rollup/rollup-darwin-arm64": "4.60.3", + "@rollup/rollup-darwin-x64": "4.60.3", + "@rollup/rollup-freebsd-arm64": "4.60.3", + "@rollup/rollup-freebsd-x64": "4.60.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.3", + "@rollup/rollup-linux-arm-musleabihf": "4.60.3", + "@rollup/rollup-linux-arm64-gnu": "4.60.3", + "@rollup/rollup-linux-arm64-musl": "4.60.3", + "@rollup/rollup-linux-loong64-gnu": "4.60.3", + "@rollup/rollup-linux-loong64-musl": "4.60.3", + "@rollup/rollup-linux-ppc64-gnu": "4.60.3", + "@rollup/rollup-linux-ppc64-musl": "4.60.3", + "@rollup/rollup-linux-riscv64-gnu": "4.60.3", + "@rollup/rollup-linux-riscv64-musl": "4.60.3", + "@rollup/rollup-linux-s390x-gnu": "4.60.3", + "@rollup/rollup-linux-x64-gnu": "4.60.3", + "@rollup/rollup-linux-x64-musl": "4.60.3", + "@rollup/rollup-openbsd-x64": "4.60.3", + "@rollup/rollup-openharmony-arm64": "4.60.3", + "@rollup/rollup-win32-arm64-msvc": "4.60.3", + "@rollup/rollup-win32-ia32-msvc": "4.60.3", + "@rollup/rollup-win32-x64-gnu": "4.60.3", + "@rollup/rollup-win32-x64-msvc": "4.60.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup/node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/semver": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.8.0.tgz", + "integrity": "sha512-AcM7dV/5ul4EekoQ29Agm5vri8JNqRyj39o0qpX6vDF2GZrtutZl5RwgD1XnZjiTAfncsJhMI48QQH3sN87YNA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sharp": { + "version": "0.34.5", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz", + "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@img/colour": "^1.0.0", + "detect-libc": "^2.1.2", + "semver": "^7.7.3" + }, + "engines": { + "node": "^18.17.0 || ^20.3.0 || >=21.0.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + }, + "optionalDependencies": { + "@img/sharp-darwin-arm64": "0.34.5", + "@img/sharp-darwin-x64": "0.34.5", + "@img/sharp-libvips-darwin-arm64": "1.2.4", + "@img/sharp-libvips-darwin-x64": "1.2.4", + "@img/sharp-libvips-linux-arm": "1.2.4", + "@img/sharp-libvips-linux-arm64": "1.2.4", + "@img/sharp-libvips-linux-ppc64": "1.2.4", + "@img/sharp-libvips-linux-riscv64": "1.2.4", + "@img/sharp-libvips-linux-s390x": "1.2.4", + "@img/sharp-libvips-linux-x64": "1.2.4", + "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", + "@img/sharp-libvips-linuxmusl-x64": "1.2.4", + "@img/sharp-linux-arm": "0.34.5", + "@img/sharp-linux-arm64": "0.34.5", + "@img/sharp-linux-ppc64": "0.34.5", + "@img/sharp-linux-riscv64": "0.34.5", + "@img/sharp-linux-s390x": "0.34.5", + "@img/sharp-linux-x64": "0.34.5", + "@img/sharp-linuxmusl-arm64": "0.34.5", + "@img/sharp-linuxmusl-x64": "0.34.5", + "@img/sharp-wasm32": "0.34.5", + "@img/sharp-win32-arm64": "0.34.5", + "@img/sharp-win32-ia32": "0.34.5", + "@img/sharp-win32-x64": "0.34.5" + } + }, + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==", + "dev": true, + "license": "ISC" + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/std-env": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.10.0.tgz", + "integrity": "sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==", + "dev": true, + "license": "MIT" + }, + "node_modules/strip-literal": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-3.1.0.tgz", + "integrity": "sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-tokens": "^9.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/supports-color": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-10.2.2.tgz", + "integrity": "sha512-SS+jx45GF1QjgEXQx4NJZV9ImqmO2NPz5FNsIHrsDjh2YsHnawpan7SNQ1o8NuhrbHZy9AZhIoCUiCeaW/C80g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyexec": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.2.tgz", + "integrity": "sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/tinyglobby": { + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.4" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinypool": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.1.tgz", + "integrity": "sha512-Zba82s87IFq9A9XmjiX5uZA/ARWDrB03OHlq+Vw1fSdt0I+4/Kutwy8BP4Y/y/aORMo61FQ0vIb5j44vSo5Pkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + } + }, + "node_modules/tinyrainbow": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/tinyrainbow/-/tinyrainbow-2.0.0.tgz", + "integrity": "sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tinyspy": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.4.tgz", + "integrity": "sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "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 + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici": { + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.18.2.tgz", + "integrity": "sha512-y+8YjDFzWdQlSE9N5nzKMT3g4a5UBX1HKowfdXh0uvAnTaqqwqB92Jt4UXBAeKekDs5IaDKyJFR4X1gYVCgXcw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/undici-types": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.21.0.tgz", + "integrity": "sha512-w9IMgQrz4O0YN1LtB7K5P63vhlIOvC7opSmouCJ+ZywlPAlO9gIkJ+otk6LvGpAs2wg4econaCz3TvQ9xPoyuQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unenv": { + "version": "2.0.0-rc.24", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-2.0.0-rc.24.tgz", + "integrity": "sha512-i7qRCmY42zmCwnYlh9H2SvLEypEFGye5iRmEMKjcGi7zk9UquigRjFtTLz0TYqr0ZGLZhaMHl/foy1bZR+Cwlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "pathe": "^2.0.3" + } + }, + "node_modules/vite": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.3.tgz", + "integrity": "sha512-/4XH147Ui7OGTjg3HbdWe5arnZQSbfuRzdr9Ec7TQi5I7R+ir0Rlc9GIvD4v0XZurELqA035KVXJXpR61xhiTA==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.27.0", + "fdir": "^6.5.0", + "picomatch": "^4.0.3", + "postcss": "^8.5.6", + "rollup": "^4.43.0", + "tinyglobby": "^0.2.15" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^20.19.0 || >=22.12.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^20.19.0 || >=22.12.0", + "jiti": ">=1.21.0", + "less": "^4.0.0", + "lightningcss": "^1.21.0", + "sass": "^1.70.0", + "sass-embedded": "^1.70.0", + "stylus": ">=0.54.8", + "sugarss": "^5.0.0", + "terser": "^5.16.0", + "tsx": "^4.8.1", + "yaml": "^2.4.2" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "jiti": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + }, + "tsx": { + "optional": true + }, + "yaml": { + "optional": true + } + } + }, + "node_modules/vite-node": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.4.tgz", + "integrity": "sha512-EbKSKh+bh1E1IFxeO0pg1n4dvoOTt0UDiXMd/qn++r98+jPO1xtJilvXldeuQ8giIB5IkpjCgMleHMNEsGH6pg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.4.1", + "es-module-lexer": "^1.7.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/vitest": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", + "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/chai": "^5.2.2", + "@vitest/expect": "3.2.4", + "@vitest/mocker": "3.2.4", + "@vitest/pretty-format": "^3.2.4", + "@vitest/runner": "3.2.4", + "@vitest/snapshot": "3.2.4", + "@vitest/spy": "3.2.4", + "@vitest/utils": "3.2.4", + "chai": "^5.2.0", + "debug": "^4.4.1", + "expect-type": "^1.2.1", + "magic-string": "^0.30.17", + "pathe": "^2.0.3", + "picomatch": "^4.0.2", + "std-env": "^3.9.0", + "tinybench": "^2.9.0", + "tinyexec": "^0.3.2", + "tinyglobby": "^0.2.14", + "tinypool": "^1.1.1", + "tinyrainbow": "^2.0.0", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", + "vite-node": "3.2.4", + "why-is-node-running": "^2.3.0" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": "^18.0.0 || ^20.0.0 || >=22.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@types/debug": "^4.1.12", + "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", + "@vitest/browser": "3.2.4", + "@vitest/ui": "3.2.4", + "happy-dom": "*", + "jsdom": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true + }, + "@types/debug": { + "optional": true + }, + "@types/node": { + "optional": true + }, + "@vitest/browser": { + "optional": true + }, + "@vitest/ui": { + "optional": true + }, + "happy-dom": { + "optional": true + }, + "jsdom": { + "optional": true + } + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/workerd": { + "version": "1.20260310.1", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260310.1.tgz", + "integrity": "sha512-yawXhypXXHtArikJj15HOMknNGikpBbSg2ZDe6lddUbqZnJXuCVSkgc/0ArUeVMG1jbbGvpst+REFtKwILvRTQ==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "bin": { + "workerd": "bin/workerd" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@cloudflare/workerd-darwin-64": "1.20260310.1", + "@cloudflare/workerd-darwin-arm64": "1.20260310.1", + "@cloudflare/workerd-linux-64": "1.20260310.1", + "@cloudflare/workerd-linux-arm64": "1.20260310.1", + "@cloudflare/workerd-windows-64": "1.20260310.1" + } + }, + "node_modules/wrangler": { + "version": "4.90.1", + "resolved": "https://registry.npmjs.org/wrangler/-/wrangler-4.90.1.tgz", + "integrity": "sha512-u2KrieKSMfRM0toTst/CfDtcRraeoVjmcExcMWgILM/ytq3qcDhuOAULoZSyPHzma43lfLJy1BC544drFyqe1A==", + "dev": true, + "license": "MIT OR Apache-2.0", + "dependencies": { + "@cloudflare/kv-asset-handler": "0.5.0", + "@cloudflare/unenv-preset": "2.16.1", + "blake3-wasm": "2.1.5", + "esbuild": "0.27.3", + "miniflare": "4.20260508.0", + "path-to-regexp": "6.3.0", + "unenv": "2.0.0-rc.24", + "workerd": "1.20260508.1" + }, + "bin": { + "wrangler": "bin/wrangler.js", + "wrangler2": "bin/wrangler.js" + }, + "engines": { + "node": ">=22.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@cloudflare/workers-types": "^4.20260508.1" + }, + "peerDependenciesMeta": { + "@cloudflare/workers-types": { + "optional": true + } + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-64": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-64/-/workerd-darwin-64-1.20260508.1.tgz", + "integrity": "sha512-IT3r6VgiSwIesL4AJbxjgxvIxwWZqM7BKkhYAzOKHl4GF2M0TxeOahUIXd+CYXVZgHX8ceEg+MXbEehPelJyNg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-darwin-arm64": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-darwin-arm64/-/workerd-darwin-arm64-1.20260508.1.tgz", + "integrity": "sha512-JTVsisOJPcNKw0qovPjqyBWYahfdhUh7/9NICiG5wxaEQ45PYKdoqNq0hOAAIqvqoxsKZBvTgcPTJREPqk7avA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-64": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-64/-/workerd-linux-64-1.20260508.1.tgz", + "integrity": "sha512-zO38pCc27YlsZiPYcaZnosy0/t7abXrRU3VEO1oKfUvnaCpHgphDG+VsrmHL+kntda6hrtNwg2jLeMAqqIjnjw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-linux-arm64": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-linux-arm64/-/workerd-linux-arm64-1.20260508.1.tgz", + "integrity": "sha512-XhJa780Ia6MNIrtxn/ruZHS79b9pu5EKPfRNReaUqxy8erPT2fs93axMfFoS9kIkcaRRj/1TOUKcTeAMoywY7w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/@cloudflare/workerd-windows-64": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/@cloudflare/workerd-windows-64/-/workerd-windows-64-1.20260508.1.tgz", + "integrity": "sha512-QdDOK3B/Ul1s3QmIwDrFyx9230to6LsNmWcVR8w+TYjNZuRPzqQBgusp78LO7MlqCoEl9dvIcN00jkJnLtBSfw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=16" + } + }, + "node_modules/wrangler/node_modules/miniflare": { + "version": "4.20260508.0", + "resolved": "https://registry.npmjs.org/miniflare/-/miniflare-4.20260508.0.tgz", + "integrity": "sha512-h3aG+PA8jEH76V4ZtBAbs3g7kjMfHJUF8hPvxeeajLTKwir+G+dqfBODg5yF9MT29LqrZKCRQRqzfHPWX4kCIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "0.8.1", + "sharp": "^0.34.5", + "undici": "7.24.8", + "workerd": "1.20260508.1", + "ws": "8.18.0", + "youch": "4.1.0-beta.10" + }, + "bin": { + "miniflare": "bootstrap.js" + }, + "engines": { + "node": ">=22.0.0" + } + }, + "node_modules/wrangler/node_modules/undici": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.24.8.tgz", + "integrity": "sha512-6KQ/+QxK49Z/p3HO6E5ZCZWNnCasyZLa5ExaVYyvPxUwKtbCPMKELJOqh7EqOle0t9cH/7d2TaaTRRa6Nhs4YQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=20.18.1" + } + }, + "node_modules/wrangler/node_modules/workerd": { + "version": "1.20260508.1", + "resolved": "https://registry.npmjs.org/workerd/-/workerd-1.20260508.1.tgz", + "integrity": "sha512-VlnjyH3AjVddpSK7J54nsCVgf8i2733pl8GjKttfNi7vN/hEjjAk20d2b1nDToOLKvRQpTewRnVkqaaeGHCaAw==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "bin": { + "workerd": "bin/workerd" + }, + "engines": { + "node": ">=16" + }, + "optionalDependencies": { + "@cloudflare/workerd-darwin-64": "1.20260508.1", + "@cloudflare/workerd-darwin-arm64": "1.20260508.1", + "@cloudflare/workerd-linux-64": "1.20260508.1", + "@cloudflare/workerd-linux-arm64": "1.20260508.1", + "@cloudflare/workerd-windows-64": "1.20260508.1" + } + }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/youch": { + "version": "4.1.0-beta.10", + "resolved": "https://registry.npmjs.org/youch/-/youch-4.1.0-beta.10.tgz", + "integrity": "sha512-rLfVLB4FgQneDr0dv1oddCVZmKjcJ6yX6mS4pU82Mq/Dt9a3cLZQ62pDBL4AUO+uVrCvtWz3ZFUL2HFAFJ/BXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@poppinss/colors": "^4.1.5", + "@poppinss/dumper": "^0.6.4", + "@speed-highlight/core": "^1.2.7", + "cookie": "^1.0.2", + "youch-core": "^0.3.3" + } + }, + "node_modules/youch-core": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/youch-core/-/youch-core-0.3.3.tgz", + "integrity": "sha512-ho7XuGjLaJ2hWHoK8yFnsUGy2Y5uDpqSTq1FkHLK4/oqKtyUU1AFbOOxY4IpC9f0fTLjwYbslUz0Po5BpD1wrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@poppinss/exception": "^1.2.2", + "error-stack-parser-es": "^1.0.5" + } + } + } +} diff --git a/edge-api/package.json b/edge-api/package.json new file mode 100644 index 0000000000..08fe596529 --- /dev/null +++ b/edge-api/package.json @@ -0,0 +1,19 @@ +{ + "name": "edge-api", + "version": "0.0.0", + "private": true, + "scripts": { + "deploy": "wrangler deploy", + "dev": "wrangler dev", + "start": "wrangler dev", + "test": "vitest", + "cf-typegen": "wrangler types" + }, + "devDependencies": { + "@cloudflare/vitest-pool-workers": "^0.12.4", + "@types/node": "^25.7.0", + "typescript": "^5.5.2", + "vitest": "~3.2.0", + "wrangler": "^4.90.1" + } +} \ No newline at end of file diff --git a/edge-api/src/index.ts b/edge-api/src/index.ts new file mode 100644 index 0000000000..95af8c85dd --- /dev/null +++ b/edge-api/src/index.ts @@ -0,0 +1,59 @@ +/** + * Welcome to Cloudflare Workers! This is your first worker. + * + * - Run `npm run dev` in your terminal to start a development server + * - Open a browser tab at http://localhost:8787/ to see your worker in action + * - Run `npm run deploy` to publish your worker + * + * Bind resources to your worker in `wrangler.jsonc`. After adding bindings, a type definition for the + * `Env` object can be regenerated with `npm run cf-typegen`. + * + * Learn more at https://developers.cloudflare.com/workers/ + */ + +export interface Env { + APP_NAME: string; + API_TOKEN: string; + ADMIN_EMAIL: string; + SETTINGS: KVNamespace; +} + +export default { + async fetch(request: Request, env: Env): Promise { + const url = new URL(request.url); + + console.log("path", url.pathname, "colo", request.cf?.colo); + + if (url.pathname === "/health") { + return Response.json({ status: "ok" }); + } + + if (url.pathname === "/") { + return Response.json({ + app: env.APP_NAME, + message: "Hello from Cloudflare Workers", + timestamp: new Date().toISOString(), + }); + } + + if (url.pathname === "/edge") { + return Response.json({ + colo: request.cf?.colo, + country: request.cf?.country, + city: request.cf?.city, + asn: request.cf?.asn, + httpProtocol: request.cf?.httpProtocol, + tlsVersion: request.cf?.tlsVersion, + }); + } + + if (url.pathname === "/counter") { + const raw = await env.SETTINGS.get("visits"); + const visits = Number(raw ?? "0") + 1; + await env.SETTINGS.put("visits", String(visits)); + return Response.json({ visits }); + } + + return new Response("Not Found", { status: 404 }); + }, +}; \ No newline at end of file diff --git a/edge-api/tsconfig.json b/edge-api/tsconfig.json new file mode 100644 index 0000000000..8c98cdbece --- /dev/null +++ b/edge-api/tsconfig.json @@ -0,0 +1,46 @@ +{ + "compilerOptions": { + /* Visit https://aka.ms/tsconfig.json to read more about this file */ + + /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ + "target": "es2024", + /* Specify a set of bundled library declaration files that describe the target runtime environment. */ + "lib": ["es2024"], + /* Specify what JSX code is generated. */ + "jsx": "react-jsx", + + /* Specify what module code is generated. */ + "module": "es2022", + /* Specify how TypeScript looks up a file from a given module specifier. */ + "moduleResolution": "Bundler", + /* Enable importing .json files */ + "resolveJsonModule": true, + + /* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */ + "allowJs": true, + /* Enable error reporting in type-checked JavaScript files. */ + "checkJs": false, + + /* Disable emitting files from a compilation. */ + "noEmit": true, + + /* Ensure that each file can be safely transpiled without relying on other imports. */ + "isolatedModules": true, + /* Allow 'import x from y' when a module doesn't have a default export. */ + "allowSyntheticDefaultImports": true, + /* Ensure that casing is correct in imports. */ + "forceConsistentCasingInFileNames": true, + + /* Enable all strict type-checking options. */ + "strict": true, + + /* Skip type checking all .d.ts files. */ + "skipLibCheck": true, + "types": [ + "./worker-configuration.d.ts", + "node" + ] + }, + "exclude": ["test"], + "include": ["worker-configuration.d.ts", "src/**/*.ts"] +} diff --git a/edge-api/vitest.config.mts b/edge-api/vitest.config.mts new file mode 100644 index 0000000000..7ccad75efa --- /dev/null +++ b/edge-api/vitest.config.mts @@ -0,0 +1,11 @@ +import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config"; + +export default defineWorkersConfig({ + test: { + poolOptions: { + workers: { + wrangler: { configPath: "./wrangler.jsonc" }, + }, + }, + }, +}); diff --git a/edge-api/worker-configuration.d.ts b/edge-api/worker-configuration.d.ts new file mode 100644 index 0000000000..8971bc9aab --- /dev/null +++ b/edge-api/worker-configuration.d.ts @@ -0,0 +1,13573 @@ +/* eslint-disable */ +// Generated by Wrangler by running `wrangler types` (hash: b739a9c19cff1463949c4db47674ed86) +// Runtime types generated with workerd@1.20260508.1 2026-05-13 nodejs_compat +declare namespace Cloudflare { + interface GlobalProps { + mainModule: typeof import("./src/index"); + } + interface Env { + } +} +interface Env extends Cloudflare.Env {} + +// Begin runtime types +/*! ***************************************************************************** +Copyright (c) Cloudflare. All rights reserved. +Copyright (c) Microsoft Corporation. All rights reserved. + +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 http://www.apache.org/licenses/LICENSE-2.0 +THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED +WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, +MERCHANTABLITY OR NON-INFRINGEMENT. +See the Apache Version 2.0 License for specific language governing permissions +and limitations under the License. +***************************************************************************** */ +/* eslint-disable */ +// noinspection JSUnusedGlobalSymbols +declare var onmessage: never; +/** + * The **`DOMException`** interface represents an abnormal event (called an **exception**) that occurs as a result of calling a method or accessing a property of a web API. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException) + */ +declare class DOMException extends Error { + constructor(message?: string, name?: string); + /** + * The **`message`** read-only property of the a message or description associated with the given error name. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/message) + */ + readonly message: string; + /** + * The **`name`** read-only property of the one of the strings associated with an error name. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/name) + */ + readonly name: string; + /** + * The **`code`** read-only property of the DOMException interface returns one of the legacy error code constants, or `0` if none match. + * @deprecated + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DOMException/code) + */ + readonly code: number; + static readonly INDEX_SIZE_ERR: number; + static readonly DOMSTRING_SIZE_ERR: number; + static readonly HIERARCHY_REQUEST_ERR: number; + static readonly WRONG_DOCUMENT_ERR: number; + static readonly INVALID_CHARACTER_ERR: number; + static readonly NO_DATA_ALLOWED_ERR: number; + static readonly NO_MODIFICATION_ALLOWED_ERR: number; + static readonly NOT_FOUND_ERR: number; + static readonly NOT_SUPPORTED_ERR: number; + static readonly INUSE_ATTRIBUTE_ERR: number; + static readonly INVALID_STATE_ERR: number; + static readonly SYNTAX_ERR: number; + static readonly INVALID_MODIFICATION_ERR: number; + static readonly NAMESPACE_ERR: number; + static readonly INVALID_ACCESS_ERR: number; + static readonly VALIDATION_ERR: number; + static readonly TYPE_MISMATCH_ERR: number; + static readonly SECURITY_ERR: number; + static readonly NETWORK_ERR: number; + static readonly ABORT_ERR: number; + static readonly URL_MISMATCH_ERR: number; + static readonly QUOTA_EXCEEDED_ERR: number; + static readonly TIMEOUT_ERR: number; + static readonly INVALID_NODE_TYPE_ERR: number; + static readonly DATA_CLONE_ERR: number; + get stack(): any; + set stack(value: any); +} +type WorkerGlobalScopeEventMap = { + fetch: FetchEvent; + scheduled: ScheduledEvent; + queue: QueueEvent; + unhandledrejection: PromiseRejectionEvent; + rejectionhandled: PromiseRejectionEvent; +}; +declare abstract class WorkerGlobalScope extends EventTarget { + EventTarget: typeof EventTarget; +} +/* The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). * + * The **`console`** object provides access to the debugging console (e.g., the Web console in Firefox). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console) + */ +interface Console { + "assert"(condition?: boolean, ...data: any[]): void; + /** + * The **`console.clear()`** static method clears the console if possible. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/clear_static) + */ + clear(): void; + /** + * The **`console.count()`** static method logs the number of times that this particular call to `count()` has been called. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) + */ + count(label?: string): void; + /** + * The **`console.countReset()`** static method resets counter used with console/count_static. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) + */ + countReset(label?: string): void; + /** + * The **`console.debug()`** static method outputs a message to the console at the 'debug' log level. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) + */ + debug(...data: any[]): void; + /** + * The **`console.dir()`** static method displays a list of the properties of the specified JavaScript object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dir_static) + */ + dir(item?: any, options?: any): void; + /** + * The **`console.dirxml()`** static method displays an interactive tree of the descendant elements of the specified XML/HTML element. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/dirxml_static) + */ + dirxml(...data: any[]): void; + /** + * The **`console.error()`** static method outputs a message to the console at the 'error' log level. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/error_static) + */ + error(...data: any[]): void; + /** + * The **`console.group()`** static method creates a new inline group in the Web console log, causing any subsequent console messages to be indented by an additional level, until console/groupEnd_static is called. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) + */ + group(...data: any[]): void; + /** + * The **`console.groupCollapsed()`** static method creates a new inline group in the console. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) + */ + groupCollapsed(...data: any[]): void; + /** + * The **`console.groupEnd()`** static method exits the current inline group in the console. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) + */ + groupEnd(): void; + /** + * The **`console.info()`** static method outputs a message to the console at the 'info' log level. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) + */ + info(...data: any[]): void; + /** + * The **`console.log()`** static method outputs a message to the console. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/log_static) + */ + log(...data: any[]): void; + /** + * The **`console.table()`** static method displays tabular data as a table. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/table_static) + */ + table(tabularData?: any, properties?: string[]): void; + /** + * The **`console.time()`** static method starts a timer you can use to track how long an operation takes. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) + */ + time(label?: string): void; + /** + * The **`console.timeEnd()`** static method stops a timer that was previously started by calling console/time_static. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) + */ + timeEnd(label?: string): void; + /** + * The **`console.timeLog()`** static method logs the current value of a timer that was previously started by calling console/time_static. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) + */ + timeLog(label?: string, ...data: any[]): void; + timeStamp(label?: string): void; + /** + * The **`console.trace()`** static method outputs a stack trace to the console. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) + */ + trace(...data: any[]): void; + /** + * The **`console.warn()`** static method outputs a warning message to the console at the 'warning' log level. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/warn_static) + */ + warn(...data: any[]): void; +} +declare const console: Console; +type BufferSource = ArrayBufferView | ArrayBuffer; +type TypedArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; +declare namespace WebAssembly { + class CompileError extends Error { + constructor(message?: string); + } + class RuntimeError extends Error { + constructor(message?: string); + } + type ValueType = "anyfunc" | "externref" | "f32" | "f64" | "i32" | "i64" | "v128"; + interface GlobalDescriptor { + value: ValueType; + mutable?: boolean; + } + class Global { + constructor(descriptor: GlobalDescriptor, value?: any); + value: any; + valueOf(): any; + } + type ImportValue = ExportValue | number; + type ModuleImports = Record; + type Imports = Record; + type ExportValue = Function | Global | Memory | Table; + type Exports = Record; + class Instance { + constructor(module: Module, imports?: Imports); + readonly exports: Exports; + } + interface MemoryDescriptor { + initial: number; + maximum?: number; + shared?: boolean; + } + class Memory { + constructor(descriptor: MemoryDescriptor); + readonly buffer: ArrayBuffer; + grow(delta: number): number; + } + type ImportExportKind = "function" | "global" | "memory" | "table"; + interface ModuleExportDescriptor { + kind: ImportExportKind; + name: string; + } + interface ModuleImportDescriptor { + kind: ImportExportKind; + module: string; + name: string; + } + abstract class Module { + static customSections(module: Module, sectionName: string): ArrayBuffer[]; + static exports(module: Module): ModuleExportDescriptor[]; + static imports(module: Module): ModuleImportDescriptor[]; + } + type TableKind = "anyfunc" | "externref"; + interface TableDescriptor { + element: TableKind; + initial: number; + maximum?: number; + } + class Table { + constructor(descriptor: TableDescriptor, value?: any); + readonly length: number; + get(index: number): any; + grow(delta: number, value?: any): number; + set(index: number, value?: any): void; + } + function instantiate(module: Module, imports?: Imports): Promise; + function validate(bytes: BufferSource): boolean; +} +/** + * The **`ServiceWorkerGlobalScope`** interface of the Service Worker API represents the global execution context of a service worker. + * Available only in secure contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ServiceWorkerGlobalScope) + */ +interface ServiceWorkerGlobalScope extends WorkerGlobalScope { + DOMException: typeof DOMException; + WorkerGlobalScope: typeof WorkerGlobalScope; + btoa(data: string): string; + atob(data: string): string; + setTimeout(callback: (...args: any[]) => void, msDelay?: number): number; + setTimeout(callback: (...args: Args) => void, msDelay?: number, ...args: Args): number; + clearTimeout(timeoutId: number | null): void; + setInterval(callback: (...args: any[]) => void, msDelay?: number): number; + setInterval(callback: (...args: Args) => void, msDelay?: number, ...args: Args): number; + clearInterval(timeoutId: number | null): void; + queueMicrotask(task: Function): void; + structuredClone(value: T, options?: StructuredSerializeOptions): T; + reportError(error: any): void; + fetch(input: RequestInfo | URL, init?: RequestInit): Promise; + self: ServiceWorkerGlobalScope; + crypto: Crypto; + caches: CacheStorage; + scheduler: Scheduler; + performance: Performance; + Cloudflare: Cloudflare; + readonly origin: string; + Event: typeof Event; + ExtendableEvent: typeof ExtendableEvent; + CustomEvent: typeof CustomEvent; + PromiseRejectionEvent: typeof PromiseRejectionEvent; + FetchEvent: typeof FetchEvent; + TailEvent: typeof TailEvent; + TraceEvent: typeof TailEvent; + ScheduledEvent: typeof ScheduledEvent; + MessageEvent: typeof MessageEvent; + CloseEvent: typeof CloseEvent; + ReadableStreamDefaultReader: typeof ReadableStreamDefaultReader; + ReadableStreamBYOBReader: typeof ReadableStreamBYOBReader; + ReadableStream: typeof ReadableStream; + WritableStream: typeof WritableStream; + WritableStreamDefaultWriter: typeof WritableStreamDefaultWriter; + TransformStream: typeof TransformStream; + ByteLengthQueuingStrategy: typeof ByteLengthQueuingStrategy; + CountQueuingStrategy: typeof CountQueuingStrategy; + ErrorEvent: typeof ErrorEvent; + MessageChannel: typeof MessageChannel; + MessagePort: typeof MessagePort; + EventSource: typeof EventSource; + ReadableStreamBYOBRequest: typeof ReadableStreamBYOBRequest; + ReadableStreamDefaultController: typeof ReadableStreamDefaultController; + ReadableByteStreamController: typeof ReadableByteStreamController; + WritableStreamDefaultController: typeof WritableStreamDefaultController; + TransformStreamDefaultController: typeof TransformStreamDefaultController; + CompressionStream: typeof CompressionStream; + DecompressionStream: typeof DecompressionStream; + TextEncoderStream: typeof TextEncoderStream; + TextDecoderStream: typeof TextDecoderStream; + Headers: typeof Headers; + Body: typeof Body; + Request: typeof Request; + Response: typeof Response; + WebSocket: typeof WebSocket; + WebSocketPair: typeof WebSocketPair; + WebSocketRequestResponsePair: typeof WebSocketRequestResponsePair; + AbortController: typeof AbortController; + AbortSignal: typeof AbortSignal; + TextDecoder: typeof TextDecoder; + TextEncoder: typeof TextEncoder; + navigator: Navigator; + Navigator: typeof Navigator; + URL: typeof URL; + URLSearchParams: typeof URLSearchParams; + URLPattern: typeof URLPattern; + Blob: typeof Blob; + File: typeof File; + FormData: typeof FormData; + Crypto: typeof Crypto; + SubtleCrypto: typeof SubtleCrypto; + CryptoKey: typeof CryptoKey; + CacheStorage: typeof CacheStorage; + Cache: typeof Cache; + FixedLengthStream: typeof FixedLengthStream; + IdentityTransformStream: typeof IdentityTransformStream; + HTMLRewriter: typeof HTMLRewriter; +} +declare function addEventListener(type: Type, handler: EventListenerOrEventListenerObject, options?: EventTargetAddEventListenerOptions | boolean): void; +declare function removeEventListener(type: Type, handler: EventListenerOrEventListenerObject, options?: EventTargetEventListenerOptions | boolean): void; +/** + * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent) + */ +declare function dispatchEvent(event: WorkerGlobalScopeEventMap[keyof WorkerGlobalScopeEventMap]): boolean; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/btoa) */ +declare function btoa(data: string): string; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/atob) */ +declare function atob(data: string): string; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */ +declare function setTimeout(callback: (...args: any[]) => void, msDelay?: number): number; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setTimeout) */ +declare function setTimeout(callback: (...args: Args) => void, msDelay?: number, ...args: Args): number; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout) */ +declare function clearTimeout(timeoutId: number | null): void; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */ +declare function setInterval(callback: (...args: any[]) => void, msDelay?: number): number; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/setInterval) */ +declare function setInterval(callback: (...args: Args) => void, msDelay?: number, ...args: Args): number; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/clearInterval) */ +declare function clearInterval(timeoutId: number | null): void; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask) */ +declare function queueMicrotask(task: Function): void; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/structuredClone) */ +declare function structuredClone(value: T, options?: StructuredSerializeOptions): T; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/reportError) */ +declare function reportError(error: any): void; +/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Window/fetch) */ +declare function fetch(input: RequestInfo | URL, init?: RequestInit): Promise; +declare const self: ServiceWorkerGlobalScope; +/** +* The Web Crypto API provides a set of low-level functions for common cryptographic tasks. +* The Workers runtime implements the full surface of this API, but with some differences in +* the [supported algorithms](https://developers.cloudflare.com/workers/runtime-apis/web-crypto/#supported-algorithms) +* compared to those implemented in most browsers. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/web-crypto/) +*/ +declare const crypto: Crypto; +/** +* The Cache API allows fine grained control of reading and writing from the Cloudflare global network cache. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/) +*/ +declare const caches: CacheStorage; +declare const scheduler: Scheduler; +/** +* The Workers runtime supports a subset of the Performance API, used to measure timing and performance, +* as well as timing of subrequests and other operations. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/performance/) +*/ +declare const performance: Performance; +declare const Cloudflare: Cloudflare; +declare const origin: string; +declare const navigator: Navigator; +interface TestController { +} +interface ExecutionContext { + waitUntil(promise: Promise): void; + passThroughOnException(): void; + readonly exports: Cloudflare.Exports; + readonly props: Props; + cache?: CacheContext; + tracing?: Tracing; +} +type ExportedHandlerFetchHandler = (request: Request>, env: Env, ctx: ExecutionContext) => Response | Promise; +type ExportedHandlerConnectHandler = (socket: Socket, env: Env, ctx: ExecutionContext) => void | Promise; +type ExportedHandlerTailHandler = (events: TraceItem[], env: Env, ctx: ExecutionContext) => void | Promise; +type ExportedHandlerTraceHandler = (traces: TraceItem[], env: Env, ctx: ExecutionContext) => void | Promise; +type ExportedHandlerTailStreamHandler = (event: TailStream.TailEvent, env: Env, ctx: ExecutionContext) => TailStream.TailEventHandlerType | Promise; +type ExportedHandlerScheduledHandler = (controller: ScheduledController, env: Env, ctx: ExecutionContext) => void | Promise; +type ExportedHandlerQueueHandler = (batch: MessageBatch, env: Env, ctx: ExecutionContext) => void | Promise; +type ExportedHandlerTestHandler = (controller: TestController, env: Env, ctx: ExecutionContext) => void | Promise; +interface ExportedHandler { + fetch?: ExportedHandlerFetchHandler; + connect?: ExportedHandlerConnectHandler; + tail?: ExportedHandlerTailHandler; + trace?: ExportedHandlerTraceHandler; + tailStream?: ExportedHandlerTailStreamHandler; + scheduled?: ExportedHandlerScheduledHandler; + test?: ExportedHandlerTestHandler; + email?: EmailExportedHandler; + queue?: ExportedHandlerQueueHandler; +} +interface StructuredSerializeOptions { + transfer?: any[]; +} +declare abstract class Navigator { + sendBeacon(url: string, body?: BodyInit): boolean; + readonly userAgent: string; + readonly hardwareConcurrency: number; + readonly platform: string; + readonly language: string; + readonly languages: string[]; +} +interface AlarmInvocationInfo { + readonly isRetry: boolean; + readonly retryCount: number; + readonly scheduledTime: number; +} +interface Cloudflare { + readonly compatibilityFlags: Record; +} +interface CachePurgeError { + code: number; + message: string; +} +interface CachePurgeResult { + success: boolean; + errors: CachePurgeError[]; +} +interface CachePurgeOptions { + tags?: string[]; + pathPrefixes?: string[]; + purgeEverything?: boolean; +} +interface CacheContext { + purge(options: CachePurgeOptions): Promise; +} +declare abstract class ColoLocalActorNamespace { + get(actorId: string): Fetcher; +} +interface DurableObject { + fetch(request: Request): Response | Promise; + connect?(socket: Socket): void | Promise; + alarm?(alarmInfo?: AlarmInvocationInfo): void | Promise; + webSocketMessage?(ws: WebSocket, message: string | ArrayBuffer): void | Promise; + webSocketClose?(ws: WebSocket, code: number, reason: string, wasClean: boolean): void | Promise; + webSocketError?(ws: WebSocket, error: unknown): void | Promise; +} +type DurableObjectStub = Fetcher & { + readonly id: DurableObjectId; + readonly name?: string; +}; +interface DurableObjectId { + toString(): string; + equals(other: DurableObjectId): boolean; + readonly name?: string; + readonly jurisdiction?: string; +} +declare abstract class DurableObjectNamespace { + newUniqueId(options?: DurableObjectNamespaceNewUniqueIdOptions): DurableObjectId; + idFromName(name: string): DurableObjectId; + idFromString(id: string): DurableObjectId; + get(id: DurableObjectId, options?: DurableObjectNamespaceGetDurableObjectOptions): DurableObjectStub; + getByName(name: string, options?: DurableObjectNamespaceGetDurableObjectOptions): DurableObjectStub; + jurisdiction(jurisdiction: DurableObjectJurisdiction): DurableObjectNamespace; +} +type DurableObjectJurisdiction = "eu" | "fedramp" | "fedramp-high"; +interface DurableObjectNamespaceNewUniqueIdOptions { + jurisdiction?: DurableObjectJurisdiction; +} +type DurableObjectLocationHint = "wnam" | "enam" | "sam" | "weur" | "eeur" | "apac" | "oc" | "afr" | "me"; +type DurableObjectRoutingMode = "primary-only"; +interface DurableObjectNamespaceGetDurableObjectOptions { + locationHint?: DurableObjectLocationHint; + routingMode?: DurableObjectRoutingMode; +} +interface DurableObjectClass<_T extends Rpc.DurableObjectBranded | undefined = undefined> { +} +interface DurableObjectState { + waitUntil(promise: Promise): void; + readonly exports: Cloudflare.Exports; + readonly props: Props; + readonly id: DurableObjectId; + readonly storage: DurableObjectStorage; + container?: Container; + facets: DurableObjectFacets; + blockConcurrencyWhile(callback: () => Promise): Promise; + acceptWebSocket(ws: WebSocket, tags?: string[]): void; + getWebSockets(tag?: string): WebSocket[]; + setWebSocketAutoResponse(maybeReqResp?: WebSocketRequestResponsePair): void; + getWebSocketAutoResponse(): WebSocketRequestResponsePair | null; + getWebSocketAutoResponseTimestamp(ws: WebSocket): Date | null; + setHibernatableWebSocketEventTimeout(timeoutMs?: number): void; + getHibernatableWebSocketEventTimeout(): number | null; + getTags(ws: WebSocket): string[]; + abort(reason?: string): void; +} +interface DurableObjectTransaction { + get(key: string, options?: DurableObjectGetOptions): Promise; + get(keys: string[], options?: DurableObjectGetOptions): Promise>; + list(options?: DurableObjectListOptions): Promise>; + put(key: string, value: T, options?: DurableObjectPutOptions): Promise; + put(entries: Record, options?: DurableObjectPutOptions): Promise; + delete(key: string, options?: DurableObjectPutOptions): Promise; + delete(keys: string[], options?: DurableObjectPutOptions): Promise; + rollback(): void; + getAlarm(options?: DurableObjectGetAlarmOptions): Promise; + setAlarm(scheduledTime: number | Date, options?: DurableObjectSetAlarmOptions): Promise; + deleteAlarm(options?: DurableObjectSetAlarmOptions): Promise; +} +interface DurableObjectStorage { + get(key: string, options?: DurableObjectGetOptions): Promise; + get(keys: string[], options?: DurableObjectGetOptions): Promise>; + list(options?: DurableObjectListOptions): Promise>; + put(key: string, value: T, options?: DurableObjectPutOptions): Promise; + put(entries: Record, options?: DurableObjectPutOptions): Promise; + delete(key: string, options?: DurableObjectPutOptions): Promise; + delete(keys: string[], options?: DurableObjectPutOptions): Promise; + deleteAll(options?: DurableObjectPutOptions): Promise; + transaction(closure: (txn: DurableObjectTransaction) => Promise): Promise; + getAlarm(options?: DurableObjectGetAlarmOptions): Promise; + setAlarm(scheduledTime: number | Date, options?: DurableObjectSetAlarmOptions): Promise; + deleteAlarm(options?: DurableObjectSetAlarmOptions): Promise; + sync(): Promise; + sql: SqlStorage; + kv: SyncKvStorage; + transactionSync(closure: () => T): T; + getCurrentBookmark(): Promise; + getBookmarkForTime(timestamp: number | Date): Promise; + onNextSessionRestoreBookmark(bookmark: string): Promise; +} +interface DurableObjectListOptions { + start?: string; + startAfter?: string; + end?: string; + prefix?: string; + reverse?: boolean; + limit?: number; + allowConcurrency?: boolean; + noCache?: boolean; +} +interface DurableObjectGetOptions { + allowConcurrency?: boolean; + noCache?: boolean; +} +interface DurableObjectGetAlarmOptions { + allowConcurrency?: boolean; +} +interface DurableObjectPutOptions { + allowConcurrency?: boolean; + allowUnconfirmed?: boolean; + noCache?: boolean; +} +interface DurableObjectSetAlarmOptions { + allowConcurrency?: boolean; + allowUnconfirmed?: boolean; +} +declare class WebSocketRequestResponsePair { + constructor(request: string, response: string); + get request(): string; + get response(): string; +} +interface DurableObjectFacets { + get(name: string, getStartupOptions: () => FacetStartupOptions | Promise>): Fetcher; + abort(name: string, reason: any): void; + delete(name: string): void; +} +interface FacetStartupOptions { + id?: DurableObjectId | string; + class: DurableObjectClass; +} +interface AnalyticsEngineDataset { + writeDataPoint(event?: AnalyticsEngineDataPoint): void; +} +interface AnalyticsEngineDataPoint { + indexes?: ((ArrayBuffer | string) | null)[]; + doubles?: number[]; + blobs?: ((ArrayBuffer | string) | null)[]; +} +/** + * The **`Event`** interface represents an event which takes place on an `EventTarget`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event) + */ +declare class Event { + constructor(type: string, init?: EventInit); + /** + * The **`type`** read-only property of the Event interface returns a string containing the event's type. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/type) + */ + get type(): string; + /** + * The **`eventPhase`** read-only property of the being evaluated. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/eventPhase) + */ + get eventPhase(): number; + /** + * The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composed) + */ + get composed(): boolean; + /** + * The **`bubbles`** read-only property of the Event interface indicates whether the event bubbles up through the DOM tree or not. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/bubbles) + */ + get bubbles(): boolean; + /** + * The **`cancelable`** read-only property of the Event interface indicates whether the event can be canceled, and therefore prevented as if the event never happened. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelable) + */ + get cancelable(): boolean; + /** + * The **`defaultPrevented`** read-only property of the Event interface returns a boolean value indicating whether or not the call to Event.preventDefault() canceled the event. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/defaultPrevented) + */ + get defaultPrevented(): boolean; + /** + * The Event property **`returnValue`** indicates whether the default action for this event has been prevented or not. + * @deprecated + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/returnValue) + */ + get returnValue(): boolean; + /** + * The **`currentTarget`** read-only property of the Event interface identifies the element to which the event handler has been attached. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/currentTarget) + */ + get currentTarget(): EventTarget | undefined; + /** + * The read-only **`target`** property of the dispatched. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/target) + */ + get target(): EventTarget | undefined; + /** + * The deprecated **`Event.srcElement`** is an alias for the Event.target property. + * @deprecated + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/srcElement) + */ + get srcElement(): EventTarget | undefined; + /** + * The **`timeStamp`** read-only property of the Event interface returns the time (in milliseconds) at which the event was created. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/timeStamp) + */ + get timeStamp(): number; + /** + * The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/isTrusted) + */ + get isTrusted(): boolean; + /** + * The **`cancelBubble`** property of the Event interface is deprecated. + * @deprecated + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelBubble) + */ + get cancelBubble(): boolean; + /** + * The **`cancelBubble`** property of the Event interface is deprecated. + * @deprecated + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/cancelBubble) + */ + set cancelBubble(value: boolean); + /** + * The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopImmediatePropagation) + */ + stopImmediatePropagation(): void; + /** + * The **`preventDefault()`** method of the Event interface tells the user agent that if the event does not get explicitly handled, its default action should not be taken as it normally would be. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/preventDefault) + */ + preventDefault(): void; + /** + * The **`stopPropagation()`** method of the Event interface prevents further propagation of the current event in the capturing and bubbling phases. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/stopPropagation) + */ + stopPropagation(): void; + /** + * The **`composedPath()`** method of the Event interface returns the event's path which is an array of the objects on which listeners will be invoked. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Event/composedPath) + */ + composedPath(): EventTarget[]; + static readonly NONE: number; + static readonly CAPTURING_PHASE: number; + static readonly AT_TARGET: number; + static readonly BUBBLING_PHASE: number; +} +interface EventInit { + bubbles?: boolean; + cancelable?: boolean; + composed?: boolean; +} +type EventListener = (event: EventType) => void; +interface EventListenerObject { + handleEvent(event: EventType): void; +} +type EventListenerOrEventListenerObject = EventListener | EventListenerObject; +/** + * The **`EventTarget`** interface is implemented by objects that can receive events and may have listeners for them. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget) + */ +declare class EventTarget = Record> { + constructor(); + /** + * The **`addEventListener()`** method of the EventTarget interface sets up a function that will be called whenever the specified event is delivered to the target. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/addEventListener) + */ + addEventListener(type: Type, handler: EventListenerOrEventListenerObject, options?: EventTargetAddEventListenerOptions | boolean): void; + /** + * The **`removeEventListener()`** method of the EventTarget interface removes an event listener previously registered with EventTarget.addEventListener() from the target. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/removeEventListener) + */ + removeEventListener(type: Type, handler: EventListenerOrEventListenerObject, options?: EventTargetEventListenerOptions | boolean): void; + /** + * The **`dispatchEvent()`** method of the EventTarget sends an Event to the object, (synchronously) invoking the affected event listeners in the appropriate order. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventTarget/dispatchEvent) + */ + dispatchEvent(event: EventMap[keyof EventMap]): boolean; +} +interface EventTargetEventListenerOptions { + capture?: boolean; +} +interface EventTargetAddEventListenerOptions { + capture?: boolean; + passive?: boolean; + once?: boolean; + signal?: AbortSignal; +} +interface EventTargetHandlerObject { + handleEvent: (event: Event) => any | undefined; +} +/** + * The **`AbortController`** interface represents a controller object that allows you to abort one or more Web requests as and when desired. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController) + */ +declare class AbortController { + constructor(); + /** + * The **`signal`** read-only property of the AbortController interface returns an AbortSignal object instance, which can be used to communicate with/abort an asynchronous operation as desired. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/signal) + */ + get signal(): AbortSignal; + /** + * The **`abort()`** method of the AbortController interface aborts an asynchronous operation before it has completed. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortController/abort) + */ + abort(reason?: any): void; +} +/** + * The **`AbortSignal`** interface represents a signal object that allows you to communicate with an asynchronous operation (such as a fetch request) and abort it if required via an AbortController object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal) + */ +declare abstract class AbortSignal extends EventTarget { + /** + * The **`AbortSignal.abort()`** static method returns an AbortSignal that is already set as aborted (and which does not trigger an AbortSignal/abort_event event). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_static) + */ + static abort(reason?: any): AbortSignal; + /** + * The **`AbortSignal.timeout()`** static method returns an AbortSignal that will automatically abort after a specified time. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/timeout_static) + */ + static timeout(delay: number): AbortSignal; + /** + * The **`AbortSignal.any()`** static method takes an iterable of abort signals and returns an AbortSignal. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/any_static) + */ + static any(signals: AbortSignal[]): AbortSignal; + /** + * The **`aborted`** read-only property returns a value that indicates whether the asynchronous operations the signal is communicating with are aborted (`true`) or not (`false`). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/aborted) + */ + get aborted(): boolean; + /** + * The **`reason`** read-only property returns a JavaScript value that indicates the abort reason. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/reason) + */ + get reason(): any; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_event) */ + get onabort(): any | null; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/abort_event) */ + set onabort(value: any | null); + /** + * The **`throwIfAborted()`** method throws the signal's abort AbortSignal.reason if the signal has been aborted; otherwise it does nothing. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/AbortSignal/throwIfAborted) + */ + throwIfAborted(): void; +} +interface Scheduler { + wait(delay: number, maybeOptions?: SchedulerWaitOptions): Promise; +} +interface SchedulerWaitOptions { + signal?: AbortSignal; +} +/** + * The **`ExtendableEvent`** interface extends the lifetime of the `install` and `activate` events dispatched on the global scope as part of the service worker lifecycle. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableEvent) + */ +declare abstract class ExtendableEvent extends Event { + /** + * The **`ExtendableEvent.waitUntil()`** method tells the event dispatcher that work is ongoing. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ExtendableEvent/waitUntil) + */ + waitUntil(promise: Promise): void; +} +/** + * The **`CustomEvent`** interface represents events initialized by an application for any purpose. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent) + */ +declare class CustomEvent extends Event { + constructor(type: string, init?: CustomEventCustomEventInit); + /** + * The read-only **`detail`** property of the CustomEvent interface returns any data passed when initializing the event. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CustomEvent/detail) + */ + get detail(): T; +} +interface CustomEventCustomEventInit { + bubbles?: boolean; + cancelable?: boolean; + composed?: boolean; + detail?: any; +} +/** + * The **`Blob`** interface represents a blob, which is a file-like object of immutable, raw data; they can be read as text or binary data, or converted into a ReadableStream so its methods can be used for processing the data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob) + */ +declare class Blob { + constructor(bits?: ((ArrayBuffer | ArrayBufferView) | string | Blob)[], options?: BlobOptions); + /** + * The **`size`** read-only property of the Blob interface returns the size of the Blob or File in bytes. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/size) + */ + get size(): number; + /** + * The **`type`** read-only property of the Blob interface returns the MIME type of the file. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/type) + */ + get type(): string; + /** + * The **`slice()`** method of the Blob interface creates and returns a new `Blob` object which contains data from a subset of the blob on which it's called. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) + */ + slice(start?: number, end?: number, type?: string): Blob; + /** + * The **`arrayBuffer()`** method of the Blob interface returns a Promise that resolves with the contents of the blob as binary data contained in an ArrayBuffer. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) + */ + arrayBuffer(): Promise; + /** + * The **`bytes()`** method of the Blob interface returns a Promise that resolves with a Uint8Array containing the contents of the blob as an array of bytes. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/bytes) + */ + bytes(): Promise; + /** + * The **`text()`** method of the string containing the contents of the blob, interpreted as UTF-8. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) + */ + text(): Promise; + /** + * The **`stream()`** method of the Blob interface returns a ReadableStream which upon reading returns the data contained within the `Blob`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/stream) + */ + stream(): ReadableStream; +} +interface BlobOptions { + type?: string; +} +/** + * The **`File`** interface provides information about files and allows JavaScript in a web page to access their content. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File) + */ +declare class File extends Blob { + constructor(bits: ((ArrayBuffer | ArrayBufferView) | string | Blob)[] | undefined, name: string, options?: FileOptions); + /** + * The **`name`** read-only property of the File interface returns the name of the file represented by a File object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/name) + */ + get name(): string; + /** + * The **`lastModified`** read-only property of the File interface provides the last modified date of the file as the number of milliseconds since the Unix epoch (January 1, 1970 at midnight). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/File/lastModified) + */ + get lastModified(): number; +} +interface FileOptions { + type?: string; + lastModified?: number; +} +/** +* The Cache API allows fine grained control of reading and writing from the Cloudflare global network cache. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/) +*/ +declare abstract class CacheStorage { + /** + * The **`open()`** method of the the Cache object matching the `cacheName`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CacheStorage/open) + */ + open(cacheName: string): Promise; + readonly default: Cache; +} +/** +* The Cache API allows fine grained control of reading and writing from the Cloudflare global network cache. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/) +*/ +declare abstract class Cache { + /* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/#delete) */ + delete(request: RequestInfo | URL, options?: CacheQueryOptions): Promise; + /* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/#match) */ + match(request: RequestInfo | URL, options?: CacheQueryOptions): Promise; + /* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/cache/#put) */ + put(request: RequestInfo | URL, response: Response): Promise; +} +interface CacheQueryOptions { + ignoreMethod?: boolean; +} +/** +* The Web Crypto API provides a set of low-level functions for common cryptographic tasks. +* The Workers runtime implements the full surface of this API, but with some differences in +* the [supported algorithms](https://developers.cloudflare.com/workers/runtime-apis/web-crypto/#supported-algorithms) +* compared to those implemented in most browsers. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/web-crypto/) +*/ +declare abstract class Crypto { + /** + * The **`Crypto.subtle`** read-only property returns a cryptographic operations. + * Available only in secure contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/subtle) + */ + get subtle(): SubtleCrypto; + /** + * The **`Crypto.getRandomValues()`** method lets you get cryptographically strong random values. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/getRandomValues) + */ + getRandomValues(buffer: T): T; + /** + * The **`randomUUID()`** method of the Crypto interface is used to generate a v4 UUID using a cryptographically secure random number generator. + * Available only in secure contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Crypto/randomUUID) + */ + randomUUID(): string; + DigestStream: typeof DigestStream; +} +/** + * The **`SubtleCrypto`** interface of the Web Crypto API provides a number of low-level cryptographic functions. + * Available only in secure contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto) + */ +declare abstract class SubtleCrypto { + /** + * The **`encrypt()`** method of the SubtleCrypto interface encrypts data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/encrypt) + */ + encrypt(algorithm: string | SubtleCryptoEncryptAlgorithm, key: CryptoKey, plainText: ArrayBuffer | ArrayBufferView): Promise; + /** + * The **`decrypt()`** method of the SubtleCrypto interface decrypts some encrypted data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/decrypt) + */ + decrypt(algorithm: string | SubtleCryptoEncryptAlgorithm, key: CryptoKey, cipherText: ArrayBuffer | ArrayBufferView): Promise; + /** + * The **`sign()`** method of the SubtleCrypto interface generates a digital signature. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/sign) + */ + sign(algorithm: string | SubtleCryptoSignAlgorithm, key: CryptoKey, data: ArrayBuffer | ArrayBufferView): Promise; + /** + * The **`verify()`** method of the SubtleCrypto interface verifies a digital signature. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/verify) + */ + verify(algorithm: string | SubtleCryptoSignAlgorithm, key: CryptoKey, signature: ArrayBuffer | ArrayBufferView, data: ArrayBuffer | ArrayBufferView): Promise; + /** + * The **`digest()`** method of the SubtleCrypto interface generates a _digest_ of the given data, using the specified hash function. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/digest) + */ + digest(algorithm: string | SubtleCryptoHashAlgorithm, data: ArrayBuffer | ArrayBufferView): Promise; + /** + * The **`generateKey()`** method of the SubtleCrypto interface is used to generate a new key (for symmetric algorithms) or key pair (for public-key algorithms). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/generateKey) + */ + generateKey(algorithm: string | SubtleCryptoGenerateKeyAlgorithm, extractable: boolean, keyUsages: string[]): Promise; + /** + * The **`deriveKey()`** method of the SubtleCrypto interface can be used to derive a secret key from a master key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveKey) + */ + deriveKey(algorithm: string | SubtleCryptoDeriveKeyAlgorithm, baseKey: CryptoKey, derivedKeyAlgorithm: string | SubtleCryptoImportKeyAlgorithm, extractable: boolean, keyUsages: string[]): Promise; + /** + * The **`deriveBits()`** method of the key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/deriveBits) + */ + deriveBits(algorithm: string | SubtleCryptoDeriveKeyAlgorithm, baseKey: CryptoKey, length?: number | null): Promise; + /** + * The **`importKey()`** method of the SubtleCrypto interface imports a key: that is, it takes as input a key in an external, portable format and gives you a CryptoKey object that you can use in the Web Crypto API. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/importKey) + */ + importKey(format: string, keyData: (ArrayBuffer | ArrayBufferView) | JsonWebKey, algorithm: string | SubtleCryptoImportKeyAlgorithm, extractable: boolean, keyUsages: string[]): Promise; + /** + * The **`exportKey()`** method of the SubtleCrypto interface exports a key: that is, it takes as input a CryptoKey object and gives you the key in an external, portable format. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/exportKey) + */ + exportKey(format: string, key: CryptoKey): Promise; + /** + * The **`wrapKey()`** method of the SubtleCrypto interface 'wraps' a key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/wrapKey) + */ + wrapKey(format: string, key: CryptoKey, wrappingKey: CryptoKey, wrapAlgorithm: string | SubtleCryptoEncryptAlgorithm): Promise; + /** + * The **`unwrapKey()`** method of the SubtleCrypto interface 'unwraps' a key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/SubtleCrypto/unwrapKey) + */ + unwrapKey(format: string, wrappedKey: ArrayBuffer | ArrayBufferView, unwrappingKey: CryptoKey, unwrapAlgorithm: string | SubtleCryptoEncryptAlgorithm, unwrappedKeyAlgorithm: string | SubtleCryptoImportKeyAlgorithm, extractable: boolean, keyUsages: string[]): Promise; + timingSafeEqual(a: ArrayBuffer | ArrayBufferView, b: ArrayBuffer | ArrayBufferView): boolean; +} +/** + * The **`CryptoKey`** interface of the Web Crypto API represents a cryptographic key obtained from one of the SubtleCrypto methods SubtleCrypto.generateKey, SubtleCrypto.deriveKey, SubtleCrypto.importKey, or SubtleCrypto.unwrapKey. + * Available only in secure contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey) + */ +declare abstract class CryptoKey { + /** + * The read-only **`type`** property of the CryptoKey interface indicates which kind of key is represented by the object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/type) + */ + readonly type: string; + /** + * The read-only **`extractable`** property of the CryptoKey interface indicates whether or not the key may be extracted using `SubtleCrypto.exportKey()` or `SubtleCrypto.wrapKey()`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/extractable) + */ + readonly extractable: boolean; + /** + * The read-only **`algorithm`** property of the CryptoKey interface returns an object describing the algorithm for which this key can be used, and any associated extra parameters. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/algorithm) + */ + readonly algorithm: CryptoKeyKeyAlgorithm | CryptoKeyAesKeyAlgorithm | CryptoKeyHmacKeyAlgorithm | CryptoKeyRsaKeyAlgorithm | CryptoKeyEllipticKeyAlgorithm | CryptoKeyArbitraryKeyAlgorithm; + /** + * The read-only **`usages`** property of the CryptoKey interface indicates what can be done with the key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CryptoKey/usages) + */ + readonly usages: string[]; +} +interface CryptoKeyPair { + publicKey: CryptoKey; + privateKey: CryptoKey; +} +interface JsonWebKey { + kty: string; + use?: string; + key_ops?: string[]; + alg?: string; + ext?: boolean; + crv?: string; + x?: string; + y?: string; + d?: string; + n?: string; + e?: string; + p?: string; + q?: string; + dp?: string; + dq?: string; + qi?: string; + oth?: RsaOtherPrimesInfo[]; + k?: string; +} +interface RsaOtherPrimesInfo { + r?: string; + d?: string; + t?: string; +} +interface SubtleCryptoDeriveKeyAlgorithm { + name: string; + salt?: (ArrayBuffer | ArrayBufferView); + iterations?: number; + hash?: (string | SubtleCryptoHashAlgorithm); + $public?: CryptoKey; + info?: (ArrayBuffer | ArrayBufferView); +} +interface SubtleCryptoEncryptAlgorithm { + name: string; + iv?: (ArrayBuffer | ArrayBufferView); + additionalData?: (ArrayBuffer | ArrayBufferView); + tagLength?: number; + counter?: (ArrayBuffer | ArrayBufferView); + length?: number; + label?: (ArrayBuffer | ArrayBufferView); +} +interface SubtleCryptoGenerateKeyAlgorithm { + name: string; + hash?: (string | SubtleCryptoHashAlgorithm); + modulusLength?: number; + publicExponent?: (ArrayBuffer | ArrayBufferView); + length?: number; + namedCurve?: string; +} +interface SubtleCryptoHashAlgorithm { + name: string; +} +interface SubtleCryptoImportKeyAlgorithm { + name: string; + hash?: (string | SubtleCryptoHashAlgorithm); + length?: number; + namedCurve?: string; + compressed?: boolean; +} +interface SubtleCryptoSignAlgorithm { + name: string; + hash?: (string | SubtleCryptoHashAlgorithm); + dataLength?: number; + saltLength?: number; +} +interface CryptoKeyKeyAlgorithm { + name: string; +} +interface CryptoKeyAesKeyAlgorithm { + name: string; + length: number; +} +interface CryptoKeyHmacKeyAlgorithm { + name: string; + hash: CryptoKeyKeyAlgorithm; + length: number; +} +interface CryptoKeyRsaKeyAlgorithm { + name: string; + modulusLength: number; + publicExponent: ArrayBuffer | ArrayBufferView; + hash?: CryptoKeyKeyAlgorithm; +} +interface CryptoKeyEllipticKeyAlgorithm { + name: string; + namedCurve: string; +} +interface CryptoKeyArbitraryKeyAlgorithm { + name: string; + hash?: CryptoKeyKeyAlgorithm; + namedCurve?: string; + length?: number; +} +declare class DigestStream extends WritableStream { + constructor(algorithm: string | SubtleCryptoHashAlgorithm); + readonly digest: Promise; + get bytesWritten(): number | bigint; +} +/** + * The **`TextDecoder`** interface represents a decoder for a specific text encoding, such as `UTF-8`, `ISO-8859-2`, `KOI8-R`, `GBK`, etc. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder) + */ +declare class TextDecoder { + constructor(label?: string, options?: TextDecoderConstructorOptions); + /** + * The **`TextDecoder.decode()`** method returns a string containing text decoded from the buffer passed as a parameter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoder/decode) + */ + decode(input?: (ArrayBuffer | ArrayBufferView), options?: TextDecoderDecodeOptions): string; + get encoding(): string; + get fatal(): boolean; + get ignoreBOM(): boolean; +} +/** + * The **`TextEncoder`** interface takes a stream of code points as input and emits a stream of UTF-8 bytes. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder) + */ +declare class TextEncoder { + constructor(); + /** + * The **`TextEncoder.encode()`** method takes a string as input, and returns a Global_Objects/Uint8Array containing the text given in parameters encoded with the specific method for that TextEncoder object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encode) + */ + encode(input?: string): Uint8Array; + /** + * The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns a dictionary object indicating the progress of the encoding. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto) + */ + encodeInto(input: string, buffer: Uint8Array): TextEncoderEncodeIntoResult; + get encoding(): string; +} +interface TextDecoderConstructorOptions { + fatal: boolean; + ignoreBOM: boolean; +} +interface TextDecoderDecodeOptions { + stream: boolean; +} +interface TextEncoderEncodeIntoResult { + read: number; + written: number; +} +/** + * The **`ErrorEvent`** interface represents events providing information related to errors in scripts or in files. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent) + */ +declare class ErrorEvent extends Event { + constructor(type: string, init?: ErrorEventErrorEventInit); + /** + * The **`filename`** read-only property of the ErrorEvent interface returns a string containing the name of the script file in which the error occurred. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) + */ + get filename(): string; + /** + * The **`message`** read-only property of the ErrorEvent interface returns a string containing a human-readable error message describing the problem. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) + */ + get message(): string; + /** + * The **`lineno`** read-only property of the ErrorEvent interface returns an integer containing the line number of the script file on which the error occurred. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) + */ + get lineno(): number; + /** + * The **`colno`** read-only property of the ErrorEvent interface returns an integer containing the column number of the script file on which the error occurred. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) + */ + get colno(): number; + /** + * The **`error`** read-only property of the ErrorEvent interface returns a JavaScript value, such as an Error or DOMException, representing the error associated with this event. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) + */ + get error(): any; +} +interface ErrorEventErrorEventInit { + message?: string; + filename?: string; + lineno?: number; + colno?: number; + error?: any; +} +/** + * The **`MessageEvent`** interface represents a message received by a target object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent) + */ +declare class MessageEvent extends Event { + constructor(type: string, initializer: MessageEventInit); + /** + * The **`data`** read-only property of the The data sent by the message emitter; this can be any data type, depending on what originated this event. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/data) + */ + readonly data: any; + /** + * The **`origin`** read-only property of the origin of the message emitter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/origin) + */ + readonly origin: string | null; + /** + * The **`lastEventId`** read-only property of the unique ID for the event. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/lastEventId) + */ + readonly lastEventId: string; + /** + * The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source) + */ + readonly source: MessagePort | null; + /** + * The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/ports) + */ + readonly ports: MessagePort[]; +} +interface MessageEventInit { + data: ArrayBuffer | string; +} +/** + * The **`PromiseRejectionEvent`** interface represents events which are sent to the global script context when JavaScript Promises are rejected. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent) + */ +declare abstract class PromiseRejectionEvent extends Event { + /** + * The PromiseRejectionEvent interface's **`promise`** read-only property indicates the JavaScript rejected. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/promise) + */ + readonly promise: Promise; + /** + * The PromiseRejectionEvent **`reason`** read-only property is any JavaScript value or Object which provides the reason passed into Promise.reject(). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/PromiseRejectionEvent/reason) + */ + readonly reason: any; +} +/** + * The **`FormData`** interface provides a way to construct a set of key/value pairs representing form fields and their values, which can be sent using the Window/fetch, XMLHttpRequest.send() or navigator.sendBeacon() methods. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData) + */ +declare class FormData { + constructor(); + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string | Blob): void; + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: string): void; + /** + * The **`append()`** method of the FormData interface appends a new value onto an existing key inside a `FormData` object, or adds the key if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/append) + */ + append(name: string, value: Blob, filename?: string): void; + /** + * The **`delete()`** method of the FormData interface deletes a key and its value(s) from a `FormData` object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/delete) + */ + delete(name: string): void; + /** + * The **`get()`** method of the FormData interface returns the first value associated with a given key from within a `FormData` object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/get) + */ + get(name: string): (File | string) | null; + /** + * The **`getAll()`** method of the FormData interface returns all the values associated with a given key from within a `FormData` object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/getAll) + */ + getAll(name: string): (File | string)[]; + /** + * The **`has()`** method of the FormData interface returns whether a `FormData` object contains a certain key. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/has) + */ + has(name: string): boolean; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string | Blob): void; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: string): void; + /** + * The **`set()`** method of the FormData interface sets a new value for an existing key inside a `FormData` object, or adds the key/value if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FormData/set) + */ + set(name: string, value: Blob, filename?: string): void; + /* Returns an array of key, value pairs for every entry in the list. */ + entries(): IterableIterator<[ + key: string, + value: File | string + ]>; + /* Returns a list of keys in the list. */ + keys(): IterableIterator; + /* Returns a list of values in the list. */ + values(): IterableIterator<(File | string)>; + forEach(callback: (this: This, value: File | string, key: string, parent: FormData) => void, thisArg?: This): void; + [Symbol.iterator](): IterableIterator<[ + key: string, + value: File | string + ]>; +} +interface ContentOptions { + html?: boolean; +} +declare class HTMLRewriter { + constructor(); + on(selector: string, handlers: HTMLRewriterElementContentHandlers): HTMLRewriter; + onDocument(handlers: HTMLRewriterDocumentContentHandlers): HTMLRewriter; + transform(response: Response): Response; +} +interface HTMLRewriterElementContentHandlers { + element?(element: Element): void | Promise; + comments?(comment: Comment): void | Promise; + text?(element: Text): void | Promise; +} +interface HTMLRewriterDocumentContentHandlers { + doctype?(doctype: Doctype): void | Promise; + comments?(comment: Comment): void | Promise; + text?(text: Text): void | Promise; + end?(end: DocumentEnd): void | Promise; +} +interface Doctype { + readonly name: string | null; + readonly publicId: string | null; + readonly systemId: string | null; +} +interface Element { + tagName: string; + readonly attributes: IterableIterator; + readonly removed: boolean; + readonly namespaceURI: string; + getAttribute(name: string): string | null; + hasAttribute(name: string): boolean; + setAttribute(name: string, value: string): Element; + removeAttribute(name: string): Element; + before(content: string | ReadableStream | Response, options?: ContentOptions): Element; + after(content: string | ReadableStream | Response, options?: ContentOptions): Element; + prepend(content: string | ReadableStream | Response, options?: ContentOptions): Element; + append(content: string | ReadableStream | Response, options?: ContentOptions): Element; + replace(content: string | ReadableStream | Response, options?: ContentOptions): Element; + remove(): Element; + removeAndKeepContent(): Element; + setInnerContent(content: string | ReadableStream | Response, options?: ContentOptions): Element; + onEndTag(handler: (tag: EndTag) => void | Promise): void; +} +interface EndTag { + name: string; + before(content: string | ReadableStream | Response, options?: ContentOptions): EndTag; + after(content: string | ReadableStream | Response, options?: ContentOptions): EndTag; + remove(): EndTag; +} +interface Comment { + text: string; + readonly removed: boolean; + before(content: string, options?: ContentOptions): Comment; + after(content: string, options?: ContentOptions): Comment; + replace(content: string, options?: ContentOptions): Comment; + remove(): Comment; +} +interface Text { + readonly text: string; + readonly lastInTextNode: boolean; + readonly removed: boolean; + before(content: string | ReadableStream | Response, options?: ContentOptions): Text; + after(content: string | ReadableStream | Response, options?: ContentOptions): Text; + replace(content: string | ReadableStream | Response, options?: ContentOptions): Text; + remove(): Text; +} +interface DocumentEnd { + append(content: string, options?: ContentOptions): DocumentEnd; +} +/** + * This is the event type for `fetch` events dispatched on the ServiceWorkerGlobalScope. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent) + */ +declare abstract class FetchEvent extends ExtendableEvent { + /** + * The **`request`** read-only property of the the event handler. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/request) + */ + readonly request: Request; + /** + * The **`respondWith()`** method of allows you to provide a promise for a Response yourself. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/FetchEvent/respondWith) + */ + respondWith(promise: Response | Promise): void; + passThroughOnException(): void; +} +type HeadersInit = Headers | Iterable> | Record; +/** + * The **`Headers`** interface of the Fetch API allows you to perform various actions on HTTP request and response headers. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers) + */ +declare class Headers { + constructor(init?: HeadersInit); + /** + * The **`get()`** method of the Headers interface returns a byte string of all the values of a header within a `Headers` object with a given name. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/get) + */ + get(name: string): string | null; + getAll(name: string): string[]; + /** + * The **`getSetCookie()`** method of the Headers interface returns an array containing the values of all Set-Cookie headers associated with a response. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/getSetCookie) + */ + getSetCookie(): string[]; + /** + * The **`has()`** method of the Headers interface returns a boolean stating whether a `Headers` object contains a certain header. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/has) + */ + has(name: string): boolean; + /** + * The **`set()`** method of the Headers interface sets a new value for an existing header inside a `Headers` object, or adds the header if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/set) + */ + set(name: string, value: string): void; + /** + * The **`append()`** method of the Headers interface appends a new value onto an existing header inside a `Headers` object, or adds the header if it does not already exist. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/append) + */ + append(name: string, value: string): void; + /** + * The **`delete()`** method of the Headers interface deletes a header from the current `Headers` object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Headers/delete) + */ + delete(name: string): void; + forEach(callback: (this: This, value: string, key: string, parent: Headers) => void, thisArg?: This): void; + /* Returns an iterator allowing to go through all key/value pairs contained in this object. */ + entries(): IterableIterator<[ + key: string, + value: string + ]>; + /* Returns an iterator allowing to go through all keys of the key/value pairs contained in this object. */ + keys(): IterableIterator; + /* Returns an iterator allowing to go through all values of the key/value pairs contained in this object. */ + values(): IterableIterator; + [Symbol.iterator](): IterableIterator<[ + key: string, + value: string + ]>; +} +type BodyInit = ReadableStream | string | ArrayBuffer | ArrayBufferView | Blob | URLSearchParams | FormData | Iterable | AsyncIterable; +declare abstract class Body { + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/body) */ + get body(): ReadableStream | null; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */ + get bodyUsed(): boolean; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */ + arrayBuffer(): Promise; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bytes) */ + bytes(): Promise; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */ + text(): Promise; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/json) */ + json(): Promise; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/formData) */ + formData(): Promise; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/blob) */ + blob(): Promise; +} +/** + * The **`Response`** interface of the Fetch API represents the response to a request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response) + */ +declare var Response: { + prototype: Response; + new (body?: BodyInit | null, init?: ResponseInit): Response; + error(): Response; + redirect(url: string, status?: number): Response; + json(any: any, maybeInit?: (ResponseInit | Response)): Response; +}; +/** + * The **`Response`** interface of the Fetch API represents the response to a request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response) + */ +interface Response extends Body { + /** + * The **`clone()`** method of the Response interface creates a clone of a response object, identical in every way, but stored in a different variable. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/clone) + */ + clone(): Response; + /** + * The **`status`** read-only property of the Response interface contains the HTTP status codes of the response. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/status) + */ + status: number; + /** + * The **`statusText`** read-only property of the Response interface contains the status message corresponding to the HTTP status code in Response.status. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/statusText) + */ + statusText: string; + /** + * The **`headers`** read-only property of the with the response. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/headers) + */ + headers: Headers; + /** + * The **`ok`** read-only property of the Response interface contains a Boolean stating whether the response was successful (status in the range 200-299) or not. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/ok) + */ + ok: boolean; + /** + * The **`redirected`** read-only property of the Response interface indicates whether or not the response is the result of a request you made which was redirected. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/redirected) + */ + redirected: boolean; + /** + * The **`url`** read-only property of the Response interface contains the URL of the response. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/url) + */ + url: string; + webSocket: WebSocket | null; + cf: any | undefined; + /** + * The **`type`** read-only property of the Response interface contains the type of the response. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Response/type) + */ + type: "default" | "error"; +} +interface ResponseInit { + status?: number; + statusText?: string; + headers?: HeadersInit; + cf?: any; + webSocket?: (WebSocket | null); + encodeBody?: "automatic" | "manual"; +} +type RequestInfo> = Request | string; +/** + * The **`Request`** interface of the Fetch API represents a resource request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request) + */ +declare var Request: { + prototype: Request; + new >(input: RequestInfo | URL, init?: RequestInit): Request; +}; +/** + * The **`Request`** interface of the Fetch API represents a resource request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request) + */ +interface Request> extends Body { + /** + * The **`clone()`** method of the Request interface creates a copy of the current `Request` object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/clone) + */ + clone(): Request; + /** + * The **`method`** read-only property of the `POST`, etc.) A String indicating the method of the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/method) + */ + method: string; + /** + * The **`url`** read-only property of the Request interface contains the URL of the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/url) + */ + url: string; + /** + * The **`headers`** read-only property of the with the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/headers) + */ + headers: Headers; + /** + * The **`redirect`** read-only property of the Request interface contains the mode for how redirects are handled. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/redirect) + */ + redirect: string; + fetcher: Fetcher | null; + /** + * The read-only **`signal`** property of the Request interface returns the AbortSignal associated with the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/signal) + */ + signal: AbortSignal; + cf?: Cf; + /** + * The **`integrity`** read-only property of the Request interface contains the subresource integrity value of the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/integrity) + */ + integrity: string; + /** + * The **`keepalive`** read-only property of the Request interface contains the request's `keepalive` setting (`true` or `false`), which indicates whether the browser will keep the associated request alive if the page that initiated it is unloaded before the request is complete. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/keepalive) + */ + keepalive: boolean; + /** + * The **`cache`** read-only property of the Request interface contains the cache mode of the request. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/cache) + */ + cache?: "no-store" | "no-cache"; +} +interface RequestInit { + /* A string to set request's method. */ + method?: string; + /* A Headers object, an object literal, or an array of two-item arrays to set request's headers. */ + headers?: HeadersInit; + /* A BodyInit object or null to set request's body. */ + body?: BodyInit | null; + /* A string indicating whether request follows redirects, results in an error upon encountering a redirect, or returns the redirect (in an opaque fashion). Sets request's redirect. */ + redirect?: string; + fetcher?: (Fetcher | null); + cf?: Cf; + /* A string indicating how the request will interact with the browser's cache to set request's cache. */ + cache?: "no-store" | "no-cache"; + /* A cryptographic hash of the resource to be fetched by request. Sets request's integrity. */ + integrity?: string; + /* An AbortSignal to set request's signal. */ + signal?: (AbortSignal | null); + encodeResponseBody?: "automatic" | "manual"; +} +type Service Rpc.WorkerEntrypointBranded) | Rpc.WorkerEntrypointBranded | ExportedHandler | undefined = undefined> = T extends new (...args: any[]) => Rpc.WorkerEntrypointBranded ? Fetcher> : T extends Rpc.WorkerEntrypointBranded ? Fetcher : T extends Exclude ? never : Fetcher; +type Fetcher = (T extends Rpc.EntrypointBranded ? Rpc.Provider : unknown) & { + fetch(input: RequestInfo | URL, init?: RequestInit): Promise; + connect(address: SocketAddress | string, options?: SocketOptions): Socket; +}; +interface KVNamespaceListKey { + name: Key; + expiration?: number; + metadata?: Metadata; +} +type KVNamespaceListResult = { + list_complete: false; + keys: KVNamespaceListKey[]; + cursor: string; + cacheStatus: string | null; +} | { + list_complete: true; + keys: KVNamespaceListKey[]; + cacheStatus: string | null; +}; +interface KVNamespace { + get(key: Key, options?: Partial>): Promise; + get(key: Key, type: "text"): Promise; + get(key: Key, type: "json"): Promise; + get(key: Key, type: "arrayBuffer"): Promise; + get(key: Key, type: "stream"): Promise; + get(key: Key, options?: KVNamespaceGetOptions<"text">): Promise; + get(key: Key, options?: KVNamespaceGetOptions<"json">): Promise; + get(key: Key, options?: KVNamespaceGetOptions<"arrayBuffer">): Promise; + get(key: Key, options?: KVNamespaceGetOptions<"stream">): Promise; + get(key: Array, type: "text"): Promise>; + get(key: Array, type: "json"): Promise>; + get(key: Array, options?: Partial>): Promise>; + get(key: Array, options?: KVNamespaceGetOptions<"text">): Promise>; + get(key: Array, options?: KVNamespaceGetOptions<"json">): Promise>; + list(options?: KVNamespaceListOptions): Promise>; + put(key: Key, value: string | ArrayBuffer | ArrayBufferView | ReadableStream, options?: KVNamespacePutOptions): Promise; + getWithMetadata(key: Key, options?: Partial>): Promise>; + getWithMetadata(key: Key, type: "text"): Promise>; + getWithMetadata(key: Key, type: "json"): Promise>; + getWithMetadata(key: Key, type: "arrayBuffer"): Promise>; + getWithMetadata(key: Key, type: "stream"): Promise>; + getWithMetadata(key: Key, options: KVNamespaceGetOptions<"text">): Promise>; + getWithMetadata(key: Key, options: KVNamespaceGetOptions<"json">): Promise>; + getWithMetadata(key: Key, options: KVNamespaceGetOptions<"arrayBuffer">): Promise>; + getWithMetadata(key: Key, options: KVNamespaceGetOptions<"stream">): Promise>; + getWithMetadata(key: Array, type: "text"): Promise>>; + getWithMetadata(key: Array, type: "json"): Promise>>; + getWithMetadata(key: Array, options?: Partial>): Promise>>; + getWithMetadata(key: Array, options?: KVNamespaceGetOptions<"text">): Promise>>; + getWithMetadata(key: Array, options?: KVNamespaceGetOptions<"json">): Promise>>; + delete(key: Key): Promise; +} +interface KVNamespaceListOptions { + limit?: number; + prefix?: (string | null); + cursor?: (string | null); +} +interface KVNamespaceGetOptions { + type: Type; + cacheTtl?: number; +} +interface KVNamespacePutOptions { + expiration?: number; + expirationTtl?: number; + metadata?: (any | null); +} +interface KVNamespaceGetWithMetadataResult { + value: Value | null; + metadata: Metadata | null; + cacheStatus: string | null; +} +type QueueContentType = "text" | "bytes" | "json" | "v8"; +interface Queue { + metrics(): Promise; + send(message: Body, options?: QueueSendOptions): Promise; + sendBatch(messages: Iterable>, options?: QueueSendBatchOptions): Promise; +} +interface QueueSendMetrics { + backlogCount: number; + backlogBytes: number; + oldestMessageTimestamp?: Date; +} +interface QueueSendMetadata { + metrics: QueueSendMetrics; +} +interface QueueSendResponse { + metadata: QueueSendMetadata; +} +interface QueueSendBatchMetrics { + backlogCount: number; + backlogBytes: number; + oldestMessageTimestamp?: Date; +} +interface QueueSendBatchMetadata { + metrics: QueueSendBatchMetrics; +} +interface QueueSendBatchResponse { + metadata: QueueSendBatchMetadata; +} +interface QueueSendOptions { + contentType?: QueueContentType; + delaySeconds?: number; +} +interface QueueSendBatchOptions { + delaySeconds?: number; +} +interface MessageSendRequest { + body: Body; + contentType?: QueueContentType; + delaySeconds?: number; +} +interface QueueMetrics { + backlogCount: number; + backlogBytes: number; + oldestMessageTimestamp?: Date; +} +interface MessageBatchMetrics { + backlogCount: number; + backlogBytes: number; + oldestMessageTimestamp?: Date; +} +interface MessageBatchMetadata { + metrics: MessageBatchMetrics; +} +interface QueueRetryOptions { + delaySeconds?: number; +} +interface Message { + readonly id: string; + readonly timestamp: Date; + readonly body: Body; + readonly attempts: number; + retry(options?: QueueRetryOptions): void; + ack(): void; +} +interface QueueEvent extends ExtendableEvent { + readonly messages: readonly Message[]; + readonly queue: string; + readonly metadata: MessageBatchMetadata; + retryAll(options?: QueueRetryOptions): void; + ackAll(): void; +} +interface MessageBatch { + readonly messages: readonly Message[]; + readonly queue: string; + readonly metadata: MessageBatchMetadata; + retryAll(options?: QueueRetryOptions): void; + ackAll(): void; +} +interface R2Error extends Error { + readonly name: string; + readonly code: number; + readonly message: string; + readonly action: string; + readonly stack: any; +} +interface R2ListOptions { + limit?: number; + prefix?: string; + cursor?: string; + delimiter?: string; + startAfter?: string; + include?: ("httpMetadata" | "customMetadata")[]; +} +interface R2Bucket { + head(key: string): Promise; + get(key: string, options: R2GetOptions & { + onlyIf: R2Conditional | Headers; + }): Promise; + get(key: string, options?: R2GetOptions): Promise; + put(key: string, value: ReadableStream | ArrayBuffer | ArrayBufferView | string | null | Blob, options?: R2PutOptions & { + onlyIf: R2Conditional | Headers; + }): Promise; + put(key: string, value: ReadableStream | ArrayBuffer | ArrayBufferView | string | null | Blob, options?: R2PutOptions): Promise; + createMultipartUpload(key: string, options?: R2MultipartOptions): Promise; + resumeMultipartUpload(key: string, uploadId: string): R2MultipartUpload; + delete(keys: string | string[]): Promise; + list(options?: R2ListOptions): Promise; +} +interface R2MultipartUpload { + readonly key: string; + readonly uploadId: string; + uploadPart(partNumber: number, value: ReadableStream | (ArrayBuffer | ArrayBufferView) | string | Blob, options?: R2UploadPartOptions): Promise; + abort(): Promise; + complete(uploadedParts: R2UploadedPart[]): Promise; +} +interface R2UploadedPart { + partNumber: number; + etag: string; +} +declare abstract class R2Object { + readonly key: string; + readonly version: string; + readonly size: number; + readonly etag: string; + readonly httpEtag: string; + readonly checksums: R2Checksums; + readonly uploaded: Date; + readonly httpMetadata?: R2HTTPMetadata; + readonly customMetadata?: Record; + readonly range?: R2Range; + readonly storageClass: string; + readonly ssecKeyMd5?: string; + writeHttpMetadata(headers: Headers): void; +} +interface R2ObjectBody extends R2Object { + get body(): ReadableStream; + get bodyUsed(): boolean; + arrayBuffer(): Promise; + bytes(): Promise; + text(): Promise; + json(): Promise; + blob(): Promise; +} +type R2Range = { + offset: number; + length?: number; +} | { + offset?: number; + length: number; +} | { + suffix: number; +}; +interface R2Conditional { + etagMatches?: string; + etagDoesNotMatch?: string; + uploadedBefore?: Date; + uploadedAfter?: Date; + secondsGranularity?: boolean; +} +interface R2GetOptions { + onlyIf?: (R2Conditional | Headers); + range?: (R2Range | Headers); + ssecKey?: (ArrayBuffer | string); +} +interface R2PutOptions { + onlyIf?: (R2Conditional | Headers); + httpMetadata?: (R2HTTPMetadata | Headers); + customMetadata?: Record; + md5?: ((ArrayBuffer | ArrayBufferView) | string); + sha1?: ((ArrayBuffer | ArrayBufferView) | string); + sha256?: ((ArrayBuffer | ArrayBufferView) | string); + sha384?: ((ArrayBuffer | ArrayBufferView) | string); + sha512?: ((ArrayBuffer | ArrayBufferView) | string); + storageClass?: string; + ssecKey?: (ArrayBuffer | string); +} +interface R2MultipartOptions { + httpMetadata?: (R2HTTPMetadata | Headers); + customMetadata?: Record; + storageClass?: string; + ssecKey?: (ArrayBuffer | string); +} +interface R2Checksums { + readonly md5?: ArrayBuffer; + readonly sha1?: ArrayBuffer; + readonly sha256?: ArrayBuffer; + readonly sha384?: ArrayBuffer; + readonly sha512?: ArrayBuffer; + toJSON(): R2StringChecksums; +} +interface R2StringChecksums { + md5?: string; + sha1?: string; + sha256?: string; + sha384?: string; + sha512?: string; +} +interface R2HTTPMetadata { + contentType?: string; + contentLanguage?: string; + contentDisposition?: string; + contentEncoding?: string; + cacheControl?: string; + cacheExpiry?: Date; +} +type R2Objects = { + objects: R2Object[]; + delimitedPrefixes: string[]; +} & ({ + truncated: true; + cursor: string; +} | { + truncated: false; +}); +interface R2UploadPartOptions { + ssecKey?: (ArrayBuffer | string); +} +declare abstract class ScheduledEvent extends ExtendableEvent { + readonly scheduledTime: number; + readonly cron: string; + noRetry(): void; +} +interface ScheduledController { + readonly scheduledTime: number; + readonly cron: string; + noRetry(): void; +} +interface QueuingStrategy { + highWaterMark?: (number | bigint); + size?: (chunk: T) => number | bigint; +} +interface UnderlyingSink { + type?: string; + start?: (controller: WritableStreamDefaultController) => void | Promise; + write?: (chunk: W, controller: WritableStreamDefaultController) => void | Promise; + abort?: (reason: any) => void | Promise; + close?: () => void | Promise; +} +interface UnderlyingByteSource { + type: "bytes"; + autoAllocateChunkSize?: number; + start?: (controller: ReadableByteStreamController) => void | Promise; + pull?: (controller: ReadableByteStreamController) => void | Promise; + cancel?: (reason: any) => void | Promise; +} +interface UnderlyingSource { + type?: "" | undefined; + start?: (controller: ReadableStreamDefaultController) => void | Promise; + pull?: (controller: ReadableStreamDefaultController) => void | Promise; + cancel?: (reason: any) => void | Promise; + expectedLength?: (number | bigint); +} +interface Transformer { + readableType?: string; + writableType?: string; + start?: (controller: TransformStreamDefaultController) => void | Promise; + transform?: (chunk: I, controller: TransformStreamDefaultController) => void | Promise; + flush?: (controller: TransformStreamDefaultController) => void | Promise; + cancel?: (reason: any) => void | Promise; + expectedLength?: number; +} +interface StreamPipeOptions { + preventAbort?: boolean; + preventCancel?: boolean; + /** + * Pipes this readable stream to a given writable stream destination. The way in which the piping process behaves under various error conditions can be customized with a number of passed options. It returns a promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered. + * + * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader. + * + * Errors and closures of the source and destination streams propagate as follows: + * + * An error in this source readable stream will abort destination, unless preventAbort is truthy. The returned promise will be rejected with the source's error, or with any error that occurs during aborting the destination. + * + * An error in destination will cancel this source readable stream, unless preventCancel is truthy. The returned promise will be rejected with the destination's error, or with any error that occurs during canceling the source. + * + * When this source readable stream closes, destination will be closed, unless preventClose is truthy. The returned promise will be fulfilled once this process completes, unless an error is encountered while closing the destination, in which case it will be rejected with that error. + * + * If destination starts out closed or closing, this source readable stream will be canceled, unless preventCancel is true. The returned promise will be rejected with an error indicating piping to a closed stream failed, or with any error that occurs during canceling the source. + * + * The signal option can be set to an AbortSignal to allow aborting an ongoing pipe operation via the corresponding AbortController. In this case, this source readable stream will be canceled, and destination aborted, unless the respective options preventCancel or preventAbort are set. + */ + preventClose?: boolean; + signal?: AbortSignal; +} +type ReadableStreamReadResult = { + done: false; + value: R; +} | { + done: true; + value?: undefined; +}; +/** + * The `ReadableStream` interface of the Streams API represents a readable stream of byte data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream) + */ +interface ReadableStream { + /** + * The **`locked`** read-only property of the ReadableStream interface returns whether or not the readable stream is locked to a reader. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/locked) + */ + get locked(): boolean; + /** + * The **`cancel()`** method of the ReadableStream interface returns a Promise that resolves when the stream is canceled. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/cancel) + */ + cancel(reason?: any): Promise; + /** + * The **`getReader()`** method of the ReadableStream interface creates a reader and locks the stream to it. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/getReader) + */ + getReader(): ReadableStreamDefaultReader; + /** + * The **`getReader()`** method of the ReadableStream interface creates a reader and locks the stream to it. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/getReader) + */ + getReader(options: ReadableStreamGetReaderOptions): ReadableStreamBYOBReader; + /** + * The **`pipeThrough()`** method of the ReadableStream interface provides a chainable way of piping the current stream through a transform stream or any other writable/readable pair. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeThrough) + */ + pipeThrough(transform: ReadableWritablePair, options?: StreamPipeOptions): ReadableStream; + /** + * The **`pipeTo()`** method of the ReadableStream interface pipes the current `ReadableStream` to a given WritableStream and returns a Promise that fulfills when the piping process completes successfully, or rejects if any errors were encountered. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/pipeTo) + */ + pipeTo(destination: WritableStream, options?: StreamPipeOptions): Promise; + /** + * The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream/tee) + */ + tee(): [ + ReadableStream, + ReadableStream + ]; + values(options?: ReadableStreamValuesOptions): AsyncIterableIterator; + [Symbol.asyncIterator](options?: ReadableStreamValuesOptions): AsyncIterableIterator; +} +/** + * The `ReadableStream` interface of the Streams API represents a readable stream of byte data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStream) + */ +declare const ReadableStream: { + prototype: ReadableStream; + new (underlyingSource: UnderlyingByteSource, strategy?: QueuingStrategy): ReadableStream; + new (underlyingSource?: UnderlyingSource, strategy?: QueuingStrategy): ReadableStream; +}; +/** + * The **`ReadableStreamDefaultReader`** interface of the Streams API represents a default reader that can be used to read stream data supplied from a network (such as a fetch request). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader) + */ +declare class ReadableStreamDefaultReader { + constructor(stream: ReadableStream); + get closed(): Promise; + cancel(reason?: any): Promise; + /** + * The **`read()`** method of the ReadableStreamDefaultReader interface returns a Promise providing access to the next chunk in the stream's internal queue. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/read) + */ + read(): Promise>; + /** + * The **`releaseLock()`** method of the ReadableStreamDefaultReader interface releases the reader's lock on the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultReader/releaseLock) + */ + releaseLock(): void; +} +/** + * The `ReadableStreamBYOBReader` interface of the Streams API defines a reader for a ReadableStream that supports zero-copy reading from an underlying byte source. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader) + */ +declare class ReadableStreamBYOBReader { + constructor(stream: ReadableStream); + get closed(): Promise; + cancel(reason?: any): Promise; + /** + * The **`read()`** method of the ReadableStreamBYOBReader interface is used to read data into a view on a user-supplied buffer from an associated readable byte stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/read) + */ + read(view: T): Promise>; + /** + * The **`releaseLock()`** method of the ReadableStreamBYOBReader interface releases the reader's lock on the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBReader/releaseLock) + */ + releaseLock(): void; + readAtLeast(minElements: number, view: T): Promise>; +} +interface ReadableStreamBYOBReaderReadableStreamBYOBReaderReadOptions { + min?: number; +} +interface ReadableStreamGetReaderOptions { + /** + * Creates a ReadableStreamBYOBReader and locks the stream to the new reader. + * + * This call behaves the same way as the no-argument variant, except that it only works on readable byte streams, i.e. streams which were constructed specifically with the ability to handle "bring your own buffer" reading. The returned BYOB reader provides the ability to directly read individual chunks from the stream via its read() method, into developer-supplied buffers, allowing more precise control over allocation. + */ + mode: "byob"; +} +/** + * The **`ReadableStreamBYOBRequest`** interface of the Streams API represents a 'pull request' for data from an underlying source that will made as a zero-copy transfer to a consumer (bypassing the stream's internal queues). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) + */ +declare abstract class ReadableStreamBYOBRequest { + /** + * The **`view`** getter property of the ReadableStreamBYOBRequest interface returns the current view. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/view) + */ + get view(): Uint8Array | null; + /** + * The **`respond()`** method of the ReadableStreamBYOBRequest interface is used to signal to the associated readable byte stream that the specified number of bytes were written into the ReadableStreamBYOBRequest.view. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respond) + */ + respond(bytesWritten: number): void; + /** + * The **`respondWithNewView()`** method of the ReadableStreamBYOBRequest interface specifies a new view that the consumer of the associated readable byte stream should write to instead of ReadableStreamBYOBRequest.view. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest/respondWithNewView) + */ + respondWithNewView(view: ArrayBuffer | ArrayBufferView): void; + get atLeast(): number | null; +} +/** + * The **`ReadableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a ReadableStream's state and internal queue. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController) + */ +declare abstract class ReadableStreamDefaultController { + /** + * The **`desiredSize`** read-only property of the required to fill the stream's internal queue. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/desiredSize) + */ + get desiredSize(): number | null; + /** + * The **`close()`** method of the ReadableStreamDefaultController interface closes the associated stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/close) + */ + close(): void; + /** + * The **`enqueue()`** method of the ```js-nolint enqueue(chunk) ``` - `chunk` - : The chunk to enqueue. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/enqueue) + */ + enqueue(chunk?: R): void; + /** + * The **`error()`** method of the with the associated stream to error. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamDefaultController/error) + */ + error(reason: any): void; +} +/** + * The **`ReadableByteStreamController`** interface of the Streams API represents a controller for a readable byte stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController) + */ +declare abstract class ReadableByteStreamController { + /** + * The **`byobRequest`** read-only property of the ReadableByteStreamController interface returns the current BYOB request, or `null` if there are no pending requests. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/byobRequest) + */ + get byobRequest(): ReadableStreamBYOBRequest | null; + /** + * The **`desiredSize`** read-only property of the ReadableByteStreamController interface returns the number of bytes required to fill the stream's internal queue to its 'desired size'. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/desiredSize) + */ + get desiredSize(): number | null; + /** + * The **`close()`** method of the ReadableByteStreamController interface closes the associated stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/close) + */ + close(): void; + /** + * The **`enqueue()`** method of the ReadableByteStreamController interface enqueues a given chunk on the associated readable byte stream (the chunk is copied into the stream's internal queues). + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/enqueue) + */ + enqueue(chunk: ArrayBuffer | ArrayBufferView): void; + /** + * The **`error()`** method of the ReadableByteStreamController interface causes any future interactions with the associated stream to error with the specified reason. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableByteStreamController/error) + */ + error(reason: any): void; +} +/** + * The **`WritableStreamDefaultController`** interface of the Streams API represents a controller allowing control of a WritableStream's state. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController) + */ +declare abstract class WritableStreamDefaultController { + /** + * The read-only **`signal`** property of the WritableStreamDefaultController interface returns the AbortSignal associated with the controller. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/signal) + */ + get signal(): AbortSignal; + /** + * The **`error()`** method of the with the associated stream to error. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultController/error) + */ + error(reason?: any): void; +} +/** + * The **`TransformStreamDefaultController`** interface of the Streams API provides methods to manipulate the associated ReadableStream and WritableStream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController) + */ +declare abstract class TransformStreamDefaultController { + /** + * The **`desiredSize`** read-only property of the TransformStreamDefaultController interface returns the desired size to fill the queue of the associated ReadableStream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/desiredSize) + */ + get desiredSize(): number | null; + /** + * The **`enqueue()`** method of the TransformStreamDefaultController interface enqueues the given chunk in the readable side of the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/enqueue) + */ + enqueue(chunk?: O): void; + /** + * The **`error()`** method of the TransformStreamDefaultController interface errors both sides of the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/error) + */ + error(reason: any): void; + /** + * The **`terminate()`** method of the TransformStreamDefaultController interface closes the readable side and errors the writable side of the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStreamDefaultController/terminate) + */ + terminate(): void; +} +interface ReadableWritablePair { + readable: ReadableStream; + /** + * Provides a convenient, chainable way of piping this readable stream through a transform stream (or any other { writable, readable } pair). It simply pipes the stream into the writable side of the supplied pair, and returns the readable side for further use. + * + * Piping a stream will lock it for the duration of the pipe, preventing any other consumer from acquiring a reader. + */ + writable: WritableStream; +} +/** + * The **`WritableStream`** interface of the Streams API provides a standard abstraction for writing streaming data to a destination, known as a sink. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream) + */ +declare class WritableStream { + constructor(underlyingSink?: UnderlyingSink, queuingStrategy?: QueuingStrategy); + /** + * The **`locked`** read-only property of the WritableStream interface returns a boolean indicating whether the `WritableStream` is locked to a writer. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/locked) + */ + get locked(): boolean; + /** + * The **`abort()`** method of the WritableStream interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/abort) + */ + abort(reason?: any): Promise; + /** + * The **`close()`** method of the WritableStream interface closes the associated stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/close) + */ + close(): Promise; + /** + * The **`getWriter()`** method of the WritableStream interface returns a new instance of WritableStreamDefaultWriter and locks the stream to that instance. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/getWriter) + */ + getWriter(): WritableStreamDefaultWriter; +} +/** + * The **`WritableStreamDefaultWriter`** interface of the Streams API is the object returned by WritableStream.getWriter() and once created locks the writer to the `WritableStream` ensuring that no other streams can write to the underlying sink. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter) + */ +declare class WritableStreamDefaultWriter { + constructor(stream: WritableStream); + /** + * The **`closed`** read-only property of the the stream errors or the writer's lock is released. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/closed) + */ + get closed(): Promise; + /** + * The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/ready) + */ + get ready(): Promise; + /** + * The **`desiredSize`** read-only property of the to fill the stream's internal queue. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/desiredSize) + */ + get desiredSize(): number | null; + /** + * The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/abort) + */ + abort(reason?: any): Promise; + /** + * The **`close()`** method of the stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/close) + */ + close(): Promise; + /** + * The **`write()`** method of the operation. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/write) + */ + write(chunk?: W): Promise; + /** + * The **`releaseLock()`** method of the corresponding stream. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStreamDefaultWriter/releaseLock) + */ + releaseLock(): void; +} +/** + * The **`TransformStream`** interface of the Streams API represents a concrete implementation of the pipe chain _transform stream_ concept. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream) + */ +declare class TransformStream { + constructor(transformer?: Transformer, writableStrategy?: QueuingStrategy, readableStrategy?: QueuingStrategy); + /** + * The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this `TransformStream`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable) + */ + get readable(): ReadableStream; + /** + * The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this `TransformStream`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/writable) + */ + get writable(): WritableStream; +} +declare class FixedLengthStream extends IdentityTransformStream { + constructor(expectedLength: number | bigint, queuingStrategy?: IdentityTransformStreamQueuingStrategy); +} +declare class IdentityTransformStream extends TransformStream { + constructor(queuingStrategy?: IdentityTransformStreamQueuingStrategy); +} +interface IdentityTransformStreamQueuingStrategy { + highWaterMark?: (number | bigint); +} +interface ReadableStreamValuesOptions { + preventCancel?: boolean; +} +/** + * The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream) + */ +declare class CompressionStream extends TransformStream { + constructor(format: "gzip" | "deflate" | "deflate-raw"); +} +/** + * The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream) + */ +declare class DecompressionStream extends TransformStream { + constructor(format: "gzip" | "deflate" | "deflate-raw"); +} +/** + * The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream) + */ +declare class TextEncoderStream extends TransformStream { + constructor(); + get encoding(): string; +} +/** + * The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream) + */ +declare class TextDecoderStream extends TransformStream { + constructor(label?: string, options?: TextDecoderStreamTextDecoderStreamInit); + get encoding(): string; + get fatal(): boolean; + get ignoreBOM(): boolean; +} +interface TextDecoderStreamTextDecoderStreamInit { + fatal?: boolean; + ignoreBOM?: boolean; +} +/** + * The **`ByteLengthQueuingStrategy`** interface of the Streams API provides a built-in byte length queuing strategy that can be used when constructing streams. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy) + */ +declare class ByteLengthQueuingStrategy implements QueuingStrategy { + constructor(init: QueuingStrategyInit); + /** + * The read-only **`ByteLengthQueuingStrategy.highWaterMark`** property returns the total number of bytes that can be contained in the internal queue before backpressure is applied. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark) + */ + get highWaterMark(): number; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/size) */ + get size(): (chunk?: any) => number; +} +/** + * The **`CountQueuingStrategy`** interface of the Streams API provides a built-in chunk counting queuing strategy that can be used when constructing streams. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy) + */ +declare class CountQueuingStrategy implements QueuingStrategy { + constructor(init: QueuingStrategyInit); + /** + * The read-only **`CountQueuingStrategy.highWaterMark`** property returns the total number of chunks that can be contained in the internal queue before backpressure is applied. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/highWaterMark) + */ + get highWaterMark(): number; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/size) */ + get size(): (chunk?: any) => number; +} +interface QueuingStrategyInit { + /** + * Creates a new ByteLengthQueuingStrategy with the provided high water mark. + * + * Note that the provided high water mark will not be validated ahead of time. Instead, if it is negative, NaN, or not a number, the resulting ByteLengthQueuingStrategy will cause the corresponding stream constructor to throw. + */ + highWaterMark: number; +} +interface TracePreviewInfo { + id: string; + slug: string; + name: string; +} +interface ScriptVersion { + id?: string; + tag?: string; + message?: string; +} +declare abstract class TailEvent extends ExtendableEvent { + readonly events: TraceItem[]; + readonly traces: TraceItem[]; +} +interface TraceItem { + readonly event: (TraceItemFetchEventInfo | TraceItemJsRpcEventInfo | TraceItemConnectEventInfo | TraceItemScheduledEventInfo | TraceItemAlarmEventInfo | TraceItemQueueEventInfo | TraceItemEmailEventInfo | TraceItemTailEventInfo | TraceItemCustomEventInfo | TraceItemHibernatableWebSocketEventInfo) | null; + readonly eventTimestamp: number | null; + readonly logs: TraceLog[]; + readonly exceptions: TraceException[]; + readonly diagnosticsChannelEvents: TraceDiagnosticChannelEvent[]; + readonly scriptName: string | null; + readonly entrypoint?: string; + readonly scriptVersion?: ScriptVersion; + readonly dispatchNamespace?: string; + readonly scriptTags?: string[]; + readonly tailAttributes?: Record; + readonly preview?: TracePreviewInfo; + readonly durableObjectId?: string; + readonly outcome: string; + readonly executionModel: string; + readonly truncated: boolean; + readonly cpuTime: number; + readonly wallTime: number; +} +interface TraceItemAlarmEventInfo { + readonly scheduledTime: Date; +} +interface TraceItemConnectEventInfo { +} +interface TraceItemCustomEventInfo { +} +interface TraceItemScheduledEventInfo { + readonly scheduledTime: number; + readonly cron: string; +} +interface TraceItemQueueEventInfo { + readonly queue: string; + readonly batchSize: number; +} +interface TraceItemEmailEventInfo { + readonly mailFrom: string; + readonly rcptTo: string; + readonly rawSize: number; +} +interface TraceItemTailEventInfo { + readonly consumedEvents: TraceItemTailEventInfoTailItem[]; +} +interface TraceItemTailEventInfoTailItem { + readonly scriptName: string | null; +} +interface TraceItemFetchEventInfo { + readonly response?: TraceItemFetchEventInfoResponse; + readonly request: TraceItemFetchEventInfoRequest; +} +interface TraceItemFetchEventInfoRequest { + readonly cf?: any; + readonly headers: Record; + readonly method: string; + readonly url: string; + getUnredacted(): TraceItemFetchEventInfoRequest; +} +interface TraceItemFetchEventInfoResponse { + readonly status: number; +} +interface TraceItemJsRpcEventInfo { + readonly rpcMethod: string; +} +interface TraceItemHibernatableWebSocketEventInfo { + readonly getWebSocketEvent: TraceItemHibernatableWebSocketEventInfoMessage | TraceItemHibernatableWebSocketEventInfoClose | TraceItemHibernatableWebSocketEventInfoError; +} +interface TraceItemHibernatableWebSocketEventInfoMessage { + readonly webSocketEventType: string; +} +interface TraceItemHibernatableWebSocketEventInfoClose { + readonly webSocketEventType: string; + readonly code: number; + readonly wasClean: boolean; +} +interface TraceItemHibernatableWebSocketEventInfoError { + readonly webSocketEventType: string; +} +interface TraceLog { + readonly timestamp: number; + readonly level: string; + readonly message: any; +} +interface TraceException { + readonly timestamp: number; + readonly message: string; + readonly name: string; + readonly stack?: string; +} +interface TraceDiagnosticChannelEvent { + readonly timestamp: number; + readonly channel: string; + readonly message: any; +} +interface TraceMetrics { + readonly cpuTime: number; + readonly wallTime: number; +} +interface UnsafeTraceMetrics { + fromTrace(item: TraceItem): TraceMetrics; +} +/** + * The **`URL`** interface is used to parse, construct, normalize, and encode URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL) + */ +declare class URL { + constructor(url: string | URL, base?: string | URL); + /** + * The **`origin`** read-only property of the URL interface returns a string containing the Unicode serialization of the origin of the represented URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/origin) + */ + get origin(): string; + /** + * The **`href`** property of the URL interface is a string containing the whole URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/href) + */ + get href(): string; + /** + * The **`href`** property of the URL interface is a string containing the whole URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/href) + */ + set href(value: string); + /** + * The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final `':'`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol) + */ + get protocol(): string; + /** + * The **`protocol`** property of the URL interface is a string containing the protocol or scheme of the URL, including the final `':'`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/protocol) + */ + set protocol(value: string); + /** + * The **`username`** property of the URL interface is a string containing the username component of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username) + */ + get username(): string; + /** + * The **`username`** property of the URL interface is a string containing the username component of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/username) + */ + set username(value: string); + /** + * The **`password`** property of the URL interface is a string containing the password component of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password) + */ + get password(): string; + /** + * The **`password`** property of the URL interface is a string containing the password component of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/password) + */ + set password(value: string); + /** + * The **`host`** property of the URL interface is a string containing the host, which is the URL.hostname, and then, if the port of the URL is nonempty, a `':'`, followed by the URL.port of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host) + */ + get host(): string; + /** + * The **`host`** property of the URL interface is a string containing the host, which is the URL.hostname, and then, if the port of the URL is nonempty, a `':'`, followed by the URL.port of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/host) + */ + set host(value: string); + /** + * The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname) + */ + get hostname(): string; + /** + * The **`hostname`** property of the URL interface is a string containing either the domain name or IP address of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hostname) + */ + set hostname(value: string); + /** + * The **`port`** property of the URL interface is a string containing the port number of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port) + */ + get port(): string; + /** + * The **`port`** property of the URL interface is a string containing the port number of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/port) + */ + set port(value: string); + /** + * The **`pathname`** property of the URL interface represents a location in a hierarchical structure. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/pathname) + */ + get pathname(): string; + /** + * The **`pathname`** property of the URL interface represents a location in a hierarchical structure. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/pathname) + */ + set pathname(value: string); + /** + * The **`search`** property of the URL interface is a search string, also called a _query string_, that is a string containing a `'?'` followed by the parameters of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search) + */ + get search(): string; + /** + * The **`search`** property of the URL interface is a search string, also called a _query string_, that is a string containing a `'?'` followed by the parameters of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/search) + */ + set search(value: string); + /** + * The **`hash`** property of the URL interface is a string containing a `'#'` followed by the fragment identifier of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash) + */ + get hash(): string; + /** + * The **`hash`** property of the URL interface is a string containing a `'#'` followed by the fragment identifier of the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/hash) + */ + set hash(value: string); + /** + * The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/searchParams) + */ + get searchParams(): URLSearchParams; + /** + * The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/toJSON) + */ + toJSON(): string; + /*function toString() { [native code] }*/ + toString(): string; + /** + * The **`URL.canParse()`** static method of the URL interface returns a boolean indicating whether or not an absolute URL, or a relative URL combined with a base URL, are parsable and valid. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) + */ + static canParse(url: string, base?: string): boolean; + /** + * The **`URL.parse()`** static method of the URL interface returns a newly created URL object representing the URL defined by the parameters. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) + */ + static parse(url: string, base?: string): URL | null; + /** + * The **`createObjectURL()`** static method of the URL interface creates a string containing a URL representing the object given in the parameter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/createObjectURL_static) + */ + static createObjectURL(object: File | Blob): string; + /** + * The **`revokeObjectURL()`** static method of the URL interface releases an existing object URL which was previously created by calling Call this method when you've finished using an object URL to let the browser know not to keep the reference to the file any longer. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/revokeObjectURL_static) + */ + static revokeObjectURL(object_url: string): void; +} +/** + * The **`URLSearchParams`** interface defines utility methods to work with the query string of a URL. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams) + */ +declare class URLSearchParams { + constructor(init?: (Iterable> | Record | string)); + /** + * The **`size`** read-only property of the URLSearchParams interface indicates the total number of search parameter entries. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/size) + */ + get size(): number; + /** + * The **`append()`** method of the URLSearchParams interface appends a specified key/value pair as a new search parameter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/append) + */ + append(name: string, value: string): void; + /** + * The **`delete()`** method of the URLSearchParams interface deletes specified parameters and their associated value(s) from the list of all search parameters. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/delete) + */ + delete(name: string, value?: string): void; + /** + * The **`get()`** method of the URLSearchParams interface returns the first value associated to the given search parameter. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/get) + */ + get(name: string): string | null; + /** + * The **`getAll()`** method of the URLSearchParams interface returns all the values associated with a given search parameter as an array. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/getAll) + */ + getAll(name: string): string[]; + /** + * The **`has()`** method of the URLSearchParams interface returns a boolean value that indicates whether the specified parameter is in the search parameters. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/has) + */ + has(name: string, value?: string): boolean; + /** + * The **`set()`** method of the URLSearchParams interface sets the value associated with a given search parameter to the given value. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/set) + */ + set(name: string, value: string): void; + /** + * The **`URLSearchParams.sort()`** method sorts all key/value pairs contained in this object in place and returns `undefined`. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams/sort) + */ + sort(): void; + /* Returns an array of key, value pairs for every entry in the search params. */ + entries(): IterableIterator<[ + key: string, + value: string + ]>; + /* Returns a list of keys in the search params. */ + keys(): IterableIterator; + /* Returns a list of values in the search params. */ + values(): IterableIterator; + forEach(callback: (this: This, value: string, key: string, parent: URLSearchParams) => void, thisArg?: This): void; + /*function toString() { [native code] }*/ + toString(): string; + [Symbol.iterator](): IterableIterator<[ + key: string, + value: string + ]>; +} +declare class URLPattern { + constructor(input?: (string | URLPatternInit), baseURL?: (string | URLPatternOptions), patternOptions?: URLPatternOptions); + get protocol(): string; + get username(): string; + get password(): string; + get hostname(): string; + get port(): string; + get pathname(): string; + get search(): string; + get hash(): string; + get hasRegExpGroups(): boolean; + test(input?: (string | URLPatternInit), baseURL?: string): boolean; + exec(input?: (string | URLPatternInit), baseURL?: string): URLPatternResult | null; +} +interface URLPatternInit { + protocol?: string; + username?: string; + password?: string; + hostname?: string; + port?: string; + pathname?: string; + search?: string; + hash?: string; + baseURL?: string; +} +interface URLPatternComponentResult { + input: string; + groups: Record; +} +interface URLPatternResult { + inputs: (string | URLPatternInit)[]; + protocol: URLPatternComponentResult; + username: URLPatternComponentResult; + password: URLPatternComponentResult; + hostname: URLPatternComponentResult; + port: URLPatternComponentResult; + pathname: URLPatternComponentResult; + search: URLPatternComponentResult; + hash: URLPatternComponentResult; +} +interface URLPatternOptions { + ignoreCase?: boolean; +} +/** + * A `CloseEvent` is sent to clients using WebSockets when the connection is closed. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent) + */ +declare class CloseEvent extends Event { + constructor(type: string, initializer?: CloseEventInit); + /** + * The **`code`** read-only property of the CloseEvent interface returns a WebSocket connection close code indicating the reason the connection was closed. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/code) + */ + readonly code: number; + /** + * The **`reason`** read-only property of the CloseEvent interface returns the WebSocket connection close reason the server gave for closing the connection; that is, a concise human-readable prose explanation for the closure. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/reason) + */ + readonly reason: string; + /** + * The **`wasClean`** read-only property of the CloseEvent interface returns `true` if the connection closed cleanly. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/CloseEvent/wasClean) + */ + readonly wasClean: boolean; +} +interface CloseEventInit { + code?: number; + reason?: string; + wasClean?: boolean; +} +type WebSocketEventMap = { + close: CloseEvent; + message: MessageEvent; + open: Event; + error: ErrorEvent; +}; +/** + * The `WebSocket` object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket) + */ +declare var WebSocket: { + prototype: WebSocket; + new (url: string, protocols?: (string[] | string)): WebSocket; + readonly READY_STATE_CONNECTING: number; + readonly CONNECTING: number; + readonly READY_STATE_OPEN: number; + readonly OPEN: number; + readonly READY_STATE_CLOSING: number; + readonly CLOSING: number; + readonly READY_STATE_CLOSED: number; + readonly CLOSED: number; +}; +/** + * The `WebSocket` object provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket) + */ +interface WebSocket extends EventTarget { + accept(options?: WebSocketAcceptOptions): void; + /** + * The **`WebSocket.send()`** method enqueues the specified data to be transmitted to the server over the WebSocket connection, increasing the value of `bufferedAmount` by the number of bytes needed to contain the data. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/send) + */ + send(message: (ArrayBuffer | ArrayBufferView) | string): void; + /** + * The **`WebSocket.close()`** method closes the already `CLOSED`, this method does nothing. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/close) + */ + close(code?: number, reason?: string): void; + serializeAttachment(attachment: any): void; + deserializeAttachment(): any | null; + /** + * The **`WebSocket.readyState`** read-only property returns the current state of the WebSocket connection. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/readyState) + */ + readyState: number; + /** + * The **`WebSocket.url`** read-only property returns the absolute URL of the WebSocket as resolved by the constructor. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/url) + */ + url: string | null; + /** + * The **`WebSocket.protocol`** read-only property returns the name of the sub-protocol the server selected; this will be one of the strings specified in the `protocols` parameter when creating the WebSocket object, or the empty string if no connection is established. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/protocol) + */ + protocol: string | null; + /** + * The **`WebSocket.extensions`** read-only property returns the extensions selected by the server. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/extensions) + */ + extensions: string | null; + /** + * The **`WebSocket.binaryType`** property controls the type of binary data being received over the WebSocket connection. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/WebSocket/binaryType) + */ + binaryType: "blob" | "arraybuffer"; +} +interface WebSocketAcceptOptions { + /** + * When set to `true`, receiving a server-initiated WebSocket Close frame will not + * automatically send a reciprocal Close frame, leaving the connection in a half-open + * state. This is useful for proxying scenarios where you need to coordinate closing + * both sides independently. Defaults to `false` when the + * `no_web_socket_half_open_by_default` compatibility flag is enabled. + */ + allowHalfOpen?: boolean; +} +declare const WebSocketPair: { + new (): { + 0: WebSocket; + 1: WebSocket; + }; +}; +interface SqlStorage { + exec>(query: string, ...bindings: any[]): SqlStorageCursor; + get databaseSize(): number; + Cursor: typeof SqlStorageCursor; + Statement: typeof SqlStorageStatement; +} +declare abstract class SqlStorageStatement { +} +type SqlStorageValue = ArrayBuffer | string | number | null; +declare abstract class SqlStorageCursor> { + next(): { + done?: false; + value: T; + } | { + done: true; + value?: never; + }; + toArray(): T[]; + one(): T; + raw(): IterableIterator; + columnNames: string[]; + get rowsRead(): number; + get rowsWritten(): number; + [Symbol.iterator](): IterableIterator; +} +interface Socket { + get readable(): ReadableStream; + get writable(): WritableStream; + get closed(): Promise; + get opened(): Promise; + get upgraded(): boolean; + get secureTransport(): "on" | "off" | "starttls"; + close(): Promise; + startTls(options?: TlsOptions): Socket; +} +interface SocketOptions { + secureTransport?: string; + allowHalfOpen: boolean; + highWaterMark?: (number | bigint); +} +interface SocketAddress { + hostname: string; + port: number; +} +interface TlsOptions { + expectedServerHostname?: string; +} +interface SocketInfo { + remoteAddress?: string; + localAddress?: string; +} +/** + * The **`EventSource`** interface is web content's interface to server-sent events. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource) + */ +declare class EventSource extends EventTarget { + constructor(url: string, init?: EventSourceEventSourceInit); + /** + * The **`close()`** method of the EventSource interface closes the connection, if one is made, and sets the ```js-nolint close() ``` None. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/close) + */ + close(): void; + /** + * The **`url`** read-only property of the URL of the source. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/url) + */ + get url(): string; + /** + * The **`withCredentials`** read-only property of the the `EventSource` object was instantiated with CORS credentials set. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/withCredentials) + */ + get withCredentials(): boolean; + /** + * The **`readyState`** read-only property of the connection. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/readyState) + */ + get readyState(): number; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */ + get onopen(): any | null; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/open_event) */ + set onopen(value: any | null); + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/message_event) */ + get onmessage(): any | null; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/message_event) */ + set onmessage(value: any | null); + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/error_event) */ + get onerror(): any | null; + /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/EventSource/error_event) */ + set onerror(value: any | null); + static readonly CONNECTING: number; + static readonly OPEN: number; + static readonly CLOSED: number; + static from(stream: ReadableStream): EventSource; +} +interface EventSourceEventSourceInit { + withCredentials?: boolean; + fetcher?: Fetcher; +} +interface Container { + get running(): boolean; + start(options?: ContainerStartupOptions): void; + monitor(): Promise; + destroy(error?: any): Promise; + signal(signo: number): void; + getTcpPort(port: number): Fetcher; + setInactivityTimeout(durationMs: number | bigint): Promise; + interceptOutboundHttp(addr: string, binding: Fetcher): Promise; + interceptAllOutboundHttp(binding: Fetcher): Promise; + snapshotDirectory(options: ContainerDirectorySnapshotOptions): Promise; + snapshotContainer(options: ContainerSnapshotOptions): Promise; + interceptOutboundHttps(addr: string, binding: Fetcher): Promise; +} +interface ContainerDirectorySnapshot { + id: string; + size: number; + dir: string; + name?: string; +} +interface ContainerDirectorySnapshotOptions { + dir: string; + name?: string; +} +interface ContainerDirectorySnapshotRestoreParams { + snapshot: ContainerDirectorySnapshot; + mountPoint?: string; +} +interface ContainerSnapshot { + id: string; + size: number; + name?: string; +} +interface ContainerSnapshotOptions { + name?: string; +} +interface ContainerStartupOptions { + entrypoint?: string[]; + enableInternet: boolean; + env?: Record; + labels?: Record; + directorySnapshots?: ContainerDirectorySnapshotRestoreParams[]; + containerSnapshot?: ContainerSnapshot; +} +/** + * The **`MessagePort`** interface of the Channel Messaging API represents one of the two ports of a MessageChannel, allowing messages to be sent from one port and listening out for them arriving at the other. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort) + */ +declare abstract class MessagePort extends EventTarget { + /** + * The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/postMessage) + */ + postMessage(data?: any, options?: (any[] | MessagePortPostMessageOptions)): void; + /** + * The **`close()`** method of the MessagePort interface disconnects the port, so it is no longer active. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/close) + */ + close(): void; + /** + * The **`start()`** method of the MessagePort interface starts the sending of messages queued on the port. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessagePort/start) + */ + start(): void; + get onmessage(): any | null; + set onmessage(value: any | null); +} +/** + * The **`MessageChannel`** interface of the Channel Messaging API allows us to create a new message channel and send data through it via its two MessagePort properties. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel) + */ +declare class MessageChannel { + constructor(); + /** + * The **`port1`** read-only property of the the port attached to the context that originated the channel. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port1) + */ + readonly port1: MessagePort; + /** + * The **`port2`** read-only property of the the port attached to the context at the other end of the channel, which the message is initially sent to. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageChannel/port2) + */ + readonly port2: MessagePort; +} +interface MessagePortPostMessageOptions { + transfer?: any[]; +} +type LoopbackForExport Rpc.EntrypointBranded) | ExportedHandler | undefined = undefined> = T extends new (...args: any[]) => Rpc.WorkerEntrypointBranded ? LoopbackServiceStub> : T extends new (...args: any[]) => Rpc.DurableObjectBranded ? LoopbackDurableObjectClass> : T extends ExportedHandler ? LoopbackServiceStub : undefined; +type LoopbackServiceStub = Fetcher & (T extends CloudflareWorkersModule.WorkerEntrypoint ? (opts: { + props?: Props; +}) => Fetcher : (opts: { + props?: any; +}) => Fetcher); +type LoopbackDurableObjectClass = DurableObjectClass & (T extends CloudflareWorkersModule.DurableObject ? (opts: { + props?: Props; +}) => DurableObjectClass : (opts: { + props?: any; +}) => DurableObjectClass); +interface LoopbackDurableObjectNamespace extends DurableObjectNamespace { +} +interface LoopbackColoLocalActorNamespace extends ColoLocalActorNamespace { +} +interface SyncKvStorage { + get(key: string): T | undefined; + list(options?: SyncKvListOptions): Iterable<[ + string, + T + ]>; + put(key: string, value: T): void; + delete(key: string): boolean; +} +interface SyncKvListOptions { + start?: string; + startAfter?: string; + end?: string; + prefix?: string; + reverse?: boolean; + limit?: number; +} +interface WorkerStub { + getEntrypoint(name?: string, options?: WorkerStubEntrypointOptions): Fetcher; + getDurableObjectClass(name?: string, options?: WorkerStubEntrypointOptions): DurableObjectClass; +} +interface WorkerStubEntrypointOptions { + props?: any; + limits?: workerdResourceLimits; +} +interface WorkerLoader { + get(name: string | null, getCode: () => WorkerLoaderWorkerCode | Promise): WorkerStub; + load(code: WorkerLoaderWorkerCode): WorkerStub; +} +interface WorkerLoaderModule { + js?: string; + cjs?: string; + text?: string; + data?: ArrayBuffer; + json?: any; + py?: string; + wasm?: ArrayBuffer; +} +interface WorkerLoaderWorkerCode { + compatibilityDate: string; + compatibilityFlags?: string[]; + allowExperimental?: boolean; + limits?: workerdResourceLimits; + mainModule: string; + modules: Record; + env?: any; + globalOutbound?: (Fetcher | null); + tails?: Fetcher[]; + streamingTails?: Fetcher[]; +} +interface workerdResourceLimits { + cpuMs?: number; + subRequests?: number; +} +/** +* The Workers runtime supports a subset of the Performance API, used to measure timing and performance, +* as well as timing of subrequests and other operations. +* +* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/performance/) +*/ +declare abstract class Performance { + /* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/performance/#performancetimeorigin) */ + get timeOrigin(): number; + /* [Cloudflare Docs Reference](https://developers.cloudflare.com/workers/runtime-apis/performance/#performancenow) */ + now(): number; + /** + * The **`toJSON()`** method of the Performance interface is a Serialization; it returns a JSON representation of the Performance object. + * + * [MDN Reference](https://developer.mozilla.org/docs/Web/API/Performance/toJSON) + */ + toJSON(): object; +} +interface Tracing { + enterSpan(name: string, callback: (span: Span, ...args: A) => T, ...args: A): T; + Span: typeof Span; +} +declare abstract class Span { + get isTraced(): boolean; + setAttribute(key: string, value?: (boolean | number | string)): void; +} +// ============ AI Search Error Interfaces ============ +interface AiSearchInternalError extends Error { +} +interface AiSearchNotFoundError extends Error { +} +// ============ AI Search Common Types ============ +/** A single message in a conversation-style search or chat request. */ +type AiSearchMessage = { + role: 'system' | 'developer' | 'user' | 'assistant' | 'tool'; + content: string | null; +}; +/** + * Common shape for `ai_search_options` used by both single-instance and multi-instance requests. + * Contains retrieval, query rewrite, reranking, and cache sub-options. + */ +type AiSearchOptions = { + retrieval?: { + /** Which retrieval backend to use. Defaults to the instance's configured index_method. */ + retrieval_type?: 'vector' | 'keyword' | 'hybrid'; + /** Fusion method for combining vector + keyword results. */ + fusion_method?: 'max' | 'rrf'; + /** How keyword terms are combined: "and" = all terms must match, "or" = any term matches. */ + keyword_match_mode?: 'and' | 'or'; + /** Minimum similarity score (0-1) for a result to be included. Default 0.4. */ + match_threshold?: number; + /** Maximum number of results to return (1-50). Default 10. */ + max_num_results?: number; + /** Vectorize metadata filters applied to the search. */ + filters?: VectorizeVectorMetadataFilter; + /** Number of surrounding chunks to include for context (0-3). Default 0. */ + context_expansion?: number; + /** If true, return only item metadata without chunk text. */ + metadata_only?: boolean; + /** If true (default), return empty results on retrieval failure instead of throwing. */ + return_on_failure?: boolean; + /** Boost results by metadata field values. Max 3 entries. */ + boost_by?: Array<{ + field: string; + direction?: 'asc' | 'desc' | 'exists' | 'not_exists'; + }>; + [key: string]: unknown; + }; + query_rewrite?: { + enabled?: boolean; + model?: string; + rewrite_prompt?: string; + [key: string]: unknown; + }; + reranking?: { + enabled?: boolean; + model?: string; + /** Match threshold (0-1, default 0.4) */ + match_threshold?: number; + [key: string]: unknown; + }; + cache?: { + enabled?: boolean; + cache_threshold?: 'super_strict_match' | 'close_enough' | 'flexible_friend' | 'anything_goes'; + }; + [key: string]: unknown; +}; +// ============ AI Search Request Types ============ +/** + * Request body for single-instance search. + * Exactly one of `query` or `messages` must be provided. + */ +type AiSearchSearchRequest = { + /** Simple query string. */ + query: string; + messages?: never; + ai_search_options?: AiSearchOptions; +} | { + query?: never; + /** Conversation-style input. At least one user message with non-empty content is required. */ + messages: AiSearchMessage[]; + ai_search_options?: AiSearchOptions; +}; +type AiSearchChatCompletionsRequest = { + messages: AiSearchMessage[]; + model?: string; + stream?: boolean; + ai_search_options?: AiSearchOptions; + [key: string]: unknown; +}; +// ============ AI Search Multi-Instance Types (Namespace-Scoped) ============ +/** `ai_search_options` shape for multi-instance requests — requires `instance_ids`. */ +type AiSearchMultiSearchOptions = AiSearchOptions & { + /** Instance IDs to search across (1-10). */ + instance_ids: string[]; +}; +/** + * Request for searching across multiple instances within a namespace. + * `ai_search_options` is required and must include `instance_ids`. + * Exactly one of `query` or `messages` must be provided. + */ +type AiSearchMultiSearchRequest = { + /** Simple query string. */ + query: string; + messages?: never; + ai_search_options: AiSearchMultiSearchOptions; +} | { + query?: never; + /** Conversation-style input. */ + messages: AiSearchMessage[]; + ai_search_options: AiSearchMultiSearchOptions; +}; +/** A search result chunk tagged with the instance it originated from. */ +type AiSearchMultiSearchChunk = AiSearchSearchResponse['chunks'][number] & { + instance_id: string; +}; +/** Describes a per-instance error during a multi-instance operation. */ +type AiSearchMultiSearchError = { + instance_id: string; + message: string; +}; +/** Response from a multi-instance search, with chunks tagged by instance and optional partial-failure errors. */ +type AiSearchMultiSearchResponse = { + search_query: string; + chunks: AiSearchMultiSearchChunk[]; + errors?: AiSearchMultiSearchError[]; +}; +/** Request for chat completions across multiple instances within a namespace. `ai_search_options` is required and must include `instance_ids`. */ +type AiSearchMultiChatCompletionsRequest = Omit & { + ai_search_options: AiSearchMultiSearchOptions; +}; +/** Response from multi-instance chat completions, with chunks tagged by instance and optional partial-failure errors. */ +type AiSearchMultiChatCompletionsResponse = Omit & { + chunks: AiSearchMultiSearchChunk[]; + errors?: AiSearchMultiSearchError[]; +}; +// ============ AI Search Response Types ============ +type AiSearchSearchResponse = { + search_query: string; + chunks: Array<{ + id: string; + type: string; + /** Match score (0-1) */ + score: number; + text: string; + item: { + timestamp?: number; + key: string; + metadata?: Record; + }; + scoring_details?: { + /** Keyword match score (0-1) */ + keyword_score?: number; + /** Vector similarity score (0-1) */ + vector_score?: number; + /** Keyword rank position */ + keyword_rank?: number; + /** Vector rank position */ + vector_rank?: number; + /** Reranking model score */ + reranking_score?: number; + /** Fusion method used to combine results */ + fusion_method?: 'rrf' | 'max'; + [key: string]: unknown; + }; + }>; +}; +type AiSearchChatCompletionsResponse = { + id?: string; + object?: string; + model?: string; + choices: Array<{ + index?: number; + message: { + role: 'system' | 'developer' | 'user' | 'assistant' | 'tool'; + content: string | null; + [key: string]: unknown; + }; + [key: string]: unknown; + }>; + chunks: AiSearchSearchResponse['chunks']; + [key: string]: unknown; +}; +type AiSearchStatsResponse = { + queued?: number; + running?: number; + completed?: number; + error?: number; + skipped?: number; + outdated?: number; + last_activity?: string; + /** Storage engine statistics. */ + engine?: { + vectorize?: { + vectorsCount: number; + dimensions: number; + }; + r2?: { + payloadSizeBytes: number; + metadataSizeBytes: number; + objectCount: number; + }; + }; +}; +// ============ AI Search Instance Info Types ============ +type AiSearchInstanceInfo = { + id: string; + type?: 'r2' | 'web-crawler' | string; + source?: string; + source_params?: unknown; + paused?: boolean; + status?: string; + namespace?: string; + created_at?: string; + modified_at?: string; + token_id?: string; + ai_gateway_id?: string; + rewrite_query?: boolean; + reranking?: boolean; + embedding_model?: string; + ai_search_model?: string; + rewrite_model?: string; + reranking_model?: string; + /** @deprecated Use index_method instead. */ + hybrid_search_enabled?: boolean; + /** Controls which storage backends are active. */ + index_method?: { + vector?: boolean; + keyword?: boolean; + }; + /** Fusion method for combining vector and keyword results. */ + fusion_method?: 'max' | 'rrf'; + indexing_options?: { + keyword_tokenizer?: 'porter' | 'trigram'; + } | null; + retrieval_options?: { + keyword_match_mode?: 'and' | 'or'; + boost_by?: Array<{ + field: string; + direction?: 'asc' | 'desc' | 'exists' | 'not_exists'; + }>; + } | null; + chunk?: boolean; + chunk_size?: number; + chunk_overlap?: number; + score_threshold?: number; + max_num_results?: number; + cache?: boolean; + cache_threshold?: 'super_strict_match' | 'close_enough' | 'flexible_friend' | 'anything_goes'; + custom_metadata?: Array<{ + field_name: string; + data_type: 'text' | 'number' | 'boolean' | 'datetime'; + }>; + /** Sync interval in seconds. */ + sync_interval?: 3600 | 7200 | 14400 | 21600 | 43200 | 86400; + metadata?: Record; + [key: string]: unknown; +}; +/** Pagination, search, and ordering parameters for listing instances within a namespace. */ +type AiSearchListInstancesParams = { + page?: number; + per_page?: number; + /** Search instances by ID. */ + search?: string; + /** Field to sort by. */ + order_by?: 'created_at'; + /** Sort direction. */ + order_by_direction?: 'asc' | 'desc'; +}; +type AiSearchListResponse = { + result: AiSearchInstanceInfo[]; + result_info?: { + count: number; + page: number; + per_page: number; + total_count: number; + }; +}; +// ============ AI Search Config Types ============ +type AiSearchConfig = { + /** Instance ID (1-32 chars, pattern: ^[a-z0-9_]+(?:-[a-z0-9_]+)*$) */ + id: string; + /** Instance type. Omit to create with built-in storage. */ + type?: 'r2' | 'web-crawler' | string; + /** Source URL (required for web-crawler type). */ + source?: string; + source_params?: unknown; + /** Token ID (UUID format) */ + token_id?: string; + ai_gateway_id?: string; + /** Enable query rewriting (default false) */ + rewrite_query?: boolean; + /** Enable reranking (default false) */ + reranking?: boolean; + embedding_model?: string; + ai_search_model?: string; + rewrite_model?: string; + reranking_model?: string; + /** @deprecated Use index_method instead. */ + hybrid_search_enabled?: boolean; + /** Controls which storage backends are used during indexing. Defaults to vector-only. */ + index_method?: { + vector?: boolean; + keyword?: boolean; + }; + /** Fusion method for combining vector and keyword results. "rrf" = reciprocal rank fusion (default), "max" = maximum score. */ + fusion_method?: 'max' | 'rrf'; + indexing_options?: { + keyword_tokenizer?: 'porter' | 'trigram'; + } | null; + retrieval_options?: { + keyword_match_mode?: 'and' | 'or'; + boost_by?: Array<{ + field: string; + direction?: 'asc' | 'desc' | 'exists' | 'not_exists'; + }>; + } | null; + chunk?: boolean; + chunk_size?: number; + chunk_overlap?: number; + /** Minimum similarity score (0-1) for a result to be included. */ + score_threshold?: number; + max_num_results?: number; + cache?: boolean; + /** Similarity threshold for cache hits. Stricter = fewer cache hits but higher relevance. */ + cache_threshold?: 'super_strict_match' | 'close_enough' | 'flexible_friend' | 'anything_goes'; + custom_metadata?: Array<{ + field_name: string; + data_type: 'text' | 'number' | 'boolean' | 'datetime'; + }>; + namespace?: string; + /** Sync interval in seconds. 3600=1h, 7200=2h, 14400=4h, 21600=6h, 43200=12h, 86400=24h. */ + sync_interval?: 3600 | 7200 | 14400 | 21600 | 43200 | 86400; + metadata?: Record; + [key: string]: unknown; +}; +// ============ AI Search Item Types ============ +type AiSearchItemInfo = { + id: string; + key: string; + status: 'completed' | 'error' | 'skipped' | 'queued' | 'running' | 'outdated'; + next_action?: 'INDEX' | 'DELETE' | null; + error?: string; + checksum?: string; + namespace?: string; + chunks_count?: number | null; + file_size?: number | null; + source_id?: string | null; + last_seen_at?: string; + created_at?: string; + metadata?: Record; + [key: string]: unknown; +}; +type AiSearchItemContentResult = { + body: ReadableStream; + contentType: string; + filename: string; + size: number; +}; +type AiSearchUploadItemOptions = { + metadata?: Record; +}; +type AiSearchListItemsParams = { + page?: number; + per_page?: number; + /** Search items by key name. */ + search?: string; + /** Sort order for results. */ + sort_by?: 'status' | 'modified_at'; + /** Filter items by processing status. */ + status?: 'queued' | 'running' | 'completed' | 'error' | 'skipped' | 'outdated'; + /** Filter items by source (e.g. "builtin" or "web-crawler:https://example.com"). */ + source?: string; + /** JSON-encoded Vectorize filter for metadata filtering. */ + metadata_filter?: string; +}; +type AiSearchListItemsResponse = { + result: AiSearchItemInfo[]; + result_info?: { + count: number; + page: number; + per_page: number; + total_count: number; + }; +}; +// ============ AI Search Item Logs Types ============ +type AiSearchItemLogsParams = { + /** Maximum number of log entries to return (1-100, default 50). */ + limit?: number; + /** Opaque cursor for pagination. Pass the `cursor` value from a previous response. */ + cursor?: string; +}; +type AiSearchItemLog = { + timestamp: string; + action: string; + message: string; + fileKey?: string; + chunkCount?: number; + processingTimeMs?: number; + errorType?: string; +}; +/** Paginated response for item processing logs (cursor-based). */ +type AiSearchItemLogsResponse = { + result: AiSearchItemLog[]; + result_info: { + count: number; + per_page: number; + cursor: string | null; + truncated: boolean; + }; +}; +// ============ AI Search Item Chunks Types ============ +type AiSearchItemChunksParams = { + /** Maximum number of chunks to return (1-100, default 20). */ + limit?: number; + /** Offset into the chunks list (default 0). */ + offset?: number; +}; +/** A single indexed chunk belonging to an item, including its text content and byte range. */ +type AiSearchItemChunk = { + id: string; + text: string; + start_byte: number; + end_byte: number; + item?: { + timestamp?: number; + key: string; + metadata?: Record; + }; +}; +/** Paginated response for item chunks (offset-based). */ +type AiSearchItemChunksResponse = { + result: AiSearchItemChunk[]; + result_info: { + count: number; + total: number; + limit: number; + offset: number; + }; +}; +// ============ AI Search Job Types ============ +type AiSearchJobInfo = { + id: string; + source: 'user' | 'schedule'; + description?: string; + last_seen_at?: string; + started_at?: string; + ended_at?: string; + end_reason?: string; +}; +type AiSearchJobLog = { + id: number; + message: string; + message_type: number; + created_at: number; +}; +type AiSearchCreateJobParams = { + description?: string; +}; +type AiSearchListJobsParams = { + page?: number; + per_page?: number; +}; +type AiSearchListJobsResponse = { + result: AiSearchJobInfo[]; + result_info?: { + count: number; + page: number; + per_page: number; + total_count: number; + }; +}; +type AiSearchJobLogsParams = { + page?: number; + per_page?: number; +}; +type AiSearchJobLogsResponse = { + result: AiSearchJobLog[]; + result_info?: { + count: number; + page: number; + per_page: number; + total_count: number; + }; +}; +// ============ AI Search Sub-Service Classes ============ +/** + * Single item service for an AI Search instance. + * Provides info, download, sync, logs, and chunks operations on a specific item. + */ +declare abstract class AiSearchItem { + /** Get metadata about this item. */ + info(): Promise; + /** + * Download the item's content. + * @returns Object with body stream, content type, filename, and size. + */ + download(): Promise; + /** + * Trigger re-indexing of this item. + * @returns The updated item info. + */ + sync(): Promise; + /** + * Retrieve processing logs for this item (cursor-based pagination). + * @param params Optional pagination parameters (limit, cursor). + * @returns Paginated log entries for this item. + */ + logs(params?: AiSearchItemLogsParams): Promise; + /** + * List indexed chunks for this item (offset-based pagination). + * @param params Optional pagination parameters (limit, offset). + * @returns Paginated chunk entries for this item. + */ + chunks(params?: AiSearchItemChunksParams): Promise; +} +/** + * Items collection service for an AI Search instance. + * Provides list, upload, and access to individual items. + */ +declare abstract class AiSearchItems { + /** List items in this instance. */ + list(params?: AiSearchListItemsParams): Promise; + /** + * Upload a file as an item. Behaves as an upsert: if an item with the same + * filename already exists, it is overwritten and re-indexed. + * @param name Filename for the uploaded item. + * @param content File content as a ReadableStream, Blob, or string. + * @param options Optional metadata to attach to the item. + * @returns The created item info. + */ + upload(name: string, content: ReadableStream | Blob | string, options?: AiSearchUploadItemOptions): Promise; + /** + * Upload a file and poll until processing completes. + * Behaves as an upsert: if an item with the same filename already exists, + * it is overwritten and re-indexed. + * @param name Filename for the uploaded item. + * @param content File content as a ReadableStream, Blob, or string. + * @param options Optional metadata and polling configuration. + * @returns The item info after processing completes (or timeout). + */ + uploadAndPoll(name: string, content: ReadableStream | Blob | string, options?: AiSearchUploadItemOptions & { + /** Polling interval in milliseconds (default 1000). */ + pollIntervalMs?: number; + /** Maximum time to wait in milliseconds (default 30000). */ + timeoutMs?: number; + }): Promise; + /** + * Get an item by ID. + * @param itemId The item identifier. + * @returns Item service for info, download, sync, logs, and chunks operations. + */ + get(itemId: string): AiSearchItem; + /** + * Delete an item from the instance. + * @param itemId The item identifier. + */ + delete(itemId: string): Promise; +} +/** + * Single job service for an AI Search instance. + * Provides info, logs, and cancel operations for a specific job. + */ +declare abstract class AiSearchJob { + /** Get metadata about this job. */ + info(): Promise; + /** Get logs for this job. */ + logs(params?: AiSearchJobLogsParams): Promise; + /** + * Cancel a running job. + * @returns The updated job info. + * @throws AiSearchNotFoundError if the job does not exist. + */ + cancel(): Promise; +} +/** + * Jobs collection service for an AI Search instance. + * Provides list, create, and access to individual jobs. + */ +declare abstract class AiSearchJobs { + /** List jobs for this instance. */ + list(params?: AiSearchListJobsParams): Promise; + /** + * Create a new indexing job. + * @param params Optional job parameters. + * @returns The created job info. + */ + create(params?: AiSearchCreateJobParams): Promise; + /** + * Get a job by ID. + * @param jobId The job identifier. + * @returns Job service for info, logs, and cancel operations. + */ + get(jobId: string): AiSearchJob; +} +// ============ AI Search Binding Classes ============ +/** + * Instance-level AI Search service. + * + * Used as: + * - The return type of `AiSearchNamespace.get(name)` (namespace binding) + * - The type of `env.BLOG_SEARCH` (single instance binding via `ai_search`) + * + * Provides search, chat, update, stats, items, and jobs operations. + * + * @example + * ```ts + * // Via namespace binding + * const instance = env.AI_SEARCH.get("blog"); + * const results = await instance.search({ + * query: "How does caching work?", + * }); + * + * // Via single instance binding + * const results = await env.BLOG_SEARCH.search({ + * messages: [{ role: "user", content: "How does caching work?" }], + * }); + * ``` + */ +declare abstract class AiSearchInstance { + /** + * Search the AI Search instance for relevant chunks. + * @param params Search request with query or messages and optional AI search options. + * @returns Search response with matching chunks and search query. + */ + search(params: AiSearchSearchRequest): Promise; + /** + * Generate chat completions with AI Search context (streaming). + * @param params Chat completions request with stream: true. + * @returns ReadableStream of server-sent events. + */ + chatCompletions(params: AiSearchChatCompletionsRequest & { + stream: true; + }): Promise; + /** + * Generate chat completions with AI Search context. + * @param params Chat completions request. + * @returns Chat completion response with choices and RAG chunks. + */ + chatCompletions(params: AiSearchChatCompletionsRequest): Promise; + /** + * Update the instance configuration. + * @param config Partial configuration to update. + * @returns Updated instance info. + */ + update(config: Partial): Promise; + /** Get metadata about this instance. */ + info(): Promise; + /** + * Get instance statistics (item count, indexing status, etc.). + * @returns Statistics with counts per status, last activity time, and engine details. + */ + stats(): Promise; + /** Items collection — list, upload, and manage items in this instance. */ + get items(): AiSearchItems; + /** Jobs collection — list, create, and inspect indexing jobs. */ + get jobs(): AiSearchJobs; +} +/** + * Namespace-level AI Search service. + * + * Used as the type of `env.AI_SEARCH` (namespace binding via `ai_search_namespaces`). + * Scoped to a single namespace. Provides dynamic instance access, creation, deletion, + * and multi-instance search/chat operations. + * + * @example + * ```ts + * // Access an instance within the namespace + * const blog = env.AI_SEARCH.get("blog"); + * const results = await blog.search({ query: "How does caching work?" }); + * + * // List all instances in the namespace + * const instances = await env.AI_SEARCH.list(); + * + * // Create a new instance with built-in storage + * const tenant = await env.AI_SEARCH.create({ id: "tenant-123" }); + * + * // Upload items into the instance + * await tenant.items.upload("doc.pdf", fileContent); + * + * // Search across multiple instances + * const multi = await env.AI_SEARCH.search({ + * query: "caching", + * ai_search_options: { instance_ids: ["blog", "docs"] }, + * }); + * + * // Delete an instance + * await env.AI_SEARCH.delete("tenant-123"); + * ``` + */ +declare abstract class AiSearchNamespace { + /** + * Get an instance by name within the bound namespace. + * @param name Instance name. + * @returns Instance service for search, chat, update, stats, items, and jobs. + */ + get(name: string): AiSearchInstance; + /** + * List instances in the bound namespace. + * @param params Optional pagination, search, and ordering parameters. + * @returns Array of instance metadata with pagination info. + */ + list(params?: AiSearchListInstancesParams): Promise; + /** + * Create a new instance within the bound namespace. + * @param config Instance configuration. Only `id` is required — omit `type` and `source` to create with built-in storage. + * @returns Instance service for the newly created instance. + * + * @example + * ```ts + * // Create with built-in storage (upload items manually) + * const instance = await env.AI_SEARCH.create({ id: "my-search" }); + * + * // Create with web crawler source + * const instance = await env.AI_SEARCH.create({ + * id: "docs-search", + * type: "web-crawler", + * source: "https://developers.cloudflare.com", + * }); + * ``` + */ + create(config: AiSearchConfig): Promise; + /** + * Delete an instance from the bound namespace. + * @param name Instance name to delete. + */ + delete(name: string): Promise; + /** + * Search across multiple instances within the bound namespace. + * Fans out to the specified instance_ids and merges results. + * @param params Search request with required `ai_search_options.instance_ids`. + * @returns Search response with chunks tagged by instance_id and optional partial-failure errors. + */ + search(params: AiSearchMultiSearchRequest): Promise; + /** + * Generate chat completions across multiple instances within the bound namespace (streaming). + * Fans out to the specified instance_ids, merges context, and generates a response. + * @param params Chat completions request with stream: true and required `ai_search_options.instance_ids`. + * @returns ReadableStream of server-sent events. + */ + chatCompletions(params: AiSearchMultiChatCompletionsRequest & { + stream: true; + }): Promise; + /** + * Generate chat completions across multiple instances within the bound namespace. + * Fans out to the specified instance_ids, merges context, and generates a response. + * @param params Chat completions request with required `ai_search_options.instance_ids`. + * @returns Chat completion response with choices, chunks tagged by instance_id, and optional partial-failure errors. + */ + chatCompletions(params: AiSearchMultiChatCompletionsRequest): Promise; +} +type AiImageClassificationInput = { + image: number[]; +}; +type AiImageClassificationOutput = { + score?: number; + label?: string; +}[]; +declare abstract class BaseAiImageClassification { + inputs: AiImageClassificationInput; + postProcessedOutputs: AiImageClassificationOutput; +} +type AiImageToTextInput = { + image: number[]; + prompt?: string; + max_tokens?: number; + temperature?: number; + top_p?: number; + top_k?: number; + seed?: number; + repetition_penalty?: number; + frequency_penalty?: number; + presence_penalty?: number; + raw?: boolean; + messages?: RoleScopedChatInput[]; +}; +type AiImageToTextOutput = { + description: string; +}; +declare abstract class BaseAiImageToText { + inputs: AiImageToTextInput; + postProcessedOutputs: AiImageToTextOutput; +} +type AiImageTextToTextInput = { + image: string; + prompt?: string; + max_tokens?: number; + temperature?: number; + ignore_eos?: boolean; + top_p?: number; + top_k?: number; + seed?: number; + repetition_penalty?: number; + frequency_penalty?: number; + presence_penalty?: number; + raw?: boolean; + messages?: RoleScopedChatInput[]; +}; +type AiImageTextToTextOutput = { + description: string; +}; +declare abstract class BaseAiImageTextToText { + inputs: AiImageTextToTextInput; + postProcessedOutputs: AiImageTextToTextOutput; +} +type AiMultimodalEmbeddingsInput = { + image: string; + text: string[]; +}; +type AiIMultimodalEmbeddingsOutput = { + data: number[][]; + shape: number[]; +}; +declare abstract class BaseAiMultimodalEmbeddings { + inputs: AiImageTextToTextInput; + postProcessedOutputs: AiImageTextToTextOutput; +} +type AiObjectDetectionInput = { + image: number[]; +}; +type AiObjectDetectionOutput = { + score?: number; + label?: string; +}[]; +declare abstract class BaseAiObjectDetection { + inputs: AiObjectDetectionInput; + postProcessedOutputs: AiObjectDetectionOutput; +} +type AiSentenceSimilarityInput = { + source: string; + sentences: string[]; +}; +type AiSentenceSimilarityOutput = number[]; +declare abstract class BaseAiSentenceSimilarity { + inputs: AiSentenceSimilarityInput; + postProcessedOutputs: AiSentenceSimilarityOutput; +} +type AiAutomaticSpeechRecognitionInput = { + audio: number[]; +}; +type AiAutomaticSpeechRecognitionOutput = { + text?: string; + words?: { + word: string; + start: number; + end: number; + }[]; + vtt?: string; +}; +declare abstract class BaseAiAutomaticSpeechRecognition { + inputs: AiAutomaticSpeechRecognitionInput; + postProcessedOutputs: AiAutomaticSpeechRecognitionOutput; +} +type AiSummarizationInput = { + input_text: string; + max_length?: number; +}; +type AiSummarizationOutput = { + summary: string; +}; +declare abstract class BaseAiSummarization { + inputs: AiSummarizationInput; + postProcessedOutputs: AiSummarizationOutput; +} +type AiTextClassificationInput = { + text: string; +}; +type AiTextClassificationOutput = { + score?: number; + label?: string; +}[]; +declare abstract class BaseAiTextClassification { + inputs: AiTextClassificationInput; + postProcessedOutputs: AiTextClassificationOutput; +} +type AiTextEmbeddingsInput = { + text: string | string[]; +}; +type AiTextEmbeddingsOutput = { + shape: number[]; + data: number[][]; +}; +declare abstract class BaseAiTextEmbeddings { + inputs: AiTextEmbeddingsInput; + postProcessedOutputs: AiTextEmbeddingsOutput; +} +type RoleScopedChatInput = { + role: "user" | "assistant" | "system" | "tool" | (string & NonNullable); + content: string; + name?: string; +}; +type AiTextGenerationToolLegacyInput = { + name: string; + description: string; + parameters?: { + type: "object" | (string & NonNullable); + properties: { + [key: string]: { + type: string; + description?: string; + }; + }; + required: string[]; + }; +}; +type AiTextGenerationToolInput = { + type: "function" | (string & NonNullable); + function: { + name: string; + description: string; + parameters?: { + type: "object" | (string & NonNullable); + properties: { + [key: string]: { + type: string; + description?: string; + }; + }; + required: string[]; + }; + }; +}; +type AiTextGenerationFunctionsInput = { + name: string; + code: string; +}; +type AiTextGenerationResponseFormat = { + type: string; + json_schema?: any; +}; +type AiTextGenerationInput = { + prompt?: string; + raw?: boolean; + stream?: boolean; + max_tokens?: number; + temperature?: number; + top_p?: number; + top_k?: number; + seed?: number; + repetition_penalty?: number; + frequency_penalty?: number; + presence_penalty?: number; + messages?: RoleScopedChatInput[]; + response_format?: AiTextGenerationResponseFormat; + tools?: AiTextGenerationToolInput[] | AiTextGenerationToolLegacyInput[] | (object & NonNullable); + functions?: AiTextGenerationFunctionsInput[]; +}; +type AiTextGenerationToolLegacyOutput = { + name: string; + arguments: unknown; +}; +type AiTextGenerationToolOutput = { + id: string; + type: "function"; + function: { + name: string; + arguments: string; + }; +}; +type UsageTags = { + prompt_tokens: number; + completion_tokens: number; + total_tokens: number; +}; +type AiTextGenerationOutput = { + response?: string; + tool_calls?: AiTextGenerationToolLegacyOutput[] & AiTextGenerationToolOutput[]; + usage?: UsageTags; +}; +declare abstract class BaseAiTextGeneration { + inputs: AiTextGenerationInput; + postProcessedOutputs: AiTextGenerationOutput; +} +type AiTextToSpeechInput = { + prompt: string; + lang?: string; +}; +type AiTextToSpeechOutput = Uint8Array | { + audio: string; +}; +declare abstract class BaseAiTextToSpeech { + inputs: AiTextToSpeechInput; + postProcessedOutputs: AiTextToSpeechOutput; +} +type AiTextToImageInput = { + prompt: string; + negative_prompt?: string; + height?: number; + width?: number; + image?: number[]; + image_b64?: string; + mask?: number[]; + num_steps?: number; + strength?: number; + guidance?: number; + seed?: number; +}; +type AiTextToImageOutput = ReadableStream; +declare abstract class BaseAiTextToImage { + inputs: AiTextToImageInput; + postProcessedOutputs: AiTextToImageOutput; +} +type AiTranslationInput = { + text: string; + target_lang: string; + source_lang?: string; +}; +type AiTranslationOutput = { + translated_text?: string; +}; +declare abstract class BaseAiTranslation { + inputs: AiTranslationInput; + postProcessedOutputs: AiTranslationOutput; +} +/** + * Workers AI support for OpenAI's Chat Completions API + */ +type ChatCompletionContentPartText = { + type: "text"; + text: string; +}; +type ChatCompletionContentPartImage = { + type: "image_url"; + image_url: { + url: string; + detail?: "auto" | "low" | "high"; + }; +}; +type ChatCompletionContentPartInputAudio = { + type: "input_audio"; + input_audio: { + /** Base64 encoded audio data. */ + data: string; + format: "wav" | "mp3"; + }; +}; +type ChatCompletionContentPartFile = { + type: "file"; + file: { + /** Base64 encoded file data. */ + file_data?: string; + /** The ID of an uploaded file. */ + file_id?: string; + filename?: string; + }; +}; +type ChatCompletionContentPartRefusal = { + type: "refusal"; + refusal: string; +}; +type ChatCompletionContentPart = ChatCompletionContentPartText | ChatCompletionContentPartImage | ChatCompletionContentPartInputAudio | ChatCompletionContentPartFile; +type FunctionDefinition = { + name: string; + description?: string; + parameters?: Record; + strict?: boolean | null; +}; +type ChatCompletionFunctionTool = { + type: "function"; + function: FunctionDefinition; +}; +type ChatCompletionCustomToolGrammarFormat = { + type: "grammar"; + grammar: { + definition: string; + syntax: "lark" | "regex"; + }; +}; +type ChatCompletionCustomToolTextFormat = { + type: "text"; +}; +type ChatCompletionCustomToolFormat = ChatCompletionCustomToolTextFormat | ChatCompletionCustomToolGrammarFormat; +type ChatCompletionCustomTool = { + type: "custom"; + custom: { + name: string; + description?: string; + format?: ChatCompletionCustomToolFormat; + }; +}; +type ChatCompletionTool = ChatCompletionFunctionTool | ChatCompletionCustomTool; +type ChatCompletionMessageFunctionToolCall = { + id: string; + type: "function"; + function: { + name: string; + /** JSON-encoded arguments string. */ + arguments: string; + }; +}; +type ChatCompletionMessageCustomToolCall = { + id: string; + type: "custom"; + custom: { + name: string; + input: string; + }; +}; +type ChatCompletionMessageToolCall = ChatCompletionMessageFunctionToolCall | ChatCompletionMessageCustomToolCall; +type ChatCompletionToolChoiceFunction = { + type: "function"; + function: { + name: string; + }; +}; +type ChatCompletionToolChoiceCustom = { + type: "custom"; + custom: { + name: string; + }; +}; +type ChatCompletionToolChoiceAllowedTools = { + type: "allowed_tools"; + allowed_tools: { + mode: "auto" | "required"; + tools: Array>; + }; +}; +type ChatCompletionToolChoiceOption = "none" | "auto" | "required" | ChatCompletionToolChoiceFunction | ChatCompletionToolChoiceCustom | ChatCompletionToolChoiceAllowedTools; +type DeveloperMessage = { + role: "developer"; + content: string | Array<{ + type: "text"; + text: string; + }>; + name?: string; +}; +type SystemMessage = { + role: "system"; + content: string | Array<{ + type: "text"; + text: string; + }>; + name?: string; +}; +/** + * Permissive merged content part used inside UserMessage arrays. + * + * Cabidela has a limitation where anyOf/oneOf with enum-based discrimination + * inside nested array items does not correctly match different branches for + * different array elements, so the schema uses a single merged object. + */ +type UserMessageContentPart = { + type: "text" | "image_url" | "input_audio" | "file"; + text?: string; + image_url?: { + url?: string; + detail?: "auto" | "low" | "high"; + }; + input_audio?: { + data?: string; + format?: "wav" | "mp3"; + }; + file?: { + file_data?: string; + file_id?: string; + filename?: string; + }; +}; +type UserMessage = { + role: "user"; + content: string | Array; + name?: string; +}; +type AssistantMessageContentPart = { + type: "text" | "refusal"; + text?: string; + refusal?: string; +}; +type AssistantMessage = { + role: "assistant"; + content?: string | null | Array; + refusal?: string | null; + name?: string; + audio?: { + id: string; + }; + tool_calls?: Array; + function_call?: { + name: string; + arguments: string; + }; +}; +type ToolMessage = { + role: "tool"; + content: string | Array<{ + type: "text"; + text: string; + }>; + tool_call_id: string; +}; +type FunctionMessage = { + role: "function"; + content: string; + name: string; +}; +type ChatCompletionMessageParam = DeveloperMessage | SystemMessage | UserMessage | AssistantMessage | ToolMessage | FunctionMessage; +type ChatCompletionsResponseFormatText = { + type: "text"; +}; +type ChatCompletionsResponseFormatJSONObject = { + type: "json_object"; +}; +type ResponseFormatJSONSchema = { + type: "json_schema"; + json_schema: { + name: string; + description?: string; + schema?: Record; + strict?: boolean | null; + }; +}; +type ResponseFormat = ChatCompletionsResponseFormatText | ChatCompletionsResponseFormatJSONObject | ResponseFormatJSONSchema; +type ChatCompletionsStreamOptions = { + include_usage?: boolean; + include_obfuscation?: boolean; +}; +type PredictionContent = { + type: "content"; + content: string | Array<{ + type: "text"; + text: string; + }>; +}; +type AudioParams = { + voice: string | { + id: string; + }; + format: "wav" | "aac" | "mp3" | "flac" | "opus" | "pcm16"; +}; +type WebSearchUserLocation = { + type: "approximate"; + approximate: { + city?: string; + country?: string; + region?: string; + timezone?: string; + }; +}; +type WebSearchOptions = { + search_context_size?: "low" | "medium" | "high"; + user_location?: WebSearchUserLocation; +}; +type ChatTemplateKwargs = { + /** Whether to enable reasoning, enabled by default. */ + enable_thinking?: boolean; + /** If false, preserves reasoning context between turns. */ + clear_thinking?: boolean; +}; +/** Shared optional properties used by both Prompt and Messages input branches. */ +type ChatCompletionsCommonOptions = { + model?: string; + audio?: AudioParams; + frequency_penalty?: number | null; + logit_bias?: Record | null; + logprobs?: boolean | null; + top_logprobs?: number | null; + max_tokens?: number | null; + max_completion_tokens?: number | null; + metadata?: Record | null; + modalities?: Array<"text" | "audio"> | null; + n?: number | null; + parallel_tool_calls?: boolean; + prediction?: PredictionContent; + presence_penalty?: number | null; + reasoning_effort?: "low" | "medium" | "high" | null; + chat_template_kwargs?: ChatTemplateKwargs; + response_format?: ResponseFormat; + seed?: number | null; + service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null; + stop?: string | Array | null; + store?: boolean | null; + stream?: boolean | null; + stream_options?: ChatCompletionsStreamOptions; + temperature?: number | null; + tool_choice?: ChatCompletionToolChoiceOption; + tools?: Array; + top_p?: number | null; + user?: string; + web_search_options?: WebSearchOptions; + function_call?: "none" | "auto" | { + name: string; + }; + functions?: Array; +}; +type PromptTokensDetails = { + cached_tokens?: number; + audio_tokens?: number; +}; +type CompletionTokensDetails = { + reasoning_tokens?: number; + audio_tokens?: number; + accepted_prediction_tokens?: number; + rejected_prediction_tokens?: number; +}; +type CompletionUsage = { + prompt_tokens: number; + completion_tokens: number; + total_tokens: number; + prompt_tokens_details?: PromptTokensDetails; + completion_tokens_details?: CompletionTokensDetails; +}; +type ChatCompletionTopLogprob = { + token: string; + logprob: number; + bytes: Array | null; +}; +type ChatCompletionTokenLogprob = { + token: string; + logprob: number; + bytes: Array | null; + top_logprobs: Array; +}; +type ChatCompletionAudio = { + id: string; + /** Base64 encoded audio bytes. */ + data: string; + expires_at: number; + transcript: string; +}; +type ChatCompletionUrlCitation = { + type: "url_citation"; + url_citation: { + url: string; + title: string; + start_index: number; + end_index: number; + }; +}; +type ChatCompletionResponseMessage = { + role: "assistant"; + content: string | null; + refusal: string | null; + annotations?: Array; + audio?: ChatCompletionAudio; + tool_calls?: Array; + function_call?: { + name: string; + arguments: string; + } | null; +}; +type ChatCompletionLogprobs = { + content: Array | null; + refusal?: Array | null; +}; +type ChatCompletionChoice = { + index: number; + message: ChatCompletionResponseMessage; + finish_reason: "stop" | "length" | "tool_calls" | "content_filter" | "function_call"; + logprobs: ChatCompletionLogprobs | null; +}; +type ChatCompletionsPromptInput = { + prompt: string; +} & ChatCompletionsCommonOptions; +type ChatCompletionsMessagesInput = { + messages: Array; +} & ChatCompletionsCommonOptions; +type ChatCompletionsOutput = { + id: string; + object: string; + created: number; + model: string; + choices: Array; + usage?: CompletionUsage; + system_fingerprint?: string | null; + service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null; +}; +/** + * Workers AI support for OpenAI's Responses API + * Reference: https://github.com/openai/openai-node/blob/master/src/resources/responses/responses.ts + * + * It's a stripped down version from its source. + * It currently supports basic function calling, json mode and accepts images as input. + * + * It does not include types for WebSearch, CodeInterpreter, FileInputs, MCP, CustomTools. + * We plan to add those incrementally as model + platform capabilities evolve. + */ +type ResponsesInput = { + background?: boolean | null; + conversation?: string | ResponseConversationParam | null; + include?: Array | null; + input?: string | ResponseInput; + instructions?: string | null; + max_output_tokens?: number | null; + parallel_tool_calls?: boolean | null; + previous_response_id?: string | null; + prompt_cache_key?: string; + reasoning?: Reasoning | null; + safety_identifier?: string; + service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null; + stream?: boolean | null; + stream_options?: StreamOptions | null; + temperature?: number | null; + text?: ResponseTextConfig; + tool_choice?: ToolChoiceOptions | ToolChoiceFunction; + tools?: Array; + top_p?: number | null; + truncation?: "auto" | "disabled" | null; +}; +type ResponsesOutput = { + id?: string; + created_at?: number; + output_text?: string; + error?: ResponseError | null; + incomplete_details?: ResponseIncompleteDetails | null; + instructions?: string | Array | null; + object?: "response"; + output?: Array; + parallel_tool_calls?: boolean; + temperature?: number | null; + tool_choice?: ToolChoiceOptions | ToolChoiceFunction; + tools?: Array; + top_p?: number | null; + max_output_tokens?: number | null; + previous_response_id?: string | null; + prompt?: ResponsePrompt | null; + reasoning?: Reasoning | null; + safety_identifier?: string; + service_tier?: "auto" | "default" | "flex" | "scale" | "priority" | null; + status?: ResponseStatus; + text?: ResponseTextConfig; + truncation?: "auto" | "disabled" | null; + usage?: ResponseUsage; +}; +type EasyInputMessage = { + content: string | ResponseInputMessageContentList; + role: "user" | "assistant" | "system" | "developer"; + type?: "message"; +}; +type ResponsesFunctionTool = { + name: string; + parameters: { + [key: string]: unknown; + } | null; + strict: boolean | null; + type: "function"; + description?: string | null; +}; +type ResponseIncompleteDetails = { + reason?: "max_output_tokens" | "content_filter"; +}; +type ResponsePrompt = { + id: string; + variables?: { + [key: string]: string | ResponseInputText | ResponseInputImage; + } | null; + version?: string | null; +}; +type Reasoning = { + effort?: ReasoningEffort | null; + generate_summary?: "auto" | "concise" | "detailed" | null; + summary?: "auto" | "concise" | "detailed" | null; +}; +type ResponseContent = ResponseInputText | ResponseInputImage | ResponseOutputText | ResponseOutputRefusal | ResponseContentReasoningText; +type ResponseContentReasoningText = { + text: string; + type: "reasoning_text"; +}; +type ResponseConversationParam = { + id: string; +}; +type ResponseCreatedEvent = { + response: Response; + sequence_number: number; + type: "response.created"; +}; +type ResponseCustomToolCallOutput = { + call_id: string; + output: string | Array; + type: "custom_tool_call_output"; + id?: string; +}; +type ResponseError = { + code: "server_error" | "rate_limit_exceeded" | "invalid_prompt" | "vector_store_timeout" | "invalid_image" | "invalid_image_format" | "invalid_base64_image" | "invalid_image_url" | "image_too_large" | "image_too_small" | "image_parse_error" | "image_content_policy_violation" | "invalid_image_mode" | "image_file_too_large" | "unsupported_image_media_type" | "empty_image_file" | "failed_to_download_image" | "image_file_not_found"; + message: string; +}; +type ResponseErrorEvent = { + code: string | null; + message: string; + param: string | null; + sequence_number: number; + type: "error"; +}; +type ResponseFailedEvent = { + response: Response; + sequence_number: number; + type: "response.failed"; +}; +type ResponseFormatText = { + type: "text"; +}; +type ResponseFormatJSONObject = { + type: "json_object"; +}; +type ResponseFormatTextConfig = ResponseFormatText | ResponseFormatTextJSONSchemaConfig | ResponseFormatJSONObject; +type ResponseFormatTextJSONSchemaConfig = { + name: string; + schema: { + [key: string]: unknown; + }; + type: "json_schema"; + description?: string; + strict?: boolean | null; +}; +type ResponseFunctionCallArgumentsDeltaEvent = { + delta: string; + item_id: string; + output_index: number; + sequence_number: number; + type: "response.function_call_arguments.delta"; +}; +type ResponseFunctionCallArgumentsDoneEvent = { + arguments: string; + item_id: string; + name: string; + output_index: number; + sequence_number: number; + type: "response.function_call_arguments.done"; +}; +type ResponseFunctionCallOutputItem = ResponseInputTextContent | ResponseInputImageContent; +type ResponseFunctionCallOutputItemList = Array; +type ResponseFunctionToolCall = { + arguments: string; + call_id: string; + name: string; + type: "function_call"; + id?: string; + status?: "in_progress" | "completed" | "incomplete"; +}; +interface ResponseFunctionToolCallItem extends ResponseFunctionToolCall { + id: string; +} +type ResponseFunctionToolCallOutputItem = { + id: string; + call_id: string; + output: string | Array; + type: "function_call_output"; + status?: "in_progress" | "completed" | "incomplete"; +}; +type ResponseIncludable = "message.input_image.image_url" | "message.output_text.logprobs"; +type ResponseIncompleteEvent = { + response: Response; + sequence_number: number; + type: "response.incomplete"; +}; +type ResponseInput = Array; +type ResponseInputContent = ResponseInputText | ResponseInputImage; +type ResponseInputImage = { + detail: "low" | "high" | "auto"; + type: "input_image"; + /** + * Base64 encoded image + */ + image_url?: string | null; +}; +type ResponseInputImageContent = { + type: "input_image"; + detail?: "low" | "high" | "auto" | null; + /** + * Base64 encoded image + */ + image_url?: string | null; +}; +type ResponseInputItem = EasyInputMessage | ResponseInputItemMessage | ResponseOutputMessage | ResponseFunctionToolCall | ResponseInputItemFunctionCallOutput | ResponseReasoningItem; +type ResponseInputItemFunctionCallOutput = { + call_id: string; + output: string | ResponseFunctionCallOutputItemList; + type: "function_call_output"; + id?: string | null; + status?: "in_progress" | "completed" | "incomplete" | null; +}; +type ResponseInputItemMessage = { + content: ResponseInputMessageContentList; + role: "user" | "system" | "developer"; + status?: "in_progress" | "completed" | "incomplete"; + type?: "message"; +}; +type ResponseInputMessageContentList = Array; +type ResponseInputMessageItem = { + id: string; + content: ResponseInputMessageContentList; + role: "user" | "system" | "developer"; + status?: "in_progress" | "completed" | "incomplete"; + type?: "message"; +}; +type ResponseInputText = { + text: string; + type: "input_text"; +}; +type ResponseInputTextContent = { + text: string; + type: "input_text"; +}; +type ResponseItem = ResponseInputMessageItem | ResponseOutputMessage | ResponseFunctionToolCallItem | ResponseFunctionToolCallOutputItem; +type ResponseOutputItem = ResponseOutputMessage | ResponseFunctionToolCall | ResponseReasoningItem; +type ResponseOutputItemAddedEvent = { + item: ResponseOutputItem; + output_index: number; + sequence_number: number; + type: "response.output_item.added"; +}; +type ResponseOutputItemDoneEvent = { + item: ResponseOutputItem; + output_index: number; + sequence_number: number; + type: "response.output_item.done"; +}; +type ResponseOutputMessage = { + id: string; + content: Array; + role: "assistant"; + status: "in_progress" | "completed" | "incomplete"; + type: "message"; +}; +type ResponseOutputRefusal = { + refusal: string; + type: "refusal"; +}; +type ResponseOutputText = { + text: string; + type: "output_text"; + logprobs?: Array; +}; +type ResponseReasoningItem = { + id: string; + summary: Array; + type: "reasoning"; + content?: Array; + encrypted_content?: string | null; + status?: "in_progress" | "completed" | "incomplete"; +}; +type ResponseReasoningSummaryItem = { + text: string; + type: "summary_text"; +}; +type ResponseReasoningContentItem = { + text: string; + type: "reasoning_text"; +}; +type ResponseReasoningTextDeltaEvent = { + content_index: number; + delta: string; + item_id: string; + output_index: number; + sequence_number: number; + type: "response.reasoning_text.delta"; +}; +type ResponseReasoningTextDoneEvent = { + content_index: number; + item_id: string; + output_index: number; + sequence_number: number; + text: string; + type: "response.reasoning_text.done"; +}; +type ResponseRefusalDeltaEvent = { + content_index: number; + delta: string; + item_id: string; + output_index: number; + sequence_number: number; + type: "response.refusal.delta"; +}; +type ResponseRefusalDoneEvent = { + content_index: number; + item_id: string; + output_index: number; + refusal: string; + sequence_number: number; + type: "response.refusal.done"; +}; +type ResponseStatus = "completed" | "failed" | "in_progress" | "cancelled" | "queued" | "incomplete"; +type ResponseStreamEvent = ResponseCompletedEvent | ResponseCreatedEvent | ResponseErrorEvent | ResponseFunctionCallArgumentsDeltaEvent | ResponseFunctionCallArgumentsDoneEvent | ResponseFailedEvent | ResponseIncompleteEvent | ResponseOutputItemAddedEvent | ResponseOutputItemDoneEvent | ResponseReasoningTextDeltaEvent | ResponseReasoningTextDoneEvent | ResponseRefusalDeltaEvent | ResponseRefusalDoneEvent | ResponseTextDeltaEvent | ResponseTextDoneEvent; +type ResponseCompletedEvent = { + response: Response; + sequence_number: number; + type: "response.completed"; +}; +type ResponseTextConfig = { + format?: ResponseFormatTextConfig; + verbosity?: "low" | "medium" | "high" | null; +}; +type ResponseTextDeltaEvent = { + content_index: number; + delta: string; + item_id: string; + logprobs: Array; + output_index: number; + sequence_number: number; + type: "response.output_text.delta"; +}; +type ResponseTextDoneEvent = { + content_index: number; + item_id: string; + logprobs: Array; + output_index: number; + sequence_number: number; + text: string; + type: "response.output_text.done"; +}; +type Logprob = { + token: string; + logprob: number; + top_logprobs?: Array; +}; +type TopLogprob = { + token?: string; + logprob?: number; +}; +type ResponseUsage = { + input_tokens: number; + output_tokens: number; + total_tokens: number; +}; +type Tool = ResponsesFunctionTool; +type ToolChoiceFunction = { + name: string; + type: "function"; +}; +type ToolChoiceOptions = "none"; +type ReasoningEffort = "minimal" | "low" | "medium" | "high" | null; +type StreamOptions = { + include_obfuscation?: boolean; +}; +/** Marks keys from T that aren't in U as optional never */ +type Without = { + [P in Exclude]?: never; +}; +/** Either T or U, but not both (mutually exclusive) */ +type XOR = (T & Without) | (U & Without); +type Ai_Cf_Baai_Bge_Base_En_V1_5_Input = { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; +} | { + /** + * Batch of the embeddings requests to run using async-queue + */ + requests: { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; + }[]; +}; +type Ai_Cf_Baai_Bge_Base_En_V1_5_Output = { + shape?: number[]; + /** + * Embeddings of the requested text values + */ + data?: number[][]; + /** + * The pooling method used in the embedding process. + */ + pooling?: "mean" | "cls"; +} | Ai_Cf_Baai_Bge_Base_En_V1_5_AsyncResponse; +interface Ai_Cf_Baai_Bge_Base_En_V1_5_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Baai_Bge_Base_En_V1_5 { + inputs: Ai_Cf_Baai_Bge_Base_En_V1_5_Input; + postProcessedOutputs: Ai_Cf_Baai_Bge_Base_En_V1_5_Output; +} +type Ai_Cf_Openai_Whisper_Input = string | { + /** + * An array of integers that represent the audio data constrained to 8-bit unsigned integer values + */ + audio: number[]; +}; +interface Ai_Cf_Openai_Whisper_Output { + /** + * The transcription + */ + text: string; + word_count?: number; + words?: { + word?: string; + /** + * The second this word begins in the recording + */ + start?: number; + /** + * The ending second when the word completes + */ + end?: number; + }[]; + vtt?: string; +} +declare abstract class Base_Ai_Cf_Openai_Whisper { + inputs: Ai_Cf_Openai_Whisper_Input; + postProcessedOutputs: Ai_Cf_Openai_Whisper_Output; +} +type Ai_Cf_Meta_M2M100_1_2B_Input = { + /** + * The text to be translated + */ + text: string; + /** + * The language code of the source text (e.g., 'en' for English). Defaults to 'en' if not specified + */ + source_lang?: string; + /** + * The language code to translate the text into (e.g., 'es' for Spanish) + */ + target_lang: string; +} | { + /** + * Batch of the embeddings requests to run using async-queue + */ + requests: { + /** + * The text to be translated + */ + text: string; + /** + * The language code of the source text (e.g., 'en' for English). Defaults to 'en' if not specified + */ + source_lang?: string; + /** + * The language code to translate the text into (e.g., 'es' for Spanish) + */ + target_lang: string; + }[]; +}; +type Ai_Cf_Meta_M2M100_1_2B_Output = { + /** + * The translated text in the target language + */ + translated_text?: string; +} | Ai_Cf_Meta_M2M100_1_2B_AsyncResponse; +interface Ai_Cf_Meta_M2M100_1_2B_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Meta_M2M100_1_2B { + inputs: Ai_Cf_Meta_M2M100_1_2B_Input; + postProcessedOutputs: Ai_Cf_Meta_M2M100_1_2B_Output; +} +type Ai_Cf_Baai_Bge_Small_En_V1_5_Input = { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; +} | { + /** + * Batch of the embeddings requests to run using async-queue + */ + requests: { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; + }[]; +}; +type Ai_Cf_Baai_Bge_Small_En_V1_5_Output = { + shape?: number[]; + /** + * Embeddings of the requested text values + */ + data?: number[][]; + /** + * The pooling method used in the embedding process. + */ + pooling?: "mean" | "cls"; +} | Ai_Cf_Baai_Bge_Small_En_V1_5_AsyncResponse; +interface Ai_Cf_Baai_Bge_Small_En_V1_5_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Baai_Bge_Small_En_V1_5 { + inputs: Ai_Cf_Baai_Bge_Small_En_V1_5_Input; + postProcessedOutputs: Ai_Cf_Baai_Bge_Small_En_V1_5_Output; +} +type Ai_Cf_Baai_Bge_Large_En_V1_5_Input = { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; +} | { + /** + * Batch of the embeddings requests to run using async-queue + */ + requests: { + text: string | string[]; + /** + * The pooling method used in the embedding process. `cls` pooling will generate more accurate embeddings on larger inputs - however, embeddings created with cls pooling are not compatible with embeddings generated with mean pooling. The default pooling method is `mean` in order for this to not be a breaking change, but we highly suggest using the new `cls` pooling for better accuracy. + */ + pooling?: "mean" | "cls"; + }[]; +}; +type Ai_Cf_Baai_Bge_Large_En_V1_5_Output = { + shape?: number[]; + /** + * Embeddings of the requested text values + */ + data?: number[][]; + /** + * The pooling method used in the embedding process. + */ + pooling?: "mean" | "cls"; +} | Ai_Cf_Baai_Bge_Large_En_V1_5_AsyncResponse; +interface Ai_Cf_Baai_Bge_Large_En_V1_5_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Baai_Bge_Large_En_V1_5 { + inputs: Ai_Cf_Baai_Bge_Large_En_V1_5_Input; + postProcessedOutputs: Ai_Cf_Baai_Bge_Large_En_V1_5_Output; +} +type Ai_Cf_Unum_Uform_Gen2_Qwen_500M_Input = string | { + /** + * The input text prompt for the model to generate a response. + */ + prompt?: string; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * Controls the creativity of the AI's responses by adjusting how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; + image: number[] | (string & NonNullable); + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; +}; +interface Ai_Cf_Unum_Uform_Gen2_Qwen_500M_Output { + description?: string; +} +declare abstract class Base_Ai_Cf_Unum_Uform_Gen2_Qwen_500M { + inputs: Ai_Cf_Unum_Uform_Gen2_Qwen_500M_Input; + postProcessedOutputs: Ai_Cf_Unum_Uform_Gen2_Qwen_500M_Output; +} +type Ai_Cf_Openai_Whisper_Tiny_En_Input = string | { + /** + * An array of integers that represent the audio data constrained to 8-bit unsigned integer values + */ + audio: number[]; +}; +interface Ai_Cf_Openai_Whisper_Tiny_En_Output { + /** + * The transcription + */ + text: string; + word_count?: number; + words?: { + word?: string; + /** + * The second this word begins in the recording + */ + start?: number; + /** + * The ending second when the word completes + */ + end?: number; + }[]; + vtt?: string; +} +declare abstract class Base_Ai_Cf_Openai_Whisper_Tiny_En { + inputs: Ai_Cf_Openai_Whisper_Tiny_En_Input; + postProcessedOutputs: Ai_Cf_Openai_Whisper_Tiny_En_Output; +} +interface Ai_Cf_Openai_Whisper_Large_V3_Turbo_Input { + audio: string | { + body?: object; + contentType?: string; + }; + /** + * Supported tasks are 'translate' or 'transcribe'. + */ + task?: string; + /** + * The language of the audio being transcribed or translated. + */ + language?: string; + /** + * Preprocess the audio with a voice activity detection model. + */ + vad_filter?: boolean; + /** + * A text prompt to help provide context to the model on the contents of the audio. + */ + initial_prompt?: string; + /** + * The prefix appended to the beginning of the output of the transcription and can guide the transcription result. + */ + prefix?: string; + /** + * The number of beams to use in beam search decoding. Higher values may improve accuracy at the cost of speed. + */ + beam_size?: number; + /** + * Whether to condition on previous text during transcription. Setting to false may help prevent hallucination loops. + */ + condition_on_previous_text?: boolean; + /** + * Threshold for detecting no-speech segments. Segments with no-speech probability above this value are skipped. + */ + no_speech_threshold?: number; + /** + * Threshold for filtering out segments with high compression ratio, which often indicate repetitive or hallucinated text. + */ + compression_ratio_threshold?: number; + /** + * Threshold for filtering out segments with low average log probability, indicating low confidence. + */ + log_prob_threshold?: number; + /** + * Optional threshold (in seconds) to skip silent periods that may cause hallucinations. + */ + hallucination_silence_threshold?: number; +} +interface Ai_Cf_Openai_Whisper_Large_V3_Turbo_Output { + transcription_info?: { + /** + * The language of the audio being transcribed or translated. + */ + language?: string; + /** + * The confidence level or probability of the detected language being accurate, represented as a decimal between 0 and 1. + */ + language_probability?: number; + /** + * The total duration of the original audio file, in seconds. + */ + duration?: number; + /** + * The duration of the audio after applying Voice Activity Detection (VAD) to remove silent or irrelevant sections, in seconds. + */ + duration_after_vad?: number; + }; + /** + * The complete transcription of the audio. + */ + text: string; + /** + * The total number of words in the transcription. + */ + word_count?: number; + segments?: { + /** + * The starting time of the segment within the audio, in seconds. + */ + start?: number; + /** + * The ending time of the segment within the audio, in seconds. + */ + end?: number; + /** + * The transcription of the segment. + */ + text?: string; + /** + * The temperature used in the decoding process, controlling randomness in predictions. Lower values result in more deterministic outputs. + */ + temperature?: number; + /** + * The average log probability of the predictions for the words in this segment, indicating overall confidence. + */ + avg_logprob?: number; + /** + * The compression ratio of the input to the output, measuring how much the text was compressed during the transcription process. + */ + compression_ratio?: number; + /** + * The probability that the segment contains no speech, represented as a decimal between 0 and 1. + */ + no_speech_prob?: number; + words?: { + /** + * The individual word transcribed from the audio. + */ + word?: string; + /** + * The starting time of the word within the audio, in seconds. + */ + start?: number; + /** + * The ending time of the word within the audio, in seconds. + */ + end?: number; + }[]; + }[]; + /** + * The transcription in WebVTT format, which includes timing and text information for use in subtitles. + */ + vtt?: string; +} +declare abstract class Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo { + inputs: Ai_Cf_Openai_Whisper_Large_V3_Turbo_Input; + postProcessedOutputs: Ai_Cf_Openai_Whisper_Large_V3_Turbo_Output; +} +type Ai_Cf_Baai_Bge_M3_Input = Ai_Cf_Baai_Bge_M3_Input_QueryAnd_Contexts | Ai_Cf_Baai_Bge_M3_Input_Embedding | { + /** + * Batch of the embeddings requests to run using async-queue + */ + requests: (Ai_Cf_Baai_Bge_M3_Input_QueryAnd_Contexts_1 | Ai_Cf_Baai_Bge_M3_Input_Embedding_1)[]; +}; +interface Ai_Cf_Baai_Bge_M3_Input_QueryAnd_Contexts { + /** + * A query you wish to perform against the provided contexts. If no query is provided the model with respond with embeddings for contexts + */ + query?: string; + /** + * List of provided contexts. Note that the index in this array is important, as the response will refer to it. + */ + contexts: { + /** + * One of the provided context content + */ + text?: string; + }[]; + /** + * When provided with too long context should the model error out or truncate the context to fit? + */ + truncate_inputs?: boolean; +} +interface Ai_Cf_Baai_Bge_M3_Input_Embedding { + text: string | string[]; + /** + * When provided with too long context should the model error out or truncate the context to fit? + */ + truncate_inputs?: boolean; +} +interface Ai_Cf_Baai_Bge_M3_Input_QueryAnd_Contexts_1 { + /** + * A query you wish to perform against the provided contexts. If no query is provided the model with respond with embeddings for contexts + */ + query?: string; + /** + * List of provided contexts. Note that the index in this array is important, as the response will refer to it. + */ + contexts: { + /** + * One of the provided context content + */ + text?: string; + }[]; + /** + * When provided with too long context should the model error out or truncate the context to fit? + */ + truncate_inputs?: boolean; +} +interface Ai_Cf_Baai_Bge_M3_Input_Embedding_1 { + text: string | string[]; + /** + * When provided with too long context should the model error out or truncate the context to fit? + */ + truncate_inputs?: boolean; +} +type Ai_Cf_Baai_Bge_M3_Output = Ai_Cf_Baai_Bge_M3_Output_Query | Ai_Cf_Baai_Bge_M3_Output_EmbeddingFor_Contexts | Ai_Cf_Baai_Bge_M3_Output_Embedding | Ai_Cf_Baai_Bge_M3_AsyncResponse; +interface Ai_Cf_Baai_Bge_M3_Output_Query { + response?: { + /** + * Index of the context in the request + */ + id?: number; + /** + * Score of the context under the index. + */ + score?: number; + }[]; +} +interface Ai_Cf_Baai_Bge_M3_Output_EmbeddingFor_Contexts { + response?: number[][]; + shape?: number[]; + /** + * The pooling method used in the embedding process. + */ + pooling?: "mean" | "cls"; +} +interface Ai_Cf_Baai_Bge_M3_Output_Embedding { + shape?: number[]; + /** + * Embeddings of the requested text values + */ + data?: number[][]; + /** + * The pooling method used in the embedding process. + */ + pooling?: "mean" | "cls"; +} +interface Ai_Cf_Baai_Bge_M3_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Baai_Bge_M3 { + inputs: Ai_Cf_Baai_Bge_M3_Input; + postProcessedOutputs: Ai_Cf_Baai_Bge_M3_Output; +} +interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input { + /** + * A text description of the image you want to generate. + */ + prompt: string; + /** + * The number of diffusion steps; higher values can improve quality but take longer. + */ + steps?: number; +} +interface Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output { + /** + * The generated image in Base64 format. + */ + image?: string; +} +declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell { + inputs: Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Input; + postProcessedOutputs: Ai_Cf_Black_Forest_Labs_Flux_1_Schnell_Output; +} +type Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Input = Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Prompt | Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Messages; +interface Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + image?: number[] | (string & NonNullable); + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; +} +interface Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + /** + * The tool call id. If you don't know what to put here you can fall back to 000000001 + */ + tool_call_id?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[] | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }; + }[]; + image?: number[] | (string & NonNullable); + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + /** + * If true, the response will be streamed back incrementally. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Controls the creativity of the AI's responses by adjusting how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +type Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Output = { + /** + * The generated text response from the model + */ + response?: string; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +}; +declare abstract class Base_Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct { + inputs: Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Input; + postProcessedOutputs: Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct_Output; +} +type Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Input = Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Prompt | Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Messages | Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Async_Batch; +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + content: string | { + /** + * Type of the content (text) + */ + type?: string; + /** + * Text content + */ + text?: string; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode_1; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode_1 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Async_Batch { + requests?: { + /** + * User-supplied reference. This field will be present in the response as well it can be used to reference the request and response. It's NOT validated to be unique. + */ + external_reference?: string; + /** + * Prompt for the text generation model + */ + prompt?: string; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; + response_format?: Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode_2; + }[]; +} +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_JSON_Mode_2 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +type Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +} | string | Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_AsyncResponse; +interface Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast { + inputs: Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Input; + postProcessedOutputs: Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast_Output; +} +interface Ai_Cf_Meta_Llama_Guard_3_8B_Input { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender must alternate between 'user' and 'assistant'. + */ + role: "user" | "assistant"; + /** + * The content of the message as a string. + */ + content: string; + }[]; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Dictate the output format of the generated response. + */ + response_format?: { + /** + * Set to json_object to process and output generated text as JSON. + */ + type?: string; + }; +} +interface Ai_Cf_Meta_Llama_Guard_3_8B_Output { + response?: string | { + /** + * Whether the conversation is safe or not. + */ + safe?: boolean; + /** + * A list of what hazard categories predicted for the conversation, if the conversation is deemed unsafe. + */ + categories?: string[]; + }; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; +} +declare abstract class Base_Ai_Cf_Meta_Llama_Guard_3_8B { + inputs: Ai_Cf_Meta_Llama_Guard_3_8B_Input; + postProcessedOutputs: Ai_Cf_Meta_Llama_Guard_3_8B_Output; +} +interface Ai_Cf_Baai_Bge_Reranker_Base_Input { + /** + * A query you wish to perform against the provided contexts. + */ + /** + * Number of returned results starting with the best score. + */ + top_k?: number; + /** + * List of provided contexts. Note that the index in this array is important, as the response will refer to it. + */ + contexts: { + /** + * One of the provided context content + */ + text?: string; + }[]; +} +interface Ai_Cf_Baai_Bge_Reranker_Base_Output { + response?: { + /** + * Index of the context in the request + */ + id?: number; + /** + * Score of the context under the index. + */ + score?: number; + }[]; +} +declare abstract class Base_Ai_Cf_Baai_Bge_Reranker_Base { + inputs: Ai_Cf_Baai_Bge_Reranker_Base_Input; + postProcessedOutputs: Ai_Cf_Baai_Bge_Reranker_Base_Output; +} +type Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Input = Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Prompt | Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Messages; +interface Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_JSON_Mode { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + /** + * The content of the message as a string. + */ + content: string; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_JSON_Mode_1; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_JSON_Mode_1 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +type Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +}; +declare abstract class Base_Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct { + inputs: Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Input; + postProcessedOutputs: Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct_Output; +} +type Ai_Cf_Qwen_Qwq_32B_Input = Ai_Cf_Qwen_Qwq_32B_Prompt | Ai_Cf_Qwen_Qwq_32B_Messages; +interface Ai_Cf_Qwen_Qwq_32B_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * JSON schema that should be fulfilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwq_32B_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + /** + * The tool call id. If you don't know what to put here you can fall back to 000000001 + */ + tool_call_id?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[] | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +type Ai_Cf_Qwen_Qwq_32B_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +}; +declare abstract class Base_Ai_Cf_Qwen_Qwq_32B { + inputs: Ai_Cf_Qwen_Qwq_32B_Input; + postProcessedOutputs: Ai_Cf_Qwen_Qwq_32B_Output; +} +type Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Input = Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Prompt | Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Messages; +interface Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * JSON schema that should be fulfilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + /** + * The tool call id. Must be supplied for tool calls for Mistral-3. If you don't know what to put here you can fall back to 000000001 + */ + tool_call_id?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[] | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +type Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +}; +declare abstract class Base_Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct { + inputs: Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Input; + postProcessedOutputs: Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct_Output; +} +type Ai_Cf_Google_Gemma_3_12B_It_Input = Ai_Cf_Google_Gemma_3_12B_It_Prompt | Ai_Cf_Google_Gemma_3_12B_It_Messages; +interface Ai_Cf_Google_Gemma_3_12B_It_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Google_Gemma_3_12B_It_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +type Ai_Cf_Google_Gemma_3_12B_It_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + /** + * The name of the tool to be called + */ + name?: string; + }[]; +}; +declare abstract class Base_Ai_Cf_Google_Gemma_3_12B_It { + inputs: Ai_Cf_Google_Gemma_3_12B_It_Input; + postProcessedOutputs: Ai_Cf_Google_Gemma_3_12B_It_Output; +} +type Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Input = Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Prompt | Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Messages | Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Async_Batch; +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * JSON schema that should be fulfilled for the response. + */ + guided_json?: object; + response_format?: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_JSON_Mode { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + /** + * The tool call id. If you don't know what to put here you can fall back to 000000001 + */ + tool_call_id?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[] | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_JSON_Mode; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Async_Batch { + requests: (Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Prompt_Inner | Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Messages_Inner)[]; +} +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Prompt_Inner { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * JSON schema that should be fulfilled for the response. + */ + guided_json?: object; + response_format?: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Messages_Inner { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role?: string; + /** + * The tool call id. If you don't know what to put here you can fall back to 000000001 + */ + tool_call_id?: string; + content?: string | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }[] | { + /** + * Type of the content provided + */ + type?: string; + text?: string; + image_url?: { + /** + * image uri with data (e.g. data:image/jpeg;base64,/9j/...). HTTP URL will not be accepted + */ + url?: string; + }; + }; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_JSON_Mode; + /** + * JSON schema that should be fufilled for the response. + */ + guided_json?: object; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +type Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Output = { + /** + * The generated text response from the model + */ + response: string; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * An array of tool calls requests made during the response generation + */ + tool_calls?: { + /** + * The tool call id. + */ + id?: string; + /** + * Specifies the type of tool (e.g., 'function'). + */ + type?: string; + /** + * Details of the function tool. + */ + function?: { + /** + * The name of the tool to be called + */ + name?: string; + /** + * The arguments passed to be passed to the tool call request + */ + arguments?: object; + }; + }[]; +}; +declare abstract class Base_Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct { + inputs: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Input; + postProcessedOutputs: Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct_Output; +} +type Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Input = Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt | Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Messages | Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Async_Batch; +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + content: string | { + /** + * Type of the content (text) + */ + type?: string; + /** + * Text content + */ + text?: string; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_1; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_1 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Async_Batch { + requests: (Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt_1 | Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Messages_1)[]; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Prompt_1 { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_2; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_2 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Messages_1 { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + content: string | { + /** + * Type of the content (text) + */ + type?: string; + /** + * Text content + */ + text?: string; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_3; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_JSON_Mode_3 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +type Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Output = Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Chat_Completion_Response | Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Text_Completion_Response | string | Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_AsyncResponse; +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Chat_Completion_Response { + /** + * Unique identifier for the completion + */ + id?: string; + /** + * Object type identifier + */ + object?: "chat.completion"; + /** + * Unix timestamp of when the completion was created + */ + created?: number; + /** + * Model used for the completion + */ + model?: string; + /** + * List of completion choices + */ + choices?: { + /** + * Index of the choice in the list + */ + index?: number; + /** + * The message generated by the model + */ + message?: { + /** + * Role of the message author + */ + role: string; + /** + * The content of the message + */ + content: string; + /** + * Internal reasoning content (if available) + */ + reasoning_content?: string; + /** + * Tool calls made by the assistant + */ + tool_calls?: { + /** + * Unique identifier for the tool call + */ + id: string; + /** + * Type of tool call + */ + type: "function"; + function: { + /** + * Name of the function to call + */ + name: string; + /** + * JSON string of arguments for the function + */ + arguments: string; + }; + }[]; + }; + /** + * Reason why the model stopped generating + */ + finish_reason?: string; + /** + * Stop reason (may be null) + */ + stop_reason?: string | null; + /** + * Log probabilities (if requested) + */ + logprobs?: {} | null; + }[]; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * Log probabilities for the prompt (if requested) + */ + prompt_logprobs?: {} | null; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Text_Completion_Response { + /** + * Unique identifier for the completion + */ + id?: string; + /** + * Object type identifier + */ + object?: "text_completion"; + /** + * Unix timestamp of when the completion was created + */ + created?: number; + /** + * Model used for the completion + */ + model?: string; + /** + * List of completion choices + */ + choices?: { + /** + * Index of the choice in the list + */ + index: number; + /** + * The generated text completion + */ + text: string; + /** + * Reason why the model stopped generating + */ + finish_reason: string; + /** + * Stop reason (may be null) + */ + stop_reason?: string | null; + /** + * Log probabilities (if requested) + */ + logprobs?: {} | null; + /** + * Log probabilities for the prompt (if requested) + */ + prompt_logprobs?: {} | null; + }[]; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; +} +interface Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8 { + inputs: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Input; + postProcessedOutputs: Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8_Output; +} +interface Ai_Cf_Deepgram_Nova_3_Input { + audio: { + body: object; + contentType: string; + }; + /** + * Sets how the model will interpret strings submitted to the custom_topic param. When strict, the model will only return topics submitted using the custom_topic param. When extended, the model will return its own detected topics in addition to those submitted using the custom_topic param. + */ + custom_topic_mode?: "extended" | "strict"; + /** + * Custom topics you want the model to detect within your input audio or text if present Submit up to 100 + */ + custom_topic?: string; + /** + * Sets how the model will interpret intents submitted to the custom_intent param. When strict, the model will only return intents submitted using the custom_intent param. When extended, the model will return its own detected intents in addition those submitted using the custom_intents param + */ + custom_intent_mode?: "extended" | "strict"; + /** + * Custom intents you want the model to detect within your input audio if present + */ + custom_intent?: string; + /** + * Identifies and extracts key entities from content in submitted audio + */ + detect_entities?: boolean; + /** + * Identifies the dominant language spoken in submitted audio + */ + detect_language?: boolean; + /** + * Recognize speaker changes. Each word in the transcript will be assigned a speaker number starting at 0 + */ + diarize?: boolean; + /** + * Identify and extract key entities from content in submitted audio + */ + dictation?: boolean; + /** + * Specify the expected encoding of your submitted audio + */ + encoding?: "linear16" | "flac" | "mulaw" | "amr-nb" | "amr-wb" | "opus" | "speex" | "g729"; + /** + * Arbitrary key-value pairs that are attached to the API response for usage in downstream processing + */ + extra?: string; + /** + * Filler Words can help transcribe interruptions in your audio, like 'uh' and 'um' + */ + filler_words?: boolean; + /** + * Key term prompting can boost or suppress specialized terminology and brands. + */ + keyterm?: string; + /** + * Keywords can boost or suppress specialized terminology and brands. + */ + keywords?: string; + /** + * The BCP-47 language tag that hints at the primary spoken language. Depending on the Model and API endpoint you choose only certain languages are available. + */ + language?: string; + /** + * Spoken measurements will be converted to their corresponding abbreviations. + */ + measurements?: boolean; + /** + * Opts out requests from the Deepgram Model Improvement Program. Refer to our Docs for pricing impacts before setting this to true. https://dpgr.am/deepgram-mip. + */ + mip_opt_out?: boolean; + /** + * Mode of operation for the model representing broad area of topic that will be talked about in the supplied audio + */ + mode?: "general" | "medical" | "finance"; + /** + * Transcribe each audio channel independently. + */ + multichannel?: boolean; + /** + * Numerals converts numbers from written format to numerical format. + */ + numerals?: boolean; + /** + * Splits audio into paragraphs to improve transcript readability. + */ + paragraphs?: boolean; + /** + * Profanity Filter looks for recognized profanity and converts it to the nearest recognized non-profane word or removes it from the transcript completely. + */ + profanity_filter?: boolean; + /** + * Add punctuation and capitalization to the transcript. + */ + punctuate?: boolean; + /** + * Redaction removes sensitive information from your transcripts. + */ + redact?: string; + /** + * Search for terms or phrases in submitted audio and replaces them. + */ + replace?: string; + /** + * Search for terms or phrases in submitted audio. + */ + search?: string; + /** + * Recognizes the sentiment throughout a transcript or text. + */ + sentiment?: boolean; + /** + * Apply formatting to transcript output. When set to true, additional formatting will be applied to transcripts to improve readability. + */ + smart_format?: boolean; + /** + * Detect topics throughout a transcript or text. + */ + topics?: boolean; + /** + * Segments speech into meaningful semantic units. + */ + utterances?: boolean; + /** + * Seconds to wait before detecting a pause between words in submitted audio. + */ + utt_split?: number; + /** + * The number of channels in the submitted audio + */ + channels?: number; + /** + * Specifies whether the streaming endpoint should provide ongoing transcription updates as more audio is received. When set to true, the endpoint sends continuous updates, meaning transcription results may evolve over time. Note: Supported only for webosockets. + */ + interim_results?: boolean; + /** + * Indicates how long model will wait to detect whether a speaker has finished speaking or pauses for a significant period of time. When set to a value, the streaming endpoint immediately finalizes the transcription for the processed time range and returns the transcript with a speech_final parameter set to true. Can also be set to false to disable endpointing + */ + endpointing?: string; + /** + * Indicates that speech has started. You'll begin receiving Speech Started messages upon speech starting. Note: Supported only for webosockets. + */ + vad_events?: boolean; + /** + * Indicates how long model will wait to send an UtteranceEnd message after a word has been transcribed. Use with interim_results. Note: Supported only for webosockets. + */ + utterance_end_ms?: boolean; +} +interface Ai_Cf_Deepgram_Nova_3_Output { + results?: { + channels?: { + alternatives?: { + confidence?: number; + transcript?: string; + words?: { + confidence?: number; + end?: number; + start?: number; + word?: string; + }[]; + }[]; + }[]; + summary?: { + result?: string; + short?: string; + }; + sentiments?: { + segments?: { + text?: string; + start_word?: number; + end_word?: number; + sentiment?: string; + sentiment_score?: number; + }[]; + average?: { + sentiment?: string; + sentiment_score?: number; + }; + }; + }; +} +declare abstract class Base_Ai_Cf_Deepgram_Nova_3 { + inputs: Ai_Cf_Deepgram_Nova_3_Input; + postProcessedOutputs: Ai_Cf_Deepgram_Nova_3_Output; +} +interface Ai_Cf_Qwen_Qwen3_Embedding_0_6B_Input { + queries?: string | string[]; + /** + * Optional instruction for the task + */ + instruction?: string; + documents?: string | string[]; + text?: string | string[]; +} +interface Ai_Cf_Qwen_Qwen3_Embedding_0_6B_Output { + data?: number[][]; + shape?: number[]; +} +declare abstract class Base_Ai_Cf_Qwen_Qwen3_Embedding_0_6B { + inputs: Ai_Cf_Qwen_Qwen3_Embedding_0_6B_Input; + postProcessedOutputs: Ai_Cf_Qwen_Qwen3_Embedding_0_6B_Output; +} +type Ai_Cf_Pipecat_Ai_Smart_Turn_V2_Input = { + /** + * readable stream with audio data and content-type specified for that data + */ + audio: { + body: object; + contentType: string; + }; + /** + * type of data PCM data that's sent to the inference server as raw array + */ + dtype?: "uint8" | "float32" | "float64"; +} | { + /** + * base64 encoded audio data + */ + audio: string; + /** + * type of data PCM data that's sent to the inference server as raw array + */ + dtype?: "uint8" | "float32" | "float64"; +}; +interface Ai_Cf_Pipecat_Ai_Smart_Turn_V2_Output { + /** + * if true, end-of-turn was detected + */ + is_complete?: boolean; + /** + * probability of the end-of-turn detection + */ + probability?: number; +} +declare abstract class Base_Ai_Cf_Pipecat_Ai_Smart_Turn_V2 { + inputs: Ai_Cf_Pipecat_Ai_Smart_Turn_V2_Input; + postProcessedOutputs: Ai_Cf_Pipecat_Ai_Smart_Turn_V2_Output; +} +declare abstract class Base_Ai_Cf_Openai_Gpt_Oss_120B { + inputs: XOR; + postProcessedOutputs: XOR; +} +declare abstract class Base_Ai_Cf_Openai_Gpt_Oss_20B { + inputs: XOR; + postProcessedOutputs: XOR; +} +interface Ai_Cf_Leonardo_Phoenix_1_0_Input { + /** + * A text description of the image you want to generate. + */ + prompt: string; + /** + * Controls how closely the generated image should adhere to the prompt; higher values make the image more aligned with the prompt + */ + guidance?: number; + /** + * Random seed for reproducibility of the image generation + */ + seed?: number; + /** + * The height of the generated image in pixels + */ + height?: number; + /** + * The width of the generated image in pixels + */ + width?: number; + /** + * The number of diffusion steps; higher values can improve quality but take longer + */ + num_steps?: number; + /** + * Specify what to exclude from the generated images + */ + negative_prompt?: string; +} +/** + * The generated image in JPEG format + */ +type Ai_Cf_Leonardo_Phoenix_1_0_Output = string; +declare abstract class Base_Ai_Cf_Leonardo_Phoenix_1_0 { + inputs: Ai_Cf_Leonardo_Phoenix_1_0_Input; + postProcessedOutputs: Ai_Cf_Leonardo_Phoenix_1_0_Output; +} +interface Ai_Cf_Leonardo_Lucid_Origin_Input { + /** + * A text description of the image you want to generate. + */ + prompt: string; + /** + * Controls how closely the generated image should adhere to the prompt; higher values make the image more aligned with the prompt + */ + guidance?: number; + /** + * Random seed for reproducibility of the image generation + */ + seed?: number; + /** + * The height of the generated image in pixels + */ + height?: number; + /** + * The width of the generated image in pixels + */ + width?: number; + /** + * The number of diffusion steps; higher values can improve quality but take longer + */ + num_steps?: number; + /** + * The number of diffusion steps; higher values can improve quality but take longer + */ + steps?: number; +} +interface Ai_Cf_Leonardo_Lucid_Origin_Output { + /** + * The generated image in Base64 format. + */ + image?: string; +} +declare abstract class Base_Ai_Cf_Leonardo_Lucid_Origin { + inputs: Ai_Cf_Leonardo_Lucid_Origin_Input; + postProcessedOutputs: Ai_Cf_Leonardo_Lucid_Origin_Output; +} +interface Ai_Cf_Deepgram_Aura_1_Input { + /** + * Speaker used to produce the audio. + */ + speaker?: "angus" | "asteria" | "arcas" | "orion" | "orpheus" | "athena" | "luna" | "zeus" | "perseus" | "helios" | "hera" | "stella"; + /** + * Encoding of the output audio. + */ + encoding?: "linear16" | "flac" | "mulaw" | "alaw" | "mp3" | "opus" | "aac"; + /** + * Container specifies the file format wrapper for the output audio. The available options depend on the encoding type.. + */ + container?: "none" | "wav" | "ogg"; + /** + * The text content to be converted to speech + */ + text: string; + /** + * Sample Rate specifies the sample rate for the output audio. Based on the encoding, different sample rates are supported. For some encodings, the sample rate is not configurable + */ + sample_rate?: number; + /** + * The bitrate of the audio in bits per second. Choose from predefined ranges or specific values based on the encoding type. + */ + bit_rate?: number; +} +/** + * The generated audio in MP3 format + */ +type Ai_Cf_Deepgram_Aura_1_Output = string; +declare abstract class Base_Ai_Cf_Deepgram_Aura_1 { + inputs: Ai_Cf_Deepgram_Aura_1_Input; + postProcessedOutputs: Ai_Cf_Deepgram_Aura_1_Output; +} +interface Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B_Input { + /** + * Input text to translate. Can be a single string or a list of strings. + */ + text: string | string[]; + /** + * Target langauge to translate to + */ + target_language: "asm_Beng" | "awa_Deva" | "ben_Beng" | "bho_Deva" | "brx_Deva" | "doi_Deva" | "eng_Latn" | "gom_Deva" | "gon_Deva" | "guj_Gujr" | "hin_Deva" | "hne_Deva" | "kan_Knda" | "kas_Arab" | "kas_Deva" | "kha_Latn" | "lus_Latn" | "mag_Deva" | "mai_Deva" | "mal_Mlym" | "mar_Deva" | "mni_Beng" | "mni_Mtei" | "npi_Deva" | "ory_Orya" | "pan_Guru" | "san_Deva" | "sat_Olck" | "snd_Arab" | "snd_Deva" | "tam_Taml" | "tel_Telu" | "urd_Arab" | "unr_Deva"; +} +interface Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B_Output { + /** + * Translated texts + */ + translations: string[]; +} +declare abstract class Base_Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B { + inputs: Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B_Input; + postProcessedOutputs: Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B_Output; +} +type Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Input = Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Prompt | Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Messages | Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Async_Batch; +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Prompt { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Messages { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + content: string | { + /** + * Type of the content (text) + */ + type?: string; + /** + * Text content + */ + text?: string; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_1; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_1 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Async_Batch { + requests: (Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Prompt_1 | Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Messages_1)[]; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Prompt_1 { + /** + * The input text prompt for the model to generate a response. + */ + prompt: string; + /** + * Name of the LoRA (Low-Rank Adaptation) model to fine-tune the base model. + */ + lora?: string; + response_format?: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_2; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_2 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Messages_1 { + /** + * An array of message objects representing the conversation history. + */ + messages: { + /** + * The role of the message sender (e.g., 'user', 'assistant', 'system', 'tool'). + */ + role: string; + content: string | { + /** + * Type of the content (text) + */ + type?: string; + /** + * Text content + */ + text?: string; + }[]; + }[]; + functions?: { + name: string; + code: string; + }[]; + /** + * A list of tools available for the assistant to use. + */ + tools?: ({ + /** + * The name of the tool. More descriptive the better. + */ + name: string; + /** + * A brief description of what the tool does. + */ + description: string; + /** + * Schema defining the parameters accepted by the tool. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + } | { + /** + * Specifies the type of tool (e.g., 'function'). + */ + type: string; + /** + * Details of the function tool. + */ + function: { + /** + * The name of the function. + */ + name: string; + /** + * A brief description of what the function does. + */ + description: string; + /** + * Schema defining the parameters accepted by the function. + */ + parameters: { + /** + * The type of the parameters object (usually 'object'). + */ + type: string; + /** + * List of required parameter names. + */ + required?: string[]; + /** + * Definitions of each parameter. + */ + properties: { + [k: string]: { + /** + * The data type of the parameter. + */ + type: string; + /** + * A description of the expected parameter. + */ + description: string; + }; + }; + }; + }; + })[]; + response_format?: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_3; + /** + * If true, a chat template is not applied and you must adhere to the specific model's expected formatting. + */ + raw?: boolean; + /** + * If true, the response will be streamed back incrementally using SSE, Server Sent Events. + */ + stream?: boolean; + /** + * The maximum number of tokens to generate in the response. + */ + max_tokens?: number; + /** + * Controls the randomness of the output; higher values produce more random results. + */ + temperature?: number; + /** + * Adjusts the creativity of the AI's responses by controlling how many possible words it considers. Lower values make outputs more predictable; higher values allow for more varied and creative responses. + */ + top_p?: number; + /** + * Limits the AI to choose from the top 'k' most probable words. Lower values make responses more focused; higher values introduce more variety and potential surprises. + */ + top_k?: number; + /** + * Random seed for reproducibility of the generation. + */ + seed?: number; + /** + * Penalty for repeated tokens; higher values discourage repetition. + */ + repetition_penalty?: number; + /** + * Decreases the likelihood of the model repeating the same lines verbatim. + */ + frequency_penalty?: number; + /** + * Increases the likelihood of the model introducing new topics. + */ + presence_penalty?: number; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_JSON_Mode_3 { + type?: "json_object" | "json_schema"; + json_schema?: unknown; +} +type Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Output = Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Chat_Completion_Response | Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Text_Completion_Response | string | Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_AsyncResponse; +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Chat_Completion_Response { + /** + * Unique identifier for the completion + */ + id?: string; + /** + * Object type identifier + */ + object?: "chat.completion"; + /** + * Unix timestamp of when the completion was created + */ + created?: number; + /** + * Model used for the completion + */ + model?: string; + /** + * List of completion choices + */ + choices?: { + /** + * Index of the choice in the list + */ + index?: number; + /** + * The message generated by the model + */ + message?: { + /** + * Role of the message author + */ + role: string; + /** + * The content of the message + */ + content: string; + /** + * Internal reasoning content (if available) + */ + reasoning_content?: string; + /** + * Tool calls made by the assistant + */ + tool_calls?: { + /** + * Unique identifier for the tool call + */ + id: string; + /** + * Type of tool call + */ + type: "function"; + function: { + /** + * Name of the function to call + */ + name: string; + /** + * JSON string of arguments for the function + */ + arguments: string; + }; + }[]; + }; + /** + * Reason why the model stopped generating + */ + finish_reason?: string; + /** + * Stop reason (may be null) + */ + stop_reason?: string | null; + /** + * Log probabilities (if requested) + */ + logprobs?: {} | null; + }[]; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; + /** + * Log probabilities for the prompt (if requested) + */ + prompt_logprobs?: {} | null; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Text_Completion_Response { + /** + * Unique identifier for the completion + */ + id?: string; + /** + * Object type identifier + */ + object?: "text_completion"; + /** + * Unix timestamp of when the completion was created + */ + created?: number; + /** + * Model used for the completion + */ + model?: string; + /** + * List of completion choices + */ + choices?: { + /** + * Index of the choice in the list + */ + index: number; + /** + * The generated text completion + */ + text: string; + /** + * Reason why the model stopped generating + */ + finish_reason: string; + /** + * Stop reason (may be null) + */ + stop_reason?: string | null; + /** + * Log probabilities (if requested) + */ + logprobs?: {} | null; + /** + * Log probabilities for the prompt (if requested) + */ + prompt_logprobs?: {} | null; + }[]; + /** + * Usage statistics for the inference request + */ + usage?: { + /** + * Total number of tokens in input + */ + prompt_tokens?: number; + /** + * Total number of tokens in output + */ + completion_tokens?: number; + /** + * Total number of input and output tokens + */ + total_tokens?: number; + }; +} +interface Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_AsyncResponse { + /** + * The async request id that can be used to obtain the results. + */ + request_id?: string; +} +declare abstract class Base_Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It { + inputs: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Input; + postProcessedOutputs: Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It_Output; +} +interface Ai_Cf_Pfnet_Plamo_Embedding_1B_Input { + /** + * Input text to embed. Can be a single string or a list of strings. + */ + text: string | string[]; +} +interface Ai_Cf_Pfnet_Plamo_Embedding_1B_Output { + /** + * Embedding vectors, where each vector is a list of floats. + */ + data: number[][]; + /** + * Shape of the embedding data as [number_of_embeddings, embedding_dimension]. + * + * @minItems 2 + * @maxItems 2 + */ + shape: [ + number, + number + ]; +} +declare abstract class Base_Ai_Cf_Pfnet_Plamo_Embedding_1B { + inputs: Ai_Cf_Pfnet_Plamo_Embedding_1B_Input; + postProcessedOutputs: Ai_Cf_Pfnet_Plamo_Embedding_1B_Output; +} +interface Ai_Cf_Deepgram_Flux_Input { + /** + * Encoding of the audio stream. Currently only supports raw signed little-endian 16-bit PCM. + */ + encoding: "linear16"; + /** + * Sample rate of the audio stream in Hz. + */ + sample_rate: string; + /** + * End-of-turn confidence required to fire an eager end-of-turn event. When set, enables EagerEndOfTurn and TurnResumed events. Valid Values 0.3 - 0.9. + */ + eager_eot_threshold?: string; + /** + * End-of-turn confidence required to finish a turn. Valid Values 0.5 - 0.9. + */ + eot_threshold?: string; + /** + * A turn will be finished when this much time has passed after speech, regardless of EOT confidence. + */ + eot_timeout_ms?: string; + /** + * Keyterm prompting can improve recognition of specialized terminology. Pass multiple keyterm query parameters to boost multiple keyterms. + */ + keyterm?: string; + /** + * Opts out requests from the Deepgram Model Improvement Program. Refer to Deepgram Docs for pricing impacts before setting this to true. https://dpgr.am/deepgram-mip + */ + mip_opt_out?: "true" | "false"; + /** + * Label your requests for the purpose of identification during usage reporting + */ + tag?: string; +} +/** + * Output will be returned as websocket messages. + */ +interface Ai_Cf_Deepgram_Flux_Output { + /** + * The unique identifier of the request (uuid) + */ + request_id?: string; + /** + * Starts at 0 and increments for each message the server sends to the client. + */ + sequence_id?: number; + /** + * The type of event being reported. + */ + event?: "Update" | "StartOfTurn" | "EagerEndOfTurn" | "TurnResumed" | "EndOfTurn"; + /** + * The index of the current turn + */ + turn_index?: number; + /** + * Start time in seconds of the audio range that was transcribed + */ + audio_window_start?: number; + /** + * End time in seconds of the audio range that was transcribed + */ + audio_window_end?: number; + /** + * Text that was said over the course of the current turn + */ + transcript?: string; + /** + * The words in the transcript + */ + words?: { + /** + * The individual punctuated, properly-cased word from the transcript + */ + word: string; + /** + * Confidence that this word was transcribed correctly + */ + confidence: number; + }[]; + /** + * Confidence that no more speech is coming in this turn + */ + end_of_turn_confidence?: number; +} +declare abstract class Base_Ai_Cf_Deepgram_Flux { + inputs: Ai_Cf_Deepgram_Flux_Input; + postProcessedOutputs: Ai_Cf_Deepgram_Flux_Output; +} +interface Ai_Cf_Deepgram_Aura_2_En_Input { + /** + * Speaker used to produce the audio. + */ + speaker?: "amalthea" | "andromeda" | "apollo" | "arcas" | "aries" | "asteria" | "athena" | "atlas" | "aurora" | "callista" | "cora" | "cordelia" | "delia" | "draco" | "electra" | "harmonia" | "helena" | "hera" | "hermes" | "hyperion" | "iris" | "janus" | "juno" | "jupiter" | "luna" | "mars" | "minerva" | "neptune" | "odysseus" | "ophelia" | "orion" | "orpheus" | "pandora" | "phoebe" | "pluto" | "saturn" | "thalia" | "theia" | "vesta" | "zeus"; + /** + * Encoding of the output audio. + */ + encoding?: "linear16" | "flac" | "mulaw" | "alaw" | "mp3" | "opus" | "aac"; + /** + * Container specifies the file format wrapper for the output audio. The available options depend on the encoding type.. + */ + container?: "none" | "wav" | "ogg"; + /** + * The text content to be converted to speech + */ + text: string; + /** + * Sample Rate specifies the sample rate for the output audio. Based on the encoding, different sample rates are supported. For some encodings, the sample rate is not configurable + */ + sample_rate?: number; + /** + * The bitrate of the audio in bits per second. Choose from predefined ranges or specific values based on the encoding type. + */ + bit_rate?: number; +} +/** + * The generated audio in MP3 format + */ +type Ai_Cf_Deepgram_Aura_2_En_Output = string; +declare abstract class Base_Ai_Cf_Deepgram_Aura_2_En { + inputs: Ai_Cf_Deepgram_Aura_2_En_Input; + postProcessedOutputs: Ai_Cf_Deepgram_Aura_2_En_Output; +} +interface Ai_Cf_Deepgram_Aura_2_Es_Input { + /** + * Speaker used to produce the audio. + */ + speaker?: "sirio" | "nestor" | "carina" | "celeste" | "alvaro" | "diana" | "aquila" | "selena" | "estrella" | "javier"; + /** + * Encoding of the output audio. + */ + encoding?: "linear16" | "flac" | "mulaw" | "alaw" | "mp3" | "opus" | "aac"; + /** + * Container specifies the file format wrapper for the output audio. The available options depend on the encoding type.. + */ + container?: "none" | "wav" | "ogg"; + /** + * The text content to be converted to speech + */ + text: string; + /** + * Sample Rate specifies the sample rate for the output audio. Based on the encoding, different sample rates are supported. For some encodings, the sample rate is not configurable + */ + sample_rate?: number; + /** + * The bitrate of the audio in bits per second. Choose from predefined ranges or specific values based on the encoding type. + */ + bit_rate?: number; +} +/** + * The generated audio in MP3 format + */ +type Ai_Cf_Deepgram_Aura_2_Es_Output = string; +declare abstract class Base_Ai_Cf_Deepgram_Aura_2_Es { + inputs: Ai_Cf_Deepgram_Aura_2_Es_Input; + postProcessedOutputs: Ai_Cf_Deepgram_Aura_2_Es_Output; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Dev_Input { + multipart: { + body?: object; + contentType?: string; + }; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Dev_Output { + /** + * Generated image as Base64 string. + */ + image?: string; +} +declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_2_Dev { + inputs: Ai_Cf_Black_Forest_Labs_Flux_2_Dev_Input; + postProcessedOutputs: Ai_Cf_Black_Forest_Labs_Flux_2_Dev_Output; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B_Input { + multipart: { + body?: object; + contentType?: string; + }; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B_Output { + /** + * Generated image as Base64 string. + */ + image?: string; +} +declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B { + inputs: Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B_Input; + postProcessedOutputs: Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B_Output; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B_Input { + multipart: { + body?: object; + contentType?: string; + }; +} +interface Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B_Output { + /** + * Generated image as Base64 string. + */ + image?: string; +} +declare abstract class Base_Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B { + inputs: Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B_Input; + postProcessedOutputs: Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B_Output; +} +declare abstract class Base_Ai_Cf_Zai_Org_Glm_4_7_Flash { + inputs: ChatCompletionsInput; + postProcessedOutputs: ChatCompletionsOutput; +} +declare abstract class Base_Ai_Cf_Moonshotai_Kimi_K2_5 { + inputs: ChatCompletionsInput; + postProcessedOutputs: ChatCompletionsOutput; +} +declare abstract class Base_Ai_Cf_Nvidia_Nemotron_3_120B_A12B { + inputs: ChatCompletionsInput; + postProcessedOutputs: ChatCompletionsOutput; +} +declare abstract class Base_Ai_Cf_Google_Gemma_4_26B_A4B_IT { + inputs: ChatCompletionsInput; + postProcessedOutputs: ChatCompletionsOutput; +} +interface AiModels { + "@cf/huggingface/distilbert-sst-2-int8": BaseAiTextClassification; + "@cf/stabilityai/stable-diffusion-xl-base-1.0": BaseAiTextToImage; + "@cf/runwayml/stable-diffusion-v1-5-inpainting": BaseAiTextToImage; + "@cf/runwayml/stable-diffusion-v1-5-img2img": BaseAiTextToImage; + "@cf/lykon/dreamshaper-8-lcm": BaseAiTextToImage; + "@cf/bytedance/stable-diffusion-xl-lightning": BaseAiTextToImage; + "@cf/myshell-ai/melotts": BaseAiTextToSpeech; + "@cf/google/embeddinggemma-300m": BaseAiTextEmbeddings; + "@cf/microsoft/resnet-50": BaseAiImageClassification; + "@cf/meta/llama-2-7b-chat-int8": BaseAiTextGeneration; + "@cf/mistral/mistral-7b-instruct-v0.1": BaseAiTextGeneration; + "@cf/meta/llama-2-7b-chat-fp16": BaseAiTextGeneration; + "@hf/thebloke/llama-2-13b-chat-awq": BaseAiTextGeneration; + "@hf/thebloke/mistral-7b-instruct-v0.1-awq": BaseAiTextGeneration; + "@hf/thebloke/zephyr-7b-beta-awq": BaseAiTextGeneration; + "@hf/thebloke/openhermes-2.5-mistral-7b-awq": BaseAiTextGeneration; + "@hf/thebloke/neural-chat-7b-v3-1-awq": BaseAiTextGeneration; + "@hf/thebloke/deepseek-coder-6.7b-base-awq": BaseAiTextGeneration; + "@hf/thebloke/deepseek-coder-6.7b-instruct-awq": BaseAiTextGeneration; + "@cf/deepseek-ai/deepseek-math-7b-instruct": BaseAiTextGeneration; + "@cf/defog/sqlcoder-7b-2": BaseAiTextGeneration; + "@cf/openchat/openchat-3.5-0106": BaseAiTextGeneration; + "@cf/tiiuae/falcon-7b-instruct": BaseAiTextGeneration; + "@cf/thebloke/discolm-german-7b-v1-awq": BaseAiTextGeneration; + "@cf/qwen/qwen1.5-0.5b-chat": BaseAiTextGeneration; + "@cf/qwen/qwen1.5-7b-chat-awq": BaseAiTextGeneration; + "@cf/qwen/qwen1.5-14b-chat-awq": BaseAiTextGeneration; + "@cf/tinyllama/tinyllama-1.1b-chat-v1.0": BaseAiTextGeneration; + "@cf/microsoft/phi-2": BaseAiTextGeneration; + "@cf/qwen/qwen1.5-1.8b-chat": BaseAiTextGeneration; + "@cf/mistral/mistral-7b-instruct-v0.2-lora": BaseAiTextGeneration; + "@hf/nousresearch/hermes-2-pro-mistral-7b": BaseAiTextGeneration; + "@hf/nexusflow/starling-lm-7b-beta": BaseAiTextGeneration; + "@hf/google/gemma-7b-it": BaseAiTextGeneration; + "@cf/meta-llama/llama-2-7b-chat-hf-lora": BaseAiTextGeneration; + "@cf/google/gemma-2b-it-lora": BaseAiTextGeneration; + "@cf/google/gemma-7b-it-lora": BaseAiTextGeneration; + "@hf/mistral/mistral-7b-instruct-v0.2": BaseAiTextGeneration; + "@cf/meta/llama-3-8b-instruct": BaseAiTextGeneration; + "@cf/fblgit/una-cybertron-7b-v2-bf16": BaseAiTextGeneration; + "@cf/meta/llama-3-8b-instruct-awq": BaseAiTextGeneration; + "@cf/meta/llama-3.1-8b-instruct-fp8": BaseAiTextGeneration; + "@cf/meta/llama-3.1-8b-instruct-awq": BaseAiTextGeneration; + "@cf/meta/llama-3.2-3b-instruct": BaseAiTextGeneration; + "@cf/meta/llama-3.2-1b-instruct": BaseAiTextGeneration; + "@cf/deepseek-ai/deepseek-r1-distill-qwen-32b": BaseAiTextGeneration; + "@cf/ibm-granite/granite-4.0-h-micro": BaseAiTextGeneration; + "@cf/facebook/bart-large-cnn": BaseAiSummarization; + "@cf/llava-hf/llava-1.5-7b-hf": BaseAiImageToText; + "@cf/baai/bge-base-en-v1.5": Base_Ai_Cf_Baai_Bge_Base_En_V1_5; + "@cf/openai/whisper": Base_Ai_Cf_Openai_Whisper; + "@cf/meta/m2m100-1.2b": Base_Ai_Cf_Meta_M2M100_1_2B; + "@cf/baai/bge-small-en-v1.5": Base_Ai_Cf_Baai_Bge_Small_En_V1_5; + "@cf/baai/bge-large-en-v1.5": Base_Ai_Cf_Baai_Bge_Large_En_V1_5; + "@cf/unum/uform-gen2-qwen-500m": Base_Ai_Cf_Unum_Uform_Gen2_Qwen_500M; + "@cf/openai/whisper-tiny-en": Base_Ai_Cf_Openai_Whisper_Tiny_En; + "@cf/openai/whisper-large-v3-turbo": Base_Ai_Cf_Openai_Whisper_Large_V3_Turbo; + "@cf/baai/bge-m3": Base_Ai_Cf_Baai_Bge_M3; + "@cf/black-forest-labs/flux-1-schnell": Base_Ai_Cf_Black_Forest_Labs_Flux_1_Schnell; + "@cf/meta/llama-3.2-11b-vision-instruct": Base_Ai_Cf_Meta_Llama_3_2_11B_Vision_Instruct; + "@cf/meta/llama-3.3-70b-instruct-fp8-fast": Base_Ai_Cf_Meta_Llama_3_3_70B_Instruct_Fp8_Fast; + "@cf/meta/llama-guard-3-8b": Base_Ai_Cf_Meta_Llama_Guard_3_8B; + "@cf/baai/bge-reranker-base": Base_Ai_Cf_Baai_Bge_Reranker_Base; + "@cf/qwen/qwen2.5-coder-32b-instruct": Base_Ai_Cf_Qwen_Qwen2_5_Coder_32B_Instruct; + "@cf/qwen/qwq-32b": Base_Ai_Cf_Qwen_Qwq_32B; + "@cf/mistralai/mistral-small-3.1-24b-instruct": Base_Ai_Cf_Mistralai_Mistral_Small_3_1_24B_Instruct; + "@cf/google/gemma-3-12b-it": Base_Ai_Cf_Google_Gemma_3_12B_It; + "@cf/meta/llama-4-scout-17b-16e-instruct": Base_Ai_Cf_Meta_Llama_4_Scout_17B_16E_Instruct; + "@cf/qwen/qwen3-30b-a3b-fp8": Base_Ai_Cf_Qwen_Qwen3_30B_A3B_Fp8; + "@cf/deepgram/nova-3": Base_Ai_Cf_Deepgram_Nova_3; + "@cf/qwen/qwen3-embedding-0.6b": Base_Ai_Cf_Qwen_Qwen3_Embedding_0_6B; + "@cf/pipecat-ai/smart-turn-v2": Base_Ai_Cf_Pipecat_Ai_Smart_Turn_V2; + "@cf/openai/gpt-oss-120b": Base_Ai_Cf_Openai_Gpt_Oss_120B; + "@cf/openai/gpt-oss-20b": Base_Ai_Cf_Openai_Gpt_Oss_20B; + "@cf/leonardo/phoenix-1.0": Base_Ai_Cf_Leonardo_Phoenix_1_0; + "@cf/leonardo/lucid-origin": Base_Ai_Cf_Leonardo_Lucid_Origin; + "@cf/deepgram/aura-1": Base_Ai_Cf_Deepgram_Aura_1; + "@cf/ai4bharat/indictrans2-en-indic-1B": Base_Ai_Cf_Ai4Bharat_Indictrans2_En_Indic_1B; + "@cf/aisingapore/gemma-sea-lion-v4-27b-it": Base_Ai_Cf_Aisingapore_Gemma_Sea_Lion_V4_27B_It; + "@cf/pfnet/plamo-embedding-1b": Base_Ai_Cf_Pfnet_Plamo_Embedding_1B; + "@cf/deepgram/flux": Base_Ai_Cf_Deepgram_Flux; + "@cf/deepgram/aura-2-en": Base_Ai_Cf_Deepgram_Aura_2_En; + "@cf/deepgram/aura-2-es": Base_Ai_Cf_Deepgram_Aura_2_Es; + "@cf/black-forest-labs/flux-2-dev": Base_Ai_Cf_Black_Forest_Labs_Flux_2_Dev; + "@cf/black-forest-labs/flux-2-klein-4b": Base_Ai_Cf_Black_Forest_Labs_Flux_2_Klein_4B; + "@cf/black-forest-labs/flux-2-klein-9b": Base_Ai_Cf_Black_Forest_Labs_Flux_2_Klein_9B; + "@cf/zai-org/glm-4.7-flash": Base_Ai_Cf_Zai_Org_Glm_4_7_Flash; + "@cf/moonshotai/kimi-k2.5": Base_Ai_Cf_Moonshotai_Kimi_K2_5; + "@cf/nvidia/nemotron-3-120b-a12b": Base_Ai_Cf_Nvidia_Nemotron_3_120B_A12B; +} +type AiOptions = { + /** + * Send requests as an asynchronous batch job, only works for supported models + * https://developers.cloudflare.com/workers-ai/features/batch-api + */ + queueRequest?: boolean; + /** + * Establish websocket connections, only works for supported models + */ + websocket?: boolean; + /** + * Tag your requests to group and view them in Cloudflare dashboard. + * + * Rules: + * Tags must only contain letters, numbers, and the symbols: : - . / @ + * Each tag can have maximum 50 characters. + * Maximum 5 tags are allowed each request. + * Duplicate tags will removed. + */ + tags?: string[]; + gateway?: GatewayOptions; + returnRawResponse?: boolean; + prefix?: string; + extraHeaders?: object; + signal?: AbortSignal; +}; +type AiModelsSearchParams = { + author?: string; + hide_experimental?: boolean; + page?: number; + per_page?: number; + search?: string; + source?: number; + task?: string; +}; +type AiModelsSearchObject = { + id: string; + source: number; + name: string; + description: string; + task: { + id: string; + name: string; + description: string; + }; + tags: string[]; + properties: { + property_id: string; + value: string; + }[]; +}; +type ChatCompletionsBase = XOR; +type ChatCompletionsInput = XOR; +interface InferenceUpstreamError extends Error { +} +interface AiInternalError extends Error { +} +type AiModelListType = Record; +type AiAsyncBatchResponse = { + request_id: string; +}; +declare abstract class Ai { + aiGatewayLogId: string | null; + gateway(gatewayId: string): AiGateway; + /** + * @deprecated Use the standalone `ai_search_namespaces` or `ai_search` Workers bindings instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + aiSearch(): AiSearchNamespace; + /** + * @deprecated AutoRAG has been replaced by AI Search. + * Use the standalone `ai_search_namespaces` or `ai_search` Workers bindings instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + * + * @param autoragId Instance ID + */ + autorag(autoragId: string): AutoRAG; + // Batch request + run(model: Name, inputs: { + requests: AiModelList[Name]['inputs'][]; + }, options: AiOptions & { + queueRequest: true; + }): Promise; + // Raw response + run(model: Name, inputs: AiModelList[Name]['inputs'], options: AiOptions & { + returnRawResponse: true; + }): Promise; + // WebSocket + run(model: Name, inputs: AiModelList[Name]['inputs'], options: AiOptions & { + websocket: true; + }): Promise; + // Streaming + run(model: Name, inputs: AiModelList[Name]['inputs'] & { + stream: true; + }, options?: AiOptions): Promise; + // Normal (default) - known model + run(model: Name, inputs: AiModelList[Name]['inputs'], options?: AiOptions): Promise; + // Unknown model (gateway fallback) + run(model: string & {}, inputs: Record, options?: AiOptions): Promise>; + models(params?: AiModelsSearchParams): Promise; + toMarkdown(): ToMarkdownService; + toMarkdown(files: MarkdownDocument[], options?: ConversionRequestOptions): Promise; + toMarkdown(files: MarkdownDocument, options?: ConversionRequestOptions): Promise; +} +type GatewayRetries = { + maxAttempts?: 1 | 2 | 3 | 4 | 5; + retryDelayMs?: number; + backoff?: 'constant' | 'linear' | 'exponential'; +}; +type GatewayOptions = { + id: string; + cacheKey?: string; + cacheTtl?: number; + skipCache?: boolean; + metadata?: Record; + collectLog?: boolean; + eventId?: string; + requestTimeoutMs?: number; + retries?: GatewayRetries; +}; +type UniversalGatewayOptions = Exclude & { + /** + ** @deprecated + */ + id?: string; +}; +type AiGatewayPatchLog = { + score?: number | null; + feedback?: -1 | 1 | null; + metadata?: Record | null; +}; +type AiGatewayLog = { + id: string; + provider: string; + model: string; + model_type?: string; + path: string; + duration: number; + request_type?: string; + request_content_type?: string; + status_code: number; + response_content_type?: string; + success: boolean; + cached: boolean; + tokens_in?: number; + tokens_out?: number; + metadata?: Record; + step?: number; + cost?: number; + custom_cost?: boolean; + request_size: number; + request_head?: string; + request_head_complete: boolean; + response_size: number; + response_head?: string; + response_head_complete: boolean; + created_at: Date; +}; +type AIGatewayProviders = 'workers-ai' | 'anthropic' | 'aws-bedrock' | 'azure-openai' | 'google-vertex-ai' | 'huggingface' | 'openai' | 'perplexity-ai' | 'replicate' | 'groq' | 'cohere' | 'google-ai-studio' | 'mistral' | 'grok' | 'openrouter' | 'deepseek' | 'cerebras' | 'cartesia' | 'elevenlabs' | 'adobe-firefly'; +type AIGatewayHeaders = { + 'cf-aig-metadata': Record | string; + 'cf-aig-custom-cost': { + per_token_in?: number; + per_token_out?: number; + } | { + total_cost?: number; + } | string; + 'cf-aig-cache-ttl': number | string; + 'cf-aig-skip-cache': boolean | string; + 'cf-aig-cache-key': string; + 'cf-aig-event-id': string; + 'cf-aig-request-timeout': number | string; + 'cf-aig-max-attempts': number | string; + 'cf-aig-retry-delay': number | string; + 'cf-aig-backoff': string; + 'cf-aig-collect-log': boolean | string; + Authorization: string; + 'Content-Type': string; + [key: string]: string | number | boolean | object; +}; +type AIGatewayUniversalRequest = { + provider: AIGatewayProviders | string; // eslint-disable-line + endpoint: string; + headers: Partial; + query: unknown; +}; +interface AiGatewayInternalError extends Error { +} +interface AiGatewayLogNotFound extends Error { +} +declare abstract class AiGateway { + patchLog(logId: string, data: AiGatewayPatchLog): Promise; + getLog(logId: string): Promise; + run(data: AIGatewayUniversalRequest | AIGatewayUniversalRequest[], options?: { + gateway?: UniversalGatewayOptions; + extraHeaders?: object; + signal?: AbortSignal; + }): Promise; + getUrl(provider?: AIGatewayProviders | string): Promise; // eslint-disable-line +} +// Copyright (c) 2022-2025 Cloudflare, Inc. +// Licensed under the Apache 2.0 license found in the LICENSE file or at: +// https://opensource.org/licenses/Apache-2.0 +/** + * Artifacts — Git-compatible file storage on Cloudflare Workers. + * + * Provides programmatic access to create, manage, and fork repositories, + * and to issue and revoke scoped access tokens. + */ +/** Information about a repository. */ +interface ArtifactsRepoInfo { + /** Unique repository ID. */ + id: string; + /** Repository name. */ + name: string; + /** Repository description, or null if not set. */ + description: string | null; + /** Default branch name (e.g. "main"). */ + defaultBranch: string; + /** ISO 8601 creation timestamp. */ + createdAt: string; + /** ISO 8601 last-updated timestamp. */ + updatedAt: string; + /** ISO 8601 timestamp of the last push, or null if never pushed. */ + lastPushAt: string | null; + /** Fork source (e.g. "github:owner/repo", "artifacts:namespace/repo"), or null if not a fork. */ + source: string | null; + /** Whether the repository is read-only. */ + readOnly: boolean; + /** HTTPS git remote URL. */ + remote: string; +} +/** Result of creating a repository — includes the initial access token. */ +interface ArtifactsCreateRepoResult { + /** Unique repository ID. */ + id: string; + /** Repository name. */ + name: string; + /** Repository description, or null if not set. */ + description: string | null; + /** Default branch name. */ + defaultBranch: string; + /** HTTPS git remote URL. */ + remote: string; + /** Plaintext access token (only returned at creation time). */ + token: string; + /** ISO 8601 token expiry timestamp. */ + tokenExpiresAt: string; +} +/** Paginated list of repositories. */ +interface ArtifactsRepoListResult { + /** Repositories in this page (without the `remote` field). */ + repos: Omit[]; + /** Total number of repositories in the namespace. */ + total: number; + /** Cursor for the next page, if there are more results. */ + cursor?: string; +} +/** Result of creating an access token. */ +interface ArtifactsCreateTokenResult { + /** Unique token ID. */ + id: string; + /** Plaintext token (only returned at creation time). */ + plaintext: string; + /** Token scope: "read" or "write". */ + scope: 'read' | 'write'; + /** ISO 8601 token expiry timestamp. */ + expiresAt: string; +} +/** Token metadata (no plaintext). */ +interface ArtifactsTokenInfo { + /** Unique token ID. */ + id: string; + /** Token scope: "read" or "write". */ + scope: 'read' | 'write'; + /** Token state: "active", "expired", or "revoked". */ + state: 'active' | 'expired' | 'revoked'; + /** ISO 8601 creation timestamp. */ + createdAt: string; + /** ISO 8601 expiry timestamp. */ + expiresAt: string; +} +/** Paginated list of tokens for a repository. */ +interface ArtifactsTokenListResult { + /** Tokens in this page. */ + tokens: ArtifactsTokenInfo[]; + /** Total number of tokens for the repository. */ + total: number; +} +/** Handle for a single repository. Returned by Artifacts.get(). */ +interface ArtifactsRepo extends ArtifactsRepoInfo { + /** + * Create an access token for this repo. + * @param scope Token scope: "write" (default) or "read". + * @param ttl Time-to-live in seconds (default 86400, min 60, max 31536000). + */ + createToken(scope?: 'write' | 'read', ttl?: number): Promise; + /** List tokens for this repo (metadata only, no plaintext). */ + listTokens(): Promise; + /** + * Revoke a token by plaintext or ID. + * @param tokenOrId Plaintext token or token ID. + * @returns true if revoked, false if not found. + */ + revokeToken(tokenOrId: string): Promise; + // ── Fork ── + /** + * Fork this repo to a new repo. + * @param name Target repository name. + * @param opts Optional: description, readOnly flag, defaultBranchOnly (default true). + */ + fork(name: string, opts?: { + description?: string; + readOnly?: boolean; + defaultBranchOnly?: boolean; + }): Promise; +} +/** Artifacts binding — namespace-level operations. */ +interface Artifacts { + /** + * Create a new repository with an initial access token. + * @param name Repository name (alphanumeric, dots, hyphens, underscores). + * @param opts Optional: readOnly flag, description, default branch name. + * @returns Repo metadata with initial token. + */ + create(name: string, opts?: { + readOnly?: boolean; + description?: string; + setDefaultBranch?: string; + }): Promise; + /** + * Get a handle to an existing repository. + * @param name Repository name. + * @returns Repo handle. + */ + get(name: string): Promise; + /** + * Import a repository from an external git remote. + * @param params Source URL and optional branch/depth, plus target name and options. + * @returns Repo metadata with initial token. + */ + import(params: { + source: { + url: string; + branch?: string; + depth?: number; + }; + target: { + name: string; + opts?: { + description?: string; + readOnly?: boolean; + }; + }; + }): Promise; + /** + * List repositories with cursor-based pagination. + * @param opts Optional: limit (1–200, default 50), cursor for next page. + */ + list(opts?: { + limit?: number; + cursor?: string; + }): Promise; + /** + * Delete a repository and all associated tokens. + * @param name Repository name. + * @returns true if deleted, false if not found. + */ + delete(name: string): Promise; +} +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +interface AutoRAGInternalError extends Error { +} +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +interface AutoRAGNotFoundError extends Error { +} +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +interface AutoRAGUnauthorizedError extends Error { +} +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +interface AutoRAGNameNotSetError extends Error { +} +type ComparisonFilter = { + key: string; + type: 'eq' | 'ne' | 'gt' | 'gte' | 'lt' | 'lte'; + value: string | number | boolean; +}; +type CompoundFilter = { + type: 'and' | 'or'; + filters: ComparisonFilter[]; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagSearchRequest = { + query: string; + filters?: CompoundFilter | ComparisonFilter; + max_num_results?: number; + ranking_options?: { + ranker?: string; + score_threshold?: number; + }; + reranking?: { + enabled?: boolean; + model?: string; + }; + rewrite_query?: boolean; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagAiSearchRequest = AutoRagSearchRequest & { + stream?: boolean; + system_prompt?: string; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagAiSearchRequestStreaming = Omit & { + stream: true; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagSearchResponse = { + object: 'vector_store.search_results.page'; + search_query: string; + data: { + file_id: string; + filename: string; + score: number; + attributes: Record; + content: { + type: 'text'; + text: string; + }[]; + }[]; + has_more: boolean; + next_page: string | null; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagListResponse = { + id: string; + enable: boolean; + type: string; + source: string; + vectorize_name: string; + paused: boolean; + status: string; +}[]; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +type AutoRagAiSearchResponse = AutoRagSearchResponse & { + response: string; +}; +/** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ +declare abstract class AutoRAG { + /** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + list(): Promise; + /** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + search(params: AutoRagSearchRequest): Promise; + /** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + aiSearch(params: AutoRagAiSearchRequestStreaming): Promise; + /** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + aiSearch(params: AutoRagAiSearchRequest): Promise; + /** + * @deprecated Use the standalone AI Search Workers binding instead. + * See https://developers.cloudflare.com/ai-search/usage/workers-binding/ + */ + aiSearch(params: AutoRagAiSearchRequest): Promise; +} +interface BasicImageTransformations { + /** + * Maximum width in image pixels. The value must be an integer. + */ + width?: number; + /** + * Maximum height in image pixels. The value must be an integer. + */ + height?: number; + /** + * Resizing mode as a string. It affects interpretation of width and height + * options: + * - scale-down: Similar to contain, but the image is never enlarged. If + * the image is larger than given width or height, it will be resized. + * Otherwise its original size will be kept. + * - contain: Resizes to maximum size that fits within the given width and + * height. If only a single dimension is given (e.g. only width), the + * image will be shrunk or enlarged to exactly match that dimension. + * Aspect ratio is always preserved. + * - cover: Resizes (shrinks or enlarges) to fill the entire area of width + * and height. If the image has an aspect ratio different from the ratio + * of width and height, it will be cropped to fit. + * - crop: The image will be shrunk and cropped to fit within the area + * specified by width and height. The image will not be enlarged. For images + * smaller than the given dimensions it's the same as scale-down. For + * images larger than the given dimensions, it's the same as cover. + * See also trim. + * - pad: Resizes to the maximum size that fits within the given width and + * height, and then fills the remaining area with a background color + * (white by default). Use of this mode is not recommended, as the same + * effect can be more efficiently achieved with the contain mode and the + * CSS object-fit: contain property. + * - squeeze: Stretches and deforms to the width and height given, even if it + * breaks aspect ratio + */ + fit?: "scale-down" | "contain" | "cover" | "crop" | "pad" | "squeeze"; + /** + * Image segmentation using artificial intelligence models. Sets pixels not + * within selected segment area to transparent e.g "foreground" sets every + * background pixel as transparent. + */ + segment?: "foreground"; + /** + * When cropping with fit: "cover", this defines the side or point that should + * be left uncropped. The value is either a string + * "left", "right", "top", "bottom", "auto", or "center" (the default), + * or an object {x, y} containing focal point coordinates in the original + * image expressed as fractions ranging from 0.0 (top or left) to 1.0 + * (bottom or right), 0.5 being the center. {fit: "cover", gravity: "top"} will + * crop bottom or left and right sides as necessary, but won’t crop anything + * from the top. {fit: "cover", gravity: {x:0.5, y:0.2}} will crop each side to + * preserve as much as possible around a point at 20% of the height of the + * source image. + */ + gravity?: 'face' | 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | BasicImageTransformationsGravityCoordinates; + /** + * Background color to add underneath the image. Applies only to images with + * transparency (such as PNG). Accepts any CSS color (#RRGGBB, rgba(…), + * hsl(…), etc.) + */ + background?: string; + /** + * Number of degrees (90, 180, 270) to rotate the image by. width and height + * options refer to axes after rotation. + */ + rotate?: 0 | 90 | 180 | 270 | 360; +} +interface BasicImageTransformationsGravityCoordinates { + x?: number; + y?: number; + mode?: 'remainder' | 'box-center'; +} +/** + * In addition to the properties you can set in the RequestInit dict + * that you pass as an argument to the Request constructor, you can + * set certain properties of a `cf` object to control how Cloudflare + * features are applied to that new Request. + * + * Note: Currently, these properties cannot be tested in the + * playground. + */ +interface RequestInitCfProperties extends Record { + cacheEverything?: boolean; + /** + * A request's cache key is what determines if two requests are + * "the same" for caching purposes. If a request has the same cache key + * as some previous request, then we can serve the same cached response for + * both. (e.g. 'some-key') + * + * Only available for Enterprise customers. + */ + cacheKey?: string; + /** + * This allows you to append additional Cache-Tag response headers + * to the origin response without modifications to the origin server. + * This will allow for greater control over the Purge by Cache Tag feature + * utilizing changes only in the Workers process. + * + * Only available for Enterprise customers. + */ + cacheTags?: string[]; + /** + * Force response to be cached for a given number of seconds. (e.g. 300) + */ + cacheTtl?: number; + /** + * Force response to be cached for a given number of seconds based on the Origin status code. + * (e.g. { '200-299': 86400, '404': 1, '500-599': 0 }) + */ + cacheTtlByStatus?: Record; + /** + * Explicit Cache-Control header value to set on the response stored in cache. + * This gives full control over cache directives (e.g. 'public, max-age=3600, s-maxage=86400'). + * + * Cannot be used together with `cacheTtl` or the `cache` request option (`no-store`/`no-cache`), + * as these are mutually exclusive cache control mechanisms. Setting both will throw a TypeError. + * + * Can be used together with `cacheTtlByStatus`. + */ + cacheControl?: string; + /** + * Whether the response should be eligible for Cache Reserve storage. + */ + cacheReserveEligible?: boolean; + /** + * Whether to respect strong ETags (as opposed to weak ETags) from the origin. + */ + respectStrongEtag?: boolean; + /** + * Whether to strip ETag headers from the origin response before caching. + */ + stripEtags?: boolean; + /** + * Whether to strip Last-Modified headers from the origin response before caching. + */ + stripLastModified?: boolean; + /** + * Whether to enable Cache Deception Armor, which protects against web cache + * deception attacks by verifying the Content-Type matches the URL extension. + */ + cacheDeceptionArmor?: boolean; + /** + * Minimum file size in bytes for a response to be eligible for Cache Reserve storage. + */ + cacheReserveMinimumFileSize?: number; + scrapeShield?: boolean; + apps?: boolean; + image?: RequestInitCfPropertiesImage; + minify?: RequestInitCfPropertiesImageMinify; + mirage?: boolean; + polish?: "lossy" | "lossless" | "off"; + r2?: RequestInitCfPropertiesR2; + /** + * Redirects the request to an alternate origin server. You can use this, + * for example, to implement load balancing across several origins. + * (e.g.us-east.example.com) + * + * Note - For security reasons, the hostname set in resolveOverride must + * be proxied on the same Cloudflare zone of the incoming request. + * Otherwise, the setting is ignored. CNAME hosts are allowed, so to + * resolve to a host under a different domain or a DNS only domain first + * declare a CNAME record within your own zone’s DNS mapping to the + * external hostname, set proxy on Cloudflare, then set resolveOverride + * to point to that CNAME record. + */ + resolveOverride?: string; +} +interface RequestInitCfPropertiesImageDraw extends BasicImageTransformations { + /** + * Absolute URL of the image file to use for the drawing. It can be any of + * the supported file formats. For drawing of watermarks or non-rectangular + * overlays we recommend using PNG or WebP images. + */ + url: string; + /** + * Floating-point number between 0 (transparent) and 1 (opaque). + * For example, opacity: 0.5 makes overlay semitransparent. + */ + opacity?: number; + /** + * - If set to true, the overlay image will be tiled to cover the entire + * area. This is useful for stock-photo-like watermarks. + * - If set to "x", the overlay image will be tiled horizontally only + * (form a line). + * - If set to "y", the overlay image will be tiled vertically only + * (form a line). + */ + repeat?: true | "x" | "y"; + /** + * Position of the overlay image relative to a given edge. Each property is + * an offset in pixels. 0 aligns exactly to the edge. For example, left: 10 + * positions left side of the overlay 10 pixels from the left edge of the + * image it's drawn over. bottom: 0 aligns bottom of the overlay with bottom + * of the background image. + * + * Setting both left & right, or both top & bottom is an error. + * + * If no position is specified, the image will be centered. + */ + top?: number; + left?: number; + bottom?: number; + right?: number; +} +interface RequestInitCfPropertiesImage extends BasicImageTransformations { + /** + * Device Pixel Ratio. Default 1. Multiplier for width/height that makes it + * easier to specify higher-DPI sizes in . + */ + dpr?: number; + /** + * Allows you to trim your image. Takes dpr into account and is performed before + * resizing or rotation. + * + * It can be used as: + * - left, top, right, bottom - it will specify the number of pixels to cut + * off each side + * - width, height - the width/height you'd like to end up with - can be used + * in combination with the properties above + * - border - this will automatically trim the surroundings of an image based on + * it's color. It consists of three properties: + * - color: rgb or hex representation of the color you wish to trim (todo: verify the rgba bit) + * - tolerance: difference from color to treat as color + * - keep: the number of pixels of border to keep + */ + trim?: "border" | { + top?: number; + bottom?: number; + left?: number; + right?: number; + width?: number; + height?: number; + border?: boolean | { + color?: string; + tolerance?: number; + keep?: number; + }; + }; + /** + * Quality setting from 1-100 (useful values are in 60-90 range). Lower values + * make images look worse, but load faster. The default is 85. It applies only + * to JPEG and WebP images. It doesn’t have any effect on PNG. + */ + quality?: number | "low" | "medium-low" | "medium-high" | "high"; + /** + * Output format to generate. It can be: + * - avif: generate images in AVIF format. + * - webp: generate images in Google WebP format. Set quality to 100 to get + * the WebP-lossless format. + * - json: instead of generating an image, outputs information about the + * image, in JSON format. The JSON object will contain image size + * (before and after resizing), source image’s MIME type, file size, etc. + * - jpeg: generate images in JPEG format. + * - png: generate images in PNG format. + */ + format?: "avif" | "webp" | "json" | "jpeg" | "png" | "baseline-jpeg" | "png-force" | "svg"; + /** + * Whether to preserve animation frames from input files. Default is true. + * Setting it to false reduces animations to still images. This setting is + * recommended when enlarging images or processing arbitrary user content, + * because large GIF animations can weigh tens or even hundreds of megabytes. + * It is also useful to set anim:false when using format:"json" to get the + * response quicker without the number of frames. + */ + anim?: boolean; + /** + * What EXIF data should be preserved in the output image. Note that EXIF + * rotation and embedded color profiles are always applied ("baked in" into + * the image), and aren't affected by this option. Note that if the Polish + * feature is enabled, all metadata may have been removed already and this + * option may have no effect. + * - keep: Preserve most of EXIF metadata, including GPS location if there's + * any. + * - copyright: Only keep the copyright tag, and discard everything else. + * This is the default behavior for JPEG files. + * - none: Discard all invisible EXIF metadata. Currently WebP and PNG + * output formats always discard metadata. + */ + metadata?: "keep" | "copyright" | "none"; + /** + * Strength of sharpening filter to apply to the image. Floating-point + * number between 0 (no sharpening, default) and 10 (maximum). 1.0 is a + * recommended value for downscaled images. + */ + sharpen?: number; + /** + * Radius of a blur filter (approximate gaussian). Maximum supported radius + * is 250. + */ + blur?: number; + /** + * Overlays are drawn in the order they appear in the array (last array + * entry is the topmost layer). + */ + draw?: RequestInitCfPropertiesImageDraw[]; + /** + * Fetching image from authenticated origin. Setting this property will + * pass authentication headers (Authorization, Cookie, etc.) through to + * the origin. + */ + "origin-auth"?: "share-publicly"; + /** + * Adds a border around the image. The border is added after resizing. Border + * width takes dpr into account, and can be specified either using a single + * width property, or individually for each side. + */ + border?: { + color: string; + width: number; + } | { + color: string; + top: number; + right: number; + bottom: number; + left: number; + }; + /** + * Increase brightness by a factor. A value of 1.0 equals no change, a value + * of 0.5 equals half brightness, and a value of 2.0 equals twice as bright. + * 0 is ignored. + */ + brightness?: number; + /** + * Increase contrast by a factor. A value of 1.0 equals no change, a value of + * 0.5 equals low contrast, and a value of 2.0 equals high contrast. 0 is + * ignored. + */ + contrast?: number; + /** + * Increase exposure by a factor. A value of 1.0 equals no change, a value of + * 0.5 darkens the image, and a value of 2.0 lightens the image. 0 is ignored. + */ + gamma?: number; + /** + * Increase contrast by a factor. A value of 1.0 equals no change, a value of + * 0.5 equals low contrast, and a value of 2.0 equals high contrast. 0 is + * ignored. + */ + saturation?: number; + /** + * Flips the images horizontally, vertically, or both. Flipping is applied before + * rotation, so if you apply flip=h,rotate=90 then the image will be flipped + * horizontally, then rotated by 90 degrees. + */ + flip?: 'h' | 'v' | 'hv'; + /** + * Slightly reduces latency on a cache miss by selecting a + * quickest-to-compress file format, at a cost of increased file size and + * lower image quality. It will usually override the format option and choose + * JPEG over WebP or AVIF. We do not recommend using this option, except in + * unusual circumstances like resizing uncacheable dynamically-generated + * images. + */ + compression?: "fast"; +} +interface RequestInitCfPropertiesImageMinify { + javascript?: boolean; + css?: boolean; + html?: boolean; +} +interface RequestInitCfPropertiesR2 { + /** + * Colo id of bucket that an object is stored in + */ + bucketColoId?: number; +} +/** + * Request metadata provided by Cloudflare's edge. + */ +type IncomingRequestCfProperties = IncomingRequestCfPropertiesBase & IncomingRequestCfPropertiesBotManagementEnterprise & IncomingRequestCfPropertiesCloudflareForSaaSEnterprise & IncomingRequestCfPropertiesGeographicInformation & IncomingRequestCfPropertiesCloudflareAccessOrApiShield; +interface IncomingRequestCfPropertiesBase extends Record { + /** + * [ASN](https://www.iana.org/assignments/as-numbers/as-numbers.xhtml) of the incoming request. + * + * @example 395747 + */ + asn?: number; + /** + * The organization which owns the ASN of the incoming request. + * + * @example "Google Cloud" + */ + asOrganization?: string; + /** + * The original value of the `Accept-Encoding` header if Cloudflare modified it. + * + * @example "gzip, deflate, br" + */ + clientAcceptEncoding?: string; + /** + * The number of milliseconds it took for the request to reach your worker. + * + * @example 22 + */ + clientTcpRtt?: number; + /** + * The three-letter [IATA](https://en.wikipedia.org/wiki/IATA_airport_code) + * airport code of the data center that the request hit. + * + * @example "DFW" + */ + colo: string; + /** + * Represents the upstream's response to a + * [TCP `keepalive` message](https://tldp.org/HOWTO/TCP-Keepalive-HOWTO/overview.html) + * from cloudflare. + * + * For workers with no upstream, this will always be `1`. + * + * @example 3 + */ + edgeRequestKeepAliveStatus: IncomingRequestCfPropertiesEdgeRequestKeepAliveStatus; + /** + * The HTTP Protocol the request used. + * + * @example "HTTP/2" + */ + httpProtocol: string; + /** + * The browser-requested prioritization information in the request object. + * + * If no information was set, defaults to the empty string `""` + * + * @example "weight=192;exclusive=0;group=3;group-weight=127" + * @default "" + */ + requestPriority: string; + /** + * The TLS version of the connection to Cloudflare. + * In requests served over plaintext (without TLS), this property is the empty string `""`. + * + * @example "TLSv1.3" + */ + tlsVersion: string; + /** + * The cipher for the connection to Cloudflare. + * In requests served over plaintext (without TLS), this property is the empty string `""`. + * + * @example "AEAD-AES128-GCM-SHA256" + */ + tlsCipher: string; + /** + * Metadata containing the [`HELLO`](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.1.2) and [`FINISHED`](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.9) messages from this request's TLS handshake. + * + * If the incoming request was served over plaintext (without TLS) this field is undefined. + */ + tlsExportedAuthenticator?: IncomingRequestCfPropertiesExportedAuthenticatorMetadata; +} +interface IncomingRequestCfPropertiesBotManagementBase { + /** + * Cloudflare’s [level of certainty](https://developers.cloudflare.com/bots/concepts/bot-score/) that a request comes from a bot, + * represented as an integer percentage between `1` (almost certainly a bot) and `99` (almost certainly human). + * + * @example 54 + */ + score: number; + /** + * A boolean value that is true if the request comes from a good bot, like Google or Bing. + * Most customers choose to allow this traffic. For more details, see [Traffic from known bots](https://developers.cloudflare.com/firewall/known-issues-and-faq/#how-does-firewall-rules-handle-traffic-from-known-bots). + */ + verifiedBot: boolean; + /** + * A boolean value that is true if the request originates from a + * Cloudflare-verified proxy service. + */ + corporateProxy: boolean; + /** + * A boolean value that's true if the request matches [file extensions](https://developers.cloudflare.com/bots/reference/static-resources/) for many types of static resources. + */ + staticResource: boolean; + /** + * List of IDs that correlate to the Bot Management heuristic detections made on a request (you can have multiple heuristic detections on the same request). + */ + detectionIds: number[]; +} +interface IncomingRequestCfPropertiesBotManagement { + /** + * Results of Cloudflare's Bot Management analysis + */ + botManagement: IncomingRequestCfPropertiesBotManagementBase; + /** + * Duplicate of `botManagement.score`. + * + * @deprecated + */ + clientTrustScore: number; +} +interface IncomingRequestCfPropertiesBotManagementEnterprise extends IncomingRequestCfPropertiesBotManagement { + /** + * Results of Cloudflare's Bot Management analysis + */ + botManagement: IncomingRequestCfPropertiesBotManagementBase & { + /** + * A [JA3 Fingerprint](https://developers.cloudflare.com/bots/concepts/ja3-fingerprint/) to help profile specific SSL/TLS clients + * across different destination IPs, Ports, and X509 certificates. + */ + ja3Hash: string; + }; +} +interface IncomingRequestCfPropertiesCloudflareForSaaSEnterprise { + /** + * Custom metadata set per-host in [Cloudflare for SaaS](https://developers.cloudflare.com/cloudflare-for-platforms/cloudflare-for-saas/). + * + * This field is only present if you have Cloudflare for SaaS enabled on your account + * and you have followed the [required steps to enable it]((https://developers.cloudflare.com/cloudflare-for-platforms/cloudflare-for-saas/domain-support/custom-metadata/)). + */ + hostMetadata?: HostMetadata; +} +interface IncomingRequestCfPropertiesCloudflareAccessOrApiShield { + /** + * Information about the client certificate presented to Cloudflare. + * + * This is populated when the incoming request is served over TLS using + * either Cloudflare Access or API Shield (mTLS) + * and the presented SSL certificate has a valid + * [Certificate Serial Number](https://ldapwiki.com/wiki/Certificate%20Serial%20Number) + * (i.e., not `null` or `""`). + * + * Otherwise, a set of placeholder values are used. + * + * The property `certPresented` will be set to `"1"` when + * the object is populated (i.e. the above conditions were met). + */ + tlsClientAuth: IncomingRequestCfPropertiesTLSClientAuth | IncomingRequestCfPropertiesTLSClientAuthPlaceholder; +} +/** + * Metadata about the request's TLS handshake + */ +interface IncomingRequestCfPropertiesExportedAuthenticatorMetadata { + /** + * The client's [`HELLO` message](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.1.2), encoded in hexadecimal + * + * @example "44372ba35fa1270921d318f34c12f155dc87b682cf36a790cfaa3ba8737a1b5d" + */ + clientHandshake: string; + /** + * The server's [`HELLO` message](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.1.2), encoded in hexadecimal + * + * @example "44372ba35fa1270921d318f34c12f155dc87b682cf36a790cfaa3ba8737a1b5d" + */ + serverHandshake: string; + /** + * The client's [`FINISHED` message](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.9), encoded in hexadecimal + * + * @example "084ee802fe1348f688220e2a6040a05b2199a761f33cf753abb1b006792d3f8b" + */ + clientFinished: string; + /** + * The server's [`FINISHED` message](https://www.rfc-editor.org/rfc/rfc5246#section-7.4.9), encoded in hexadecimal + * + * @example "084ee802fe1348f688220e2a6040a05b2199a761f33cf753abb1b006792d3f8b" + */ + serverFinished: string; +} +/** + * Geographic data about the request's origin. + */ +interface IncomingRequestCfPropertiesGeographicInformation { + /** + * The [ISO 3166-1 Alpha 2](https://www.iso.org/iso-3166-country-codes.html) country code the request originated from. + * + * If your worker is [configured to accept TOR connections](https://support.cloudflare.com/hc/en-us/articles/203306930-Understanding-Cloudflare-Tor-support-and-Onion-Routing), this may also be `"T1"`, indicating a request that originated over TOR. + * + * If Cloudflare is unable to determine where the request originated this property is omitted. + * + * The country code `"T1"` is used for requests originating on TOR. + * + * @example "GB" + */ + country?: Iso3166Alpha2Code | "T1"; + /** + * If present, this property indicates that the request originated in the EU + * + * @example "1" + */ + isEUCountry?: "1"; + /** + * A two-letter code indicating the continent the request originated from. + * + * @example "AN" + */ + continent?: ContinentCode; + /** + * The city the request originated from + * + * @example "Austin" + */ + city?: string; + /** + * Postal code of the incoming request + * + * @example "78701" + */ + postalCode?: string; + /** + * Latitude of the incoming request + * + * @example "30.27130" + */ + latitude?: string; + /** + * Longitude of the incoming request + * + * @example "-97.74260" + */ + longitude?: string; + /** + * Timezone of the incoming request + * + * @example "America/Chicago" + */ + timezone?: string; + /** + * If known, the ISO 3166-2 name for the first level region associated with + * the IP address of the incoming request + * + * @example "Texas" + */ + region?: string; + /** + * If known, the ISO 3166-2 code for the first-level region associated with + * the IP address of the incoming request + * + * @example "TX" + */ + regionCode?: string; + /** + * Metro code (DMA) of the incoming request + * + * @example "635" + */ + metroCode?: string; +} +/** Data about the incoming request's TLS certificate */ +interface IncomingRequestCfPropertiesTLSClientAuth { + /** Always `"1"`, indicating that the certificate was presented */ + certPresented: "1"; + /** + * Result of certificate verification. + * + * @example "FAILED:self signed certificate" + */ + certVerified: Exclude; + /** The presented certificate's revokation status. + * + * - A value of `"1"` indicates the certificate has been revoked + * - A value of `"0"` indicates the certificate has not been revoked + */ + certRevoked: "1" | "0"; + /** + * The certificate issuer's [distinguished name](https://knowledge.digicert.com/generalinformation/INFO1745.html) + * + * @example "CN=cloudflareaccess.com, C=US, ST=Texas, L=Austin, O=Cloudflare" + */ + certIssuerDN: string; + /** + * The certificate subject's [distinguished name](https://knowledge.digicert.com/generalinformation/INFO1745.html) + * + * @example "CN=*.cloudflareaccess.com, C=US, ST=Texas, L=Austin, O=Cloudflare" + */ + certSubjectDN: string; + /** + * The certificate issuer's [distinguished name](https://knowledge.digicert.com/generalinformation/INFO1745.html) ([RFC 2253](https://www.rfc-editor.org/rfc/rfc2253.html) formatted) + * + * @example "CN=cloudflareaccess.com, C=US, ST=Texas, L=Austin, O=Cloudflare" + */ + certIssuerDNRFC2253: string; + /** + * The certificate subject's [distinguished name](https://knowledge.digicert.com/generalinformation/INFO1745.html) ([RFC 2253](https://www.rfc-editor.org/rfc/rfc2253.html) formatted) + * + * @example "CN=*.cloudflareaccess.com, C=US, ST=Texas, L=Austin, O=Cloudflare" + */ + certSubjectDNRFC2253: string; + /** The certificate issuer's distinguished name (legacy policies) */ + certIssuerDNLegacy: string; + /** The certificate subject's distinguished name (legacy policies) */ + certSubjectDNLegacy: string; + /** + * The certificate's serial number + * + * @example "00936EACBE07F201DF" + */ + certSerial: string; + /** + * The certificate issuer's serial number + * + * @example "2489002934BDFEA34" + */ + certIssuerSerial: string; + /** + * The certificate's Subject Key Identifier + * + * @example "BB:AF:7E:02:3D:FA:A6:F1:3C:84:8E:AD:EE:38:98:EC:D9:32:32:D4" + */ + certSKI: string; + /** + * The certificate issuer's Subject Key Identifier + * + * @example "BB:AF:7E:02:3D:FA:A6:F1:3C:84:8E:AD:EE:38:98:EC:D9:32:32:D4" + */ + certIssuerSKI: string; + /** + * The certificate's SHA-1 fingerprint + * + * @example "6b9109f323999e52259cda7373ff0b4d26bd232e" + */ + certFingerprintSHA1: string; + /** + * The certificate's SHA-256 fingerprint + * + * @example "acf77cf37b4156a2708e34c4eb755f9b5dbbe5ebb55adfec8f11493438d19e6ad3f157f81fa3b98278453d5652b0c1fd1d71e5695ae4d709803a4d3f39de9dea" + */ + certFingerprintSHA256: string; + /** + * The effective starting date of the certificate + * + * @example "Dec 22 19:39:00 2018 GMT" + */ + certNotBefore: string; + /** + * The effective expiration date of the certificate + * + * @example "Dec 22 19:39:00 2018 GMT" + */ + certNotAfter: string; +} +/** Placeholder values for TLS Client Authorization */ +interface IncomingRequestCfPropertiesTLSClientAuthPlaceholder { + certPresented: "0"; + certVerified: "NONE"; + certRevoked: "0"; + certIssuerDN: ""; + certSubjectDN: ""; + certIssuerDNRFC2253: ""; + certSubjectDNRFC2253: ""; + certIssuerDNLegacy: ""; + certSubjectDNLegacy: ""; + certSerial: ""; + certIssuerSerial: ""; + certSKI: ""; + certIssuerSKI: ""; + certFingerprintSHA1: ""; + certFingerprintSHA256: ""; + certNotBefore: ""; + certNotAfter: ""; +} +/** Possible outcomes of TLS verification */ +declare type CertVerificationStatus = +/** Authentication succeeded */ +"SUCCESS" +/** No certificate was presented */ + | "NONE" +/** Failed because the certificate was self-signed */ + | "FAILED:self signed certificate" +/** Failed because the certificate failed a trust chain check */ + | "FAILED:unable to verify the first certificate" +/** Failed because the certificate not yet valid */ + | "FAILED:certificate is not yet valid" +/** Failed because the certificate is expired */ + | "FAILED:certificate has expired" +/** Failed for another unspecified reason */ + | "FAILED"; +/** + * An upstream endpoint's response to a TCP `keepalive` message from Cloudflare. + */ +declare type IncomingRequestCfPropertiesEdgeRequestKeepAliveStatus = 0 /** Unknown */ | 1 /** no keepalives (not found) */ | 2 /** no connection re-use, opening keepalive connection failed */ | 3 /** no connection re-use, keepalive accepted and saved */ | 4 /** connection re-use, refused by the origin server (`TCP FIN`) */ | 5; /** connection re-use, accepted by the origin server */ +/** ISO 3166-1 Alpha-2 codes */ +declare type Iso3166Alpha2Code = "AD" | "AE" | "AF" | "AG" | "AI" | "AL" | "AM" | "AO" | "AQ" | "AR" | "AS" | "AT" | "AU" | "AW" | "AX" | "AZ" | "BA" | "BB" | "BD" | "BE" | "BF" | "BG" | "BH" | "BI" | "BJ" | "BL" | "BM" | "BN" | "BO" | "BQ" | "BR" | "BS" | "BT" | "BV" | "BW" | "BY" | "BZ" | "CA" | "CC" | "CD" | "CF" | "CG" | "CH" | "CI" | "CK" | "CL" | "CM" | "CN" | "CO" | "CR" | "CU" | "CV" | "CW" | "CX" | "CY" | "CZ" | "DE" | "DJ" | "DK" | "DM" | "DO" | "DZ" | "EC" | "EE" | "EG" | "EH" | "ER" | "ES" | "ET" | "FI" | "FJ" | "FK" | "FM" | "FO" | "FR" | "GA" | "GB" | "GD" | "GE" | "GF" | "GG" | "GH" | "GI" | "GL" | "GM" | "GN" | "GP" | "GQ" | "GR" | "GS" | "GT" | "GU" | "GW" | "GY" | "HK" | "HM" | "HN" | "HR" | "HT" | "HU" | "ID" | "IE" | "IL" | "IM" | "IN" | "IO" | "IQ" | "IR" | "IS" | "IT" | "JE" | "JM" | "JO" | "JP" | "KE" | "KG" | "KH" | "KI" | "KM" | "KN" | "KP" | "KR" | "KW" | "KY" | "KZ" | "LA" | "LB" | "LC" | "LI" | "LK" | "LR" | "LS" | "LT" | "LU" | "LV" | "LY" | "MA" | "MC" | "MD" | "ME" | "MF" | "MG" | "MH" | "MK" | "ML" | "MM" | "MN" | "MO" | "MP" | "MQ" | "MR" | "MS" | "MT" | "MU" | "MV" | "MW" | "MX" | "MY" | "MZ" | "NA" | "NC" | "NE" | "NF" | "NG" | "NI" | "NL" | "NO" | "NP" | "NR" | "NU" | "NZ" | "OM" | "PA" | "PE" | "PF" | "PG" | "PH" | "PK" | "PL" | "PM" | "PN" | "PR" | "PS" | "PT" | "PW" | "PY" | "QA" | "RE" | "RO" | "RS" | "RU" | "RW" | "SA" | "SB" | "SC" | "SD" | "SE" | "SG" | "SH" | "SI" | "SJ" | "SK" | "SL" | "SM" | "SN" | "SO" | "SR" | "SS" | "ST" | "SV" | "SX" | "SY" | "SZ" | "TC" | "TD" | "TF" | "TG" | "TH" | "TJ" | "TK" | "TL" | "TM" | "TN" | "TO" | "TR" | "TT" | "TV" | "TW" | "TZ" | "UA" | "UG" | "UM" | "US" | "UY" | "UZ" | "VA" | "VC" | "VE" | "VG" | "VI" | "VN" | "VU" | "WF" | "WS" | "YE" | "YT" | "ZA" | "ZM" | "ZW"; +/** The 2-letter continent codes Cloudflare uses */ +declare type ContinentCode = "AF" | "AN" | "AS" | "EU" | "NA" | "OC" | "SA"; +type CfProperties = IncomingRequestCfProperties | RequestInitCfProperties; +interface D1Meta { + duration: number; + size_after: number; + rows_read: number; + rows_written: number; + last_row_id: number; + changed_db: boolean; + changes: number; + /** + * The region of the database instance that executed the query. + */ + served_by_region?: string; + /** + * The three letters airport code of the colo that executed the query. + */ + served_by_colo?: string; + /** + * True if-and-only-if the database instance that executed the query was the primary. + */ + served_by_primary?: boolean; + timings?: { + /** + * The duration of the SQL query execution by the database instance. It doesn't include any network time. + */ + sql_duration_ms: number; + }; + /** + * Number of total attempts to execute the query, due to automatic retries. + * Note: All other fields in the response like `timings` only apply to the last attempt. + */ + total_attempts?: number; +} +interface D1Response { + success: true; + meta: D1Meta & Record; + error?: never; +} +type D1Result = D1Response & { + results: T[]; +}; +interface D1ExecResult { + count: number; + duration: number; +} +type D1SessionConstraint = +// Indicates that the first query should go to the primary, and the rest queries +// using the same D1DatabaseSession will go to any replica that is consistent with +// the bookmark maintained by the session (returned by the first query). +'first-primary' +// Indicates that the first query can go anywhere (primary or replica), and the rest queries +// using the same D1DatabaseSession will go to any replica that is consistent with +// the bookmark maintained by the session (returned by the first query). + | 'first-unconstrained'; +type D1SessionBookmark = string; +declare abstract class D1Database { + prepare(query: string): D1PreparedStatement; + batch(statements: D1PreparedStatement[]): Promise[]>; + exec(query: string): Promise; + /** + * Creates a new D1 Session anchored at the given constraint or the bookmark. + * All queries executed using the created session will have sequential consistency, + * meaning that all writes done through the session will be visible in subsequent reads. + * + * @param constraintOrBookmark Either the session constraint or the explicit bookmark to anchor the created session. + */ + withSession(constraintOrBookmark?: D1SessionBookmark | D1SessionConstraint): D1DatabaseSession; + /** + * @deprecated dump() will be removed soon, only applies to deprecated alpha v1 databases. + */ + dump(): Promise; +} +declare abstract class D1DatabaseSession { + prepare(query: string): D1PreparedStatement; + batch(statements: D1PreparedStatement[]): Promise[]>; + /** + * @returns The latest session bookmark across all executed queries on the session. + * If no query has been executed yet, `null` is returned. + */ + getBookmark(): D1SessionBookmark | null; +} +declare abstract class D1PreparedStatement { + bind(...values: unknown[]): D1PreparedStatement; + first(colName: string): Promise; + first>(): Promise; + run>(): Promise>; + all>(): Promise>; + raw(options: { + columnNames: true; + }): Promise<[ + string[], + ...T[] + ]>; + raw(options?: { + columnNames?: false; + }): Promise; +} +// `Disposable` was added to TypeScript's standard lib types in version 5.2. +// To support older TypeScript versions, define an empty `Disposable` interface. +// Users won't be able to use `using`/`Symbol.dispose` without upgrading to 5.2, +// but this will ensure type checking on older versions still passes. +// TypeScript's interface merging will ensure our empty interface is effectively +// ignored when `Disposable` is included in the standard lib. +interface Disposable { +} +/** + * The returned data after sending an email + */ +interface EmailSendResult { + /** + * The Email Message ID + */ + messageId: string; +} +/** + * An email message that can be sent from a Worker. + */ +interface EmailMessage { + /** + * Envelope From attribute of the email message. + */ + readonly from: string; + /** + * Envelope To attribute of the email message. + */ + readonly to: string; +} +/** + * An email message that is sent to a consumer Worker and can be rejected/forwarded. + */ +interface ForwardableEmailMessage extends EmailMessage { + /** + * Stream of the email message content. + */ + readonly raw: ReadableStream; + /** + * An [Headers object](https://developer.mozilla.org/en-US/docs/Web/API/Headers). + */ + readonly headers: Headers; + /** + * Size of the email message content. + */ + readonly rawSize: number; + /** + * Reject this email message by returning a permanent SMTP error back to the connecting client including the given reason. + * @param reason The reject reason. + * @returns void + */ + setReject(reason: string): void; + /** + * Forward this email message to a verified destination address of the account. + * @param rcptTo Verified destination address. + * @param headers A [Headers object](https://developer.mozilla.org/en-US/docs/Web/API/Headers). + * @returns A promise that resolves when the email message is forwarded. + */ + forward(rcptTo: string, headers?: Headers): Promise; + /** + * Reply to the sender of this email message with a new EmailMessage object. + * @param message The reply message. + * @returns A promise that resolves when the email message is replied. + */ + reply(message: EmailMessage): Promise; +} +/** A file attachment for an email message */ +type EmailAttachment = { + disposition: 'inline'; + contentId: string; + filename: string; + type: string; + content: string | ArrayBuffer | ArrayBufferView; +} | { + disposition: 'attachment'; + contentId?: undefined; + filename: string; + type: string; + content: string | ArrayBuffer | ArrayBufferView; +}; +/** An Email Address */ +interface EmailAddress { + name: string; + email: string; +} +/** + * A binding that allows a Worker to send email messages. + */ +interface SendEmail { + send(message: EmailMessage): Promise; + send(builder: { + from: string | EmailAddress; + to: string | string[]; + subject: string; + replyTo?: string | EmailAddress; + cc?: string | string[]; + bcc?: string | string[]; + headers?: Record; + text?: string; + html?: string; + attachments?: EmailAttachment[]; + }): Promise; +} +declare abstract class EmailEvent extends ExtendableEvent { + readonly message: ForwardableEmailMessage; +} +declare type EmailExportedHandler = (message: ForwardableEmailMessage, env: Env, ctx: ExecutionContext) => void | Promise; +declare module "cloudflare:email" { + let _EmailMessage: { + prototype: EmailMessage; + new (from: string, to: string, raw: ReadableStream | string): EmailMessage; + }; + export { _EmailMessage as EmailMessage }; +} +/** + * Evaluation context for targeting rules. + * Keys are attribute names (e.g. "userId", "country"), values are the attribute values. + */ +type FlagshipEvaluationContext = Record; +interface FlagshipEvaluationDetails { + flagKey: string; + value: T; + variant?: string | undefined; + reason?: string | undefined; + errorCode?: string | undefined; + errorMessage?: string | undefined; +} +interface FlagshipEvaluationError extends Error { +} +/** + * Feature flags binding for evaluating feature flags from a Cloudflare Workers script. + * + * @example + * ```typescript + * // Get a boolean flag value with a default + * const enabled = await env.FLAGS.getBooleanValue('my-feature', false); + * + * // Get a flag value with evaluation context for targeting + * const variant = await env.FLAGS.getStringValue('experiment', 'control', { + * userId: 'user-123', + * country: 'US', + * }); + * + * // Get full evaluation details including variant and reason + * const details = await env.FLAGS.getBooleanDetails('my-feature', false); + * console.log(details.variant, details.reason); + * ``` + */ +declare abstract class Flagship { + /** + * Get a flag value without type checking. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Optional default value returned when evaluation fails. + * @param context Optional evaluation context for targeting rules. + */ + get(flagKey: string, defaultValue?: unknown, context?: FlagshipEvaluationContext): Promise; + /** + * Get a boolean flag value. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getBooleanValue(flagKey: string, defaultValue: boolean, context?: FlagshipEvaluationContext): Promise; + /** + * Get a string flag value. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getStringValue(flagKey: string, defaultValue: string, context?: FlagshipEvaluationContext): Promise; + /** + * Get a number flag value. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getNumberValue(flagKey: string, defaultValue: number, context?: FlagshipEvaluationContext): Promise; + /** + * Get an object flag value. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getObjectValue(flagKey: string, defaultValue: T, context?: FlagshipEvaluationContext): Promise; + /** + * Get a boolean flag value with full evaluation details. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getBooleanDetails(flagKey: string, defaultValue: boolean, context?: FlagshipEvaluationContext): Promise>; + /** + * Get a string flag value with full evaluation details. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getStringDetails(flagKey: string, defaultValue: string, context?: FlagshipEvaluationContext): Promise>; + /** + * Get a number flag value with full evaluation details. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getNumberDetails(flagKey: string, defaultValue: number, context?: FlagshipEvaluationContext): Promise>; + /** + * Get an object flag value with full evaluation details. + * @param flagKey The key of the flag to evaluate. + * @param defaultValue Default value returned when evaluation fails or the flag type does not match. + * @param context Optional evaluation context for targeting rules. + */ + getObjectDetails(flagKey: string, defaultValue: T, context?: FlagshipEvaluationContext): Promise>; +} +/** + * Hello World binding to serve as an explanatory example. DO NOT USE + */ +interface HelloWorldBinding { + /** + * Retrieve the current stored value + */ + get(): Promise<{ + value: string; + ms?: number; + }>; + /** + * Set a new stored value + */ + set(value: string): Promise; +} +interface Hyperdrive { + /** + * Connect directly to Hyperdrive as if it's your database, returning a TCP socket. + * + * Calling this method returns an identical socket to if you call + * `connect("host:port")` using the `host` and `port` fields from this object. + * Pick whichever approach works better with your preferred DB client library. + * + * Note that this socket is not yet authenticated -- it's expected that your + * code (or preferably, the client library of your choice) will authenticate + * using the information in this class's readonly fields. + */ + connect(): Socket; + /** + * A valid DB connection string that can be passed straight into the typical + * client library/driver/ORM. This will typically be the easiest way to use + * Hyperdrive. + */ + readonly connectionString: string; + /* + * A randomly generated hostname that is only valid within the context of the + * currently running Worker which, when passed into `connect()` function from + * the "cloudflare:sockets" module, will connect to the Hyperdrive instance + * for your database. + */ + readonly host: string; + /* + * The port that must be paired the the host field when connecting. + */ + readonly port: number; + /* + * The username to use when authenticating to your database via Hyperdrive. + * Unlike the host and password, this will be the same every time + */ + readonly user: string; + /* + * The randomly generated password to use when authenticating to your + * database via Hyperdrive. Like the host field, this password is only valid + * within the context of the currently running Worker instance from which + * it's read. + */ + readonly password: string; + /* + * The name of the database to connect to. + */ + readonly database: string; +} +// Copyright (c) 2024 Cloudflare, Inc. +// Licensed under the Apache 2.0 license found in the LICENSE file or at: +// https://opensource.org/licenses/Apache-2.0 +type ImageInfoResponse = { + format: 'image/svg+xml'; +} | { + format: string; + fileSize: number; + width: number; + height: number; +}; +type ImageTransform = { + width?: number; + height?: number; + background?: string; + blur?: number; + border?: { + color?: string; + width?: number; + } | { + top?: number; + bottom?: number; + left?: number; + right?: number; + }; + brightness?: number; + contrast?: number; + fit?: 'scale-down' | 'contain' | 'pad' | 'squeeze' | 'cover' | 'crop'; + flip?: 'h' | 'v' | 'hv'; + gamma?: number; + segment?: 'foreground'; + gravity?: 'face' | 'left' | 'right' | 'top' | 'bottom' | 'center' | 'auto' | 'entropy' | { + x?: number; + y?: number; + mode: 'remainder' | 'box-center'; + }; + rotate?: 0 | 90 | 180 | 270; + saturation?: number; + sharpen?: number; + trim?: 'border' | { + top?: number; + bottom?: number; + left?: number; + right?: number; + width?: number; + height?: number; + border?: boolean | { + color?: string; + tolerance?: number; + keep?: number; + }; + }; +}; +type ImageDrawOptions = { + opacity?: number; + repeat?: boolean | string; + top?: number; + left?: number; + bottom?: number; + right?: number; +}; +type ImageInputOptions = { + encoding?: 'base64'; +}; +type ImageOutputOptions = { + format: 'image/jpeg' | 'image/png' | 'image/gif' | 'image/webp' | 'image/avif' | 'rgb' | 'rgba'; + quality?: number; + background?: string; + anim?: boolean; +}; +interface ImageMetadata { + id: string; + filename?: string; + uploaded?: string; + requireSignedURLs: boolean; + meta?: Record; + variants: string[]; + draft?: boolean; + creator?: string; +} +interface ImageUploadOptions { + id?: string; + filename?: string; + requireSignedURLs?: boolean; + metadata?: Record; + creator?: string; + encoding?: 'base64'; +} +interface ImageUpdateOptions { + requireSignedURLs?: boolean; + metadata?: Record; + creator?: string; +} +interface ImageListOptions { + limit?: number; + cursor?: string; + sortOrder?: 'asc' | 'desc'; + creator?: string; +} +interface ImageList { + images: ImageMetadata[]; + cursor?: string; + listComplete: boolean; +} +interface ImageHandle { + /** + * Get metadata for a hosted image + * @returns Image metadata, or null if not found + */ + details(): Promise; + /** + * Get the raw image data for a hosted image + * @returns ReadableStream of image bytes, or null if not found + */ + bytes(): Promise | null>; + /** + * Update hosted image metadata + * @param options Properties to update + * @returns Updated image metadata + * @throws {@link ImagesError} if update fails + */ + update(options: ImageUpdateOptions): Promise; + /** + * Delete a hosted image + * @returns True if deleted, false if not found + */ + delete(): Promise; +} +interface HostedImagesBinding { + /** + * Get a handle for a hosted image + * @param imageId The ID of the image (UUID or custom ID) + * @returns A handle for per-image operations + */ + image(imageId: string): ImageHandle; + /** + * Upload a new hosted image + * @param image The image file to upload + * @param options Upload configuration + * @returns Metadata for the uploaded image + * @throws {@link ImagesError} if upload fails + */ + upload(image: ReadableStream | ArrayBuffer, options?: ImageUploadOptions): Promise; + /** + * List hosted images with pagination + * @param options List configuration + * @returns List of images with pagination info + * @throws {@link ImagesError} if list fails + */ + list(options?: ImageListOptions): Promise; +} +interface ImagesBinding { + /** + * Get image metadata (type, width and height) + * @throws {@link ImagesError} with code 9412 if input is not an image + * @param stream The image bytes + */ + info(stream: ReadableStream, options?: ImageInputOptions): Promise; + /** + * Begin applying a series of transformations to an image + * @param stream The image bytes + * @returns A transform handle + */ + input(stream: ReadableStream, options?: ImageInputOptions): ImageTransformer; + /** + * Access hosted images CRUD operations + */ + readonly hosted: HostedImagesBinding; +} +interface ImageTransformer { + /** + * Apply transform next, returning a transform handle. + * You can then apply more transformations, draw, or retrieve the output. + * @param transform + */ + transform(transform: ImageTransform): ImageTransformer; + /** + * Draw an image on this transformer, returning a transform handle. + * You can then apply more transformations, draw, or retrieve the output. + * @param image The image (or transformer that will give the image) to draw + * @param options The options configuring how to draw the image + */ + draw(image: ReadableStream | ImageTransformer, options?: ImageDrawOptions): ImageTransformer; + /** + * Retrieve the image that results from applying the transforms to the + * provided input + * @param options Options that apply to the output e.g. output format + */ + output(options: ImageOutputOptions): Promise; +} +type ImageTransformationOutputOptions = { + encoding?: 'base64'; +}; +interface ImageTransformationResult { + /** + * The image as a response, ready to store in cache or return to users + */ + response(): Response; + /** + * The content type of the returned image + */ + contentType(): string; + /** + * The bytes of the response + */ + image(options?: ImageTransformationOutputOptions): ReadableStream; +} +interface ImagesError extends Error { + readonly code: number; + readonly message: string; + readonly stack?: string; +} +/** + * Media binding for transforming media streams. + * Provides the entry point for media transformation operations. + */ +interface MediaBinding { + /** + * Creates a media transformer from an input stream. + * @param media - The input media bytes + * @returns A MediaTransformer instance for applying transformations + */ + input(media: ReadableStream): MediaTransformer; +} +/** + * Media transformer for applying transformation operations to media content. + * Handles sizing, fitting, and other input transformation parameters. + */ +interface MediaTransformer { + /** + * Applies transformation options to the media content. + * @param transform - Configuration for how the media should be transformed + * @returns A generator for producing the transformed media output + */ + transform(transform?: MediaTransformationInputOptions): MediaTransformationGenerator; + /** + * Generates the final media output with specified options. + * @param output - Configuration for the output format and parameters + * @returns The final transformation result containing the transformed media + */ + output(output?: MediaTransformationOutputOptions): MediaTransformationResult; +} +/** + * Generator for producing media transformation results. + * Configures the output format and parameters for the transformed media. + */ +interface MediaTransformationGenerator { + /** + * Generates the final media output with specified options. + * @param output - Configuration for the output format and parameters + * @returns The final transformation result containing the transformed media + */ + output(output?: MediaTransformationOutputOptions): MediaTransformationResult; +} +/** + * Result of a media transformation operation. + * Provides multiple ways to access the transformed media content. + */ +interface MediaTransformationResult { + /** + * Returns the transformed media as a readable stream of bytes. + * @returns A promise containing a readable stream with the transformed media + */ + media(): Promise>; + /** + * Returns the transformed media as an HTTP response object. + * @returns The transformed media as a Promise, ready to store in cache or return to users + */ + response(): Promise; + /** + * Returns the MIME type of the transformed media. + * @returns A promise containing the content type string (e.g., 'image/jpeg', 'video/mp4') + */ + contentType(): Promise; +} +/** + * Configuration options for transforming media input. + * Controls how the media should be resized and fitted. + */ +type MediaTransformationInputOptions = { + /** How the media should be resized to fit the specified dimensions */ + fit?: 'contain' | 'cover' | 'scale-down'; + /** Target width in pixels */ + width?: number; + /** Target height in pixels */ + height?: number; +}; +/** + * Configuration options for Media Transformations output. + * Controls the format, timing, and type of the generated output. + */ +type MediaTransformationOutputOptions = { + /** + * Output mode determining the type of media to generate + */ + mode?: 'video' | 'spritesheet' | 'frame' | 'audio'; + /** Whether to include audio in the output */ + audio?: boolean; + /** + * Starting timestamp for frame extraction or start time for clips. (e.g. '2s'). + */ + time?: string; + /** + * Duration for video clips, audio extraction, and spritesheet generation (e.g. '5s'). + */ + duration?: string; + /** + * Number of frames in the spritesheet. + */ + imageCount?: number; + /** + * Output format for the generated media. + */ + format?: 'jpg' | 'png' | 'm4a'; +}; +/** + * Error object for media transformation operations. + * Extends the standard Error interface with additional media-specific information. + */ +interface MediaError extends Error { + readonly code: number; + readonly message: string; + readonly stack?: string; +} +declare module 'cloudflare:node' { + interface NodeStyleServer { + listen(...args: unknown[]): this; + address(): { + port?: number | null | undefined; + }; + } + export function httpServerHandler(port: number): ExportedHandler; + export function httpServerHandler(options: { + port: number; + }): ExportedHandler; + export function httpServerHandler(server: NodeStyleServer): ExportedHandler; +} +type Params

= Record; +type EventContext = { + request: Request>; + functionPath: string; + waitUntil: (promise: Promise) => void; + passThroughOnException: () => void; + next: (input?: Request | string, init?: RequestInit) => Promise; + env: Env & { + ASSETS: { + fetch: typeof fetch; + }; + }; + params: Params

; + data: Data; +}; +type PagesFunction = Record> = (context: EventContext) => Response | Promise; +type EventPluginContext = { + request: Request>; + functionPath: string; + waitUntil: (promise: Promise) => void; + passThroughOnException: () => void; + next: (input?: Request | string, init?: RequestInit) => Promise; + env: Env & { + ASSETS: { + fetch: typeof fetch; + }; + }; + params: Params

; + data: Data; + pluginArgs: PluginArgs; +}; +type PagesPluginFunction = Record, PluginArgs = unknown> = (context: EventPluginContext) => Response | Promise; +declare module "assets:*" { + export const onRequest: PagesFunction; +} +// Copyright (c) 2022-2023 Cloudflare, Inc. +// Licensed under the Apache 2.0 license found in the LICENSE file or at: +// https://opensource.org/licenses/Apache-2.0 +declare module "cloudflare:pipelines" { + export abstract class PipelineTransformationEntrypoint { + protected env: Env; + protected ctx: ExecutionContext; + constructor(ctx: ExecutionContext, env: Env); + /** + * run receives an array of PipelineRecord which can be + * transformed and returned to the pipeline + * @param records Incoming records from the pipeline to be transformed + * @param metadata Information about the specific pipeline calling the transformation entrypoint + * @returns A promise containing the transformed PipelineRecord array + */ + public run(records: I[], metadata: PipelineBatchMetadata): Promise; + } + export type PipelineRecord = Record; + export type PipelineBatchMetadata = { + pipelineId: string; + pipelineName: string; + }; + export interface Pipeline { + /** + * The Pipeline interface represents the type of a binding to a Pipeline + * + * @param records The records to send to the pipeline + */ + send(records: T[]): Promise; + } +} +// PubSubMessage represents an incoming PubSub message. +// The message includes metadata about the broker, the client, and the payload +// itself. +// https://developers.cloudflare.com/pub-sub/ +interface PubSubMessage { + // Message ID + readonly mid: number; + // MQTT broker FQDN in the form mqtts://BROKER.NAMESPACE.cloudflarepubsub.com:PORT + readonly broker: string; + // The MQTT topic the message was sent on. + readonly topic: string; + // The client ID of the client that published this message. + readonly clientId: string; + // The unique identifier (JWT ID) used by the client to authenticate, if token + // auth was used. + readonly jti?: string; + // A Unix timestamp (seconds from Jan 1, 1970), set when the Pub/Sub Broker + // received the message from the client. + readonly receivedAt: number; + // An (optional) string with the MIME type of the payload, if set by the + // client. + readonly contentType: string; + // Set to 1 when the payload is a UTF-8 string + // https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html#_Toc3901063 + readonly payloadFormatIndicator: number; + // Pub/Sub (MQTT) payloads can be UTF-8 strings, or byte arrays. + // You can use payloadFormatIndicator to inspect this before decoding. + payload: string | Uint8Array; +} +// JsonWebKey extended by kid parameter +interface JsonWebKeyWithKid extends JsonWebKey { + // Key Identifier of the JWK + readonly kid: string; +} +interface RateLimitOptions { + key: string; +} +interface RateLimitOutcome { + success: boolean; +} +interface RateLimit { + /** + * Rate limit a request based on the provided options. + * @see https://developers.cloudflare.com/workers/runtime-apis/bindings/rate-limit/ + * @returns A promise that resolves with the outcome of the rate limit. + */ + limit(options: RateLimitOptions): Promise; +} +// Namespace for RPC utility types. Unfortunately, we can't use a `module` here as these types need +// to referenced by `Fetcher`. This is included in the "importable" version of the types which +// strips all `module` blocks. +declare namespace Rpc { + // Branded types for identifying `WorkerEntrypoint`/`DurableObject`/`Target`s. + // TypeScript uses *structural* typing meaning anything with the same shape as type `T` is a `T`. + // For the classes exported by `cloudflare:workers` we want *nominal* typing (i.e. we only want to + // accept `WorkerEntrypoint` from `cloudflare:workers`, not any other class with the same shape) + export const __RPC_STUB_BRAND: '__RPC_STUB_BRAND'; + export const __RPC_TARGET_BRAND: '__RPC_TARGET_BRAND'; + export const __WORKER_ENTRYPOINT_BRAND: '__WORKER_ENTRYPOINT_BRAND'; + export const __DURABLE_OBJECT_BRAND: '__DURABLE_OBJECT_BRAND'; + export const __WORKFLOW_ENTRYPOINT_BRAND: '__WORKFLOW_ENTRYPOINT_BRAND'; + export interface RpcTargetBranded { + [__RPC_TARGET_BRAND]: never; + } + export interface WorkerEntrypointBranded { + [__WORKER_ENTRYPOINT_BRAND]: never; + } + export interface DurableObjectBranded { + [__DURABLE_OBJECT_BRAND]: never; + } + export interface WorkflowEntrypointBranded { + [__WORKFLOW_ENTRYPOINT_BRAND]: never; + } + export type EntrypointBranded = WorkerEntrypointBranded | DurableObjectBranded | WorkflowEntrypointBranded; + // Types that can be used through `Stub`s + export type Stubable = RpcTargetBranded | ((...args: any[]) => any); + // Types that can be passed over RPC + // The reason for using a generic type here is to build a serializable subset of structured + // cloneable composite types. This allows types defined with the "interface" keyword to pass the + // serializable check as well. Otherwise, only types defined with the "type" keyword would pass. + type Serializable = + // Structured cloneables + BaseType + // Structured cloneable composites + | Map ? Serializable : never, T extends Map ? Serializable : never> | Set ? Serializable : never> | ReadonlyArray ? Serializable : never> | { + [K in keyof T]: K extends number | string ? Serializable : never; + } + // Special types + | Stub + // Serialized as stubs, see `Stubify` + | Stubable; + // Base type for all RPC stubs, including common memory management methods. + // `T` is used as a marker type for unwrapping `Stub`s later. + interface StubBase extends Disposable { + [__RPC_STUB_BRAND]: T; + dup(): this; + } + export type Stub = Provider & StubBase; + // This represents all the types that can be sent as-is over an RPC boundary + type BaseType = void | undefined | null | boolean | number | bigint | string | TypedArray | ArrayBuffer | DataView | Date | Error | RegExp | ReadableStream | WritableStream | Request | Response | Headers; + // Recursively rewrite all `Stubable` types with `Stub`s + // prettier-ignore + type Stubify = T extends Stubable ? Stub : T extends Map ? Map, Stubify> : T extends Set ? Set> : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends BaseType ? T : T extends { + [key: string | number]: any; + } ? { + [K in keyof T]: Stubify; + } : T; + // Recursively rewrite all `Stub`s with the corresponding `T`s. + // Note we use `StubBase` instead of `Stub` here to avoid circular dependencies: + // `Stub` depends on `Provider`, which depends on `Unstubify`, which would depend on `Stub`. + // prettier-ignore + type Unstubify = T extends StubBase ? V : T extends Map ? Map, Unstubify> : T extends Set ? Set> : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends BaseType ? T : T extends { + [key: string | number]: unknown; + } ? { + [K in keyof T]: Unstubify; + } : T; + type UnstubifyAll = { + [I in keyof A]: Unstubify; + }; + // Utility type for adding `Provider`/`Disposable`s to `object` types only. + // Note `unknown & T` is equivalent to `T`. + type MaybeProvider = T extends object ? Provider : unknown; + type MaybeDisposable = T extends object ? Disposable : unknown; + // Type for method return or property on an RPC interface. + // - Stubable types are replaced by stubs. + // - Serializable types are passed by value, with stubable types replaced by stubs + // and a top-level `Disposer`. + // Everything else can't be passed over PRC. + // Technically, we use custom thenables here, but they quack like `Promise`s. + // Intersecting with `(Maybe)Provider` allows pipelining. + // prettier-ignore + type Result = R extends Stubable ? Promise> & Provider : R extends Serializable ? Promise & MaybeDisposable> & MaybeProvider : never; + // Type for method or property on an RPC interface. + // For methods, unwrap `Stub`s in parameters, and rewrite returns to be `Result`s. + // Unwrapping `Stub`s allows calling with `Stubable` arguments. + // For properties, rewrite types to be `Result`s. + // In each case, unwrap `Promise`s. + type MethodOrProperty = V extends (...args: infer P) => infer R ? (...args: UnstubifyAll

) => Result> : Result>; + // Type for the callable part of an `Provider` if `T` is callable. + // This is intersected with methods/properties. + type MaybeCallableProvider = T extends (...args: any[]) => any ? MethodOrProperty : unknown; + // Base type for all other types providing RPC-like interfaces. + // Rewrites all methods/properties to be `MethodOrProperty`s, while preserving callable types. + // `Reserved` names (e.g. stub method names like `dup()`) and symbols can't be accessed over RPC. + export type Provider = MaybeCallableProvider & Pick<{ + [K in keyof T]: MethodOrProperty; + }, Exclude>>; +} +declare namespace Cloudflare { + // Type of `env`. + // + // The specific project can extend `Env` by redeclaring it in project-specific files. Typescript + // will merge all declarations. + // + // You can use `wrangler types` to generate the `Env` type automatically. + interface Env { + } + // Project-specific parameters used to inform types. + // + // This interface is, again, intended to be declared in project-specific files, and then that + // declaration will be merged with this one. + // + // A project should have a declaration like this: + // + // interface GlobalProps { + // // Declares the main module's exports. Used to populate Cloudflare.Exports aka the type + // // of `ctx.exports`. + // mainModule: typeof import("my-main-module"); + // + // // Declares which of the main module's exports are configured with durable storage, and + // // thus should behave as Durable Object namsepace bindings. + // durableNamespaces: "MyDurableObject" | "AnotherDurableObject"; + // } + // + // You can use `wrangler types` to generate `GlobalProps` automatically. + interface GlobalProps { + } + // Evaluates to the type of a property in GlobalProps, defaulting to `Default` if it is not + // present. + type GlobalProp = K extends keyof GlobalProps ? GlobalProps[K] : Default; + // The type of the program's main module exports, if known. Requires `GlobalProps` to declare the + // `mainModule` property. + type MainModule = GlobalProp<"mainModule", {}>; + // The type of ctx.exports, which contains loopback bindings for all top-level exports. + type Exports = { + [K in keyof MainModule]: LoopbackForExport + // If the export is listed in `durableNamespaces`, then it is also a + // DurableObjectNamespace. + & (K extends GlobalProp<"durableNamespaces", never> ? MainModule[K] extends new (...args: any[]) => infer DoInstance ? DoInstance extends Rpc.DurableObjectBranded ? DurableObjectNamespace : DurableObjectNamespace : DurableObjectNamespace : {}); + }; +} +declare namespace CloudflareWorkersModule { + export type RpcStub = Rpc.Stub; + export const RpcStub: { + new (value: T): Rpc.Stub; + }; + export abstract class RpcTarget implements Rpc.RpcTargetBranded { + [Rpc.__RPC_TARGET_BRAND]: never; + } + // `protected` fields don't appear in `keyof`s, so can't be accessed over RPC + export abstract class WorkerEntrypoint implements Rpc.WorkerEntrypointBranded { + [Rpc.__WORKER_ENTRYPOINT_BRAND]: never; + protected ctx: ExecutionContext; + protected env: Env; + constructor(ctx: ExecutionContext, env: Env); + email?(message: ForwardableEmailMessage): void | Promise; + fetch?(request: Request): Response | Promise; + connect?(socket: Socket): void | Promise; + queue?(batch: MessageBatch): void | Promise; + scheduled?(controller: ScheduledController): void | Promise; + tail?(events: TraceItem[]): void | Promise; + tailStream?(event: TailStream.TailEvent): TailStream.TailEventHandlerType | Promise; + test?(controller: TestController): void | Promise; + trace?(traces: TraceItem[]): void | Promise; + } + export abstract class DurableObject implements Rpc.DurableObjectBranded { + [Rpc.__DURABLE_OBJECT_BRAND]: never; + protected ctx: DurableObjectState; + protected env: Env; + constructor(ctx: DurableObjectState, env: Env); + alarm?(alarmInfo?: AlarmInvocationInfo): void | Promise; + fetch?(request: Request): Response | Promise; + connect?(socket: Socket): void | Promise; + webSocketMessage?(ws: WebSocket, message: string | ArrayBuffer): void | Promise; + webSocketClose?(ws: WebSocket, code: number, reason: string, wasClean: boolean): void | Promise; + webSocketError?(ws: WebSocket, error: unknown): void | Promise; + } + export type WorkflowDurationLabel = 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'year'; + export type WorkflowSleepDuration = `${number} ${WorkflowDurationLabel}${'s' | ''}` | number; + export type WorkflowDelayDuration = WorkflowSleepDuration; + export type WorkflowTimeoutDuration = WorkflowSleepDuration; + export type WorkflowRetentionDuration = WorkflowSleepDuration; + export type WorkflowBackoff = 'constant' | 'linear' | 'exponential'; + export type WorkflowStepConfig = { + retries?: { + limit: number; + delay: WorkflowDelayDuration | number; + backoff?: WorkflowBackoff; + }; + timeout?: WorkflowTimeoutDuration | number; + }; + export type WorkflowEvent = { + payload: Readonly; + timestamp: Date; + instanceId: string; + }; + export type WorkflowStepEvent = { + payload: Readonly; + timestamp: Date; + type: string; + }; + export type WorkflowStepContext = { + step: { + name: string; + count: number; + }; + attempt: number; + config: WorkflowStepConfig; + }; + export abstract class WorkflowStep { + do>(name: string, callback: (ctx: WorkflowStepContext) => Promise): Promise; + do>(name: string, config: WorkflowStepConfig, callback: (ctx: WorkflowStepContext) => Promise): Promise; + sleep: (name: string, duration: WorkflowSleepDuration) => Promise; + sleepUntil: (name: string, timestamp: Date | number) => Promise; + waitForEvent>(name: string, options: { + type: string; + timeout?: WorkflowTimeoutDuration | number; + }): Promise>; + } + export type WorkflowInstanceStatus = 'queued' | 'running' | 'paused' | 'errored' | 'terminated' | 'complete' | 'waiting' | 'waitingForPause' | 'unknown'; + export abstract class WorkflowEntrypoint | unknown = unknown> implements Rpc.WorkflowEntrypointBranded { + [Rpc.__WORKFLOW_ENTRYPOINT_BRAND]: never; + protected ctx: ExecutionContext; + protected env: Env; + constructor(ctx: ExecutionContext, env: Env); + run(event: Readonly>, step: WorkflowStep): Promise; + } + export function waitUntil(promise: Promise): void; + export function withEnv(newEnv: unknown, fn: () => unknown): unknown; + export function withExports(newExports: unknown, fn: () => unknown): unknown; + export function withEnvAndExports(newEnv: unknown, newExports: unknown, fn: () => unknown): unknown; + export const env: Cloudflare.Env; + export const exports: Cloudflare.Exports; + export const cache: CacheContext; + export const tracing: Tracing; +} +declare module 'cloudflare:workers' { + export = CloudflareWorkersModule; +} +interface SecretsStoreSecret { + /** + * Get a secret from the Secrets Store, returning a string of the secret value + * if it exists, or throws an error if it does not exist + */ + get(): Promise; +} +declare module "cloudflare:sockets" { + function _connect(address: string | SocketAddress, options?: SocketOptions): Socket; + export { _connect as connect }; +} +/** + * Binding entrypoint for Cloudflare Stream. + * + * Usage: + * - Binding-level operations: + * `await env.STREAM.videos.upload` + * `await env.STREAM.videos.createDirectUpload` + * `await env.STREAM.videos.*` + * `await env.STREAM.watermarks.*` + * - Per-video operations: + * `await env.STREAM.video(id).downloads.*` + * `await env.STREAM.video(id).captions.*` + * + * Example usage: + * ```ts + * await env.STREAM.video(id).downloads.generate(); + * + * const video = env.STREAM.video(id) + * const captions = video.captions.list(); + * const videoDetails = video.details() + * ``` + */ +interface StreamBinding { + /** + * Returns a handle scoped to a single video for per-video operations. + * @param id The unique identifier for the video. + * @returns A handle for per-video operations. + */ + video(id: string): StreamVideoHandle; + /** + * Uploads a new video from a provided URL. + * @param url The URL to upload from. + * @param params Optional upload parameters. + * @returns The uploaded video details. + * @throws {BadRequestError} if the upload parameter is invalid or the URL is invalid + * @throws {QuotaReachedError} if the account storage capacity is exceeded + * @throws {MaxFileSizeError} if the file size is too large + * @throws {RateLimitedError} if the server received too many requests + * @throws {AlreadyUploadedError} if a video was already uploaded to this URL + * @throws {InternalError} if an unexpected error occurs + */ + upload(url: string, params?: StreamUrlUploadParams): Promise; + /** + * Creates a direct upload that allows video uploads without an API key. + * @param params Parameters for the direct upload + * @returns The direct upload details. + * @throws {BadRequestError} if the parameters are invalid + * @throws {RateLimitedError} if the server received too many requests + * @throws {InternalError} if an unexpected error occurs + */ + createDirectUpload(params: StreamDirectUploadCreateParams): Promise; + videos: StreamVideos; + watermarks: StreamWatermarks; +} +/** + * Handle for operations scoped to a single Stream video. + */ +interface StreamVideoHandle { + /** + * The unique identifier for the video. + */ + id: string; + /** + * Get a full videos details + * @returns The full video details. + * @throws {NotFoundError} if the video is not found + * @throws {InternalError} if an unexpected error occurs + */ + details(): Promise; + /** + * Update details for a single video. + * @param params The fields to update for the video. + * @returns The updated video details. + * @throws {NotFoundError} if the video is not found + * @throws {BadRequestError} if the parameters are invalid + * @throws {InternalError} if an unexpected error occurs + */ + update(params: StreamUpdateVideoParams): Promise; + /** + * Deletes a video and its copies from Cloudflare Stream. + * @returns A promise that resolves when deletion completes. + * @throws {NotFoundError} if the video is not found + * @throws {InternalError} if an unexpected error occurs + */ + delete(): Promise; + /** + * Creates a signed URL token for a video. + * @returns The signed token that was created. + * @throws {InternalError} if the signing key cannot be retrieved or the token cannot be signed + */ + generateToken(): Promise; + downloads: StreamScopedDownloads; + captions: StreamScopedCaptions; +} +interface StreamVideo { + /** + * The unique identifier for the video. + */ + id: string; + /** + * A user-defined identifier for the media creator. + */ + creator: string | null; + /** + * The thumbnail URL for the video. + */ + thumbnail: string; + /** + * The thumbnail timestamp percentage. + */ + thumbnailTimestampPct: number; + /** + * Indicates whether the video is ready to stream. + */ + readyToStream: boolean; + /** + * The date and time the video became ready to stream. + */ + readyToStreamAt: string | null; + /** + * Processing status information. + */ + status: StreamVideoStatus; + /** + * A user modifiable key-value store. + */ + meta: Record; + /** + * The date and time the video was created. + */ + created: string; + /** + * The date and time the video was last modified. + */ + modified: string; + /** + * The date and time at which the video will be deleted. + */ + scheduledDeletion: string | null; + /** + * The size of the video in bytes. + */ + size: number; + /** + * The preview URL for the video. + */ + preview?: string; + /** + * Origins allowed to display the video. + */ + allowedOrigins: Array; + /** + * Indicates whether signed URLs are required. + */ + requireSignedURLs: boolean | null; + /** + * The date and time the video was uploaded. + */ + uploaded: string | null; + /** + * The date and time when the upload URL expires. + */ + uploadExpiry: string | null; + /** + * The maximum size in bytes for direct uploads. + */ + maxSizeBytes: number | null; + /** + * The maximum duration in seconds for direct uploads. + */ + maxDurationSeconds: number | null; + /** + * The video duration in seconds. -1 indicates unknown. + */ + duration: number; + /** + * Input metadata for the original upload. + */ + input: StreamVideoInput; + /** + * Playback URLs for the video. + */ + hlsPlaybackUrl: string; + dashPlaybackUrl: string; + /** + * The watermark applied to the video, if any. + */ + watermark: StreamWatermark | null; + /** + * The live input id associated with the video, if any. + */ + liveInputId?: string | null; + /** + * The source video id if this is a clip. + */ + clippedFromId: string | null; + /** + * Public details associated with the video. + */ + publicDetails: StreamPublicDetails | null; +} +type StreamVideoStatus = { + /** + * The current processing state. + */ + state: string; + /** + * The current processing step. + */ + step?: string; + /** + * The percent complete as a string. + */ + pctComplete?: string; + /** + * An error reason code, if applicable. + */ + errorReasonCode: string; + /** + * An error reason text, if applicable. + */ + errorReasonText: string; +}; +type StreamVideoInput = { + /** + * The input width in pixels. + */ + width: number; + /** + * The input height in pixels. + */ + height: number; +}; +type StreamPublicDetails = { + /** + * The public title for the video. + */ + title: string | null; + /** + * The public share link. + */ + share_link: string | null; + /** + * The public channel link. + */ + channel_link: string | null; + /** + * The public logo URL. + */ + logo: string | null; +}; +type StreamDirectUpload = { + /** + * The URL an unauthenticated upload can use for a single multipart request. + */ + uploadURL: string; + /** + * A Cloudflare-generated unique identifier for a media item. + */ + id: string; + /** + * The watermark profile applied to the upload. + */ + watermark: StreamWatermark | null; + /** + * The scheduled deletion time, if any. + */ + scheduledDeletion: string | null; +}; +type StreamDirectUploadCreateParams = { + /** + * The maximum duration in seconds for a video upload. + */ + maxDurationSeconds: number; + /** + * The date and time after upload when videos will not be accepted. + */ + expiry?: string; + /** + * A user-defined identifier for the media creator. + */ + creator?: string; + /** + * A user modifiable key-value store used to reference other systems of record for + * managing videos. + */ + meta?: Record; + /** + * Lists the origins allowed to display the video. + */ + allowedOrigins?: Array; + /** + * Indicates whether the video can be accessed using the id. When set to `true`, + * a signed token must be generated with a signing key to view the video. + */ + requireSignedURLs?: boolean; + /** + * The thumbnail timestamp percentage. + */ + thumbnailTimestampPct?: number; + /** + * The date and time at which the video will be deleted. Include `null` to remove + * a scheduled deletion. + */ + scheduledDeletion?: string | null; + /** + * The watermark profile to apply. + */ + watermark?: StreamDirectUploadWatermark; +}; +type StreamDirectUploadWatermark = { + /** + * The unique identifier for the watermark profile. + */ + id: string; +}; +type StreamUrlUploadParams = { + /** + * Lists the origins allowed to display the video. Enter allowed origin + * domains in an array and use `*` for wildcard subdomains. Empty arrays allow the + * video to be viewed on any origin. + */ + allowedOrigins?: Array; + /** + * A user-defined identifier for the media creator. + */ + creator?: string; + /** + * A user modifiable key-value store used to reference other systems of + * record for managing videos. + */ + meta?: Record; + /** + * Indicates whether the video can be a accessed using the id. When + * set to `true`, a signed token must be generated with a signing key to view the + * video. + */ + requireSignedURLs?: boolean; + /** + * Indicates the date and time at which the video will be deleted. Omit + * the field to indicate no change, or include with a `null` value to remove an + * existing scheduled deletion. If specified, must be at least 30 days from upload + * time. + */ + scheduledDeletion?: string | null; + /** + * The timestamp for a thumbnail image calculated as a percentage value + * of the video's duration. To convert from a second-wise timestamp to a + * percentage, divide the desired timestamp by the total duration of the video. If + * this value is not set, the default thumbnail image is taken from 0s of the + * video. + */ + thumbnailTimestampPct?: number; + /** + * The identifier for the watermark profile + */ + watermarkId?: string; +}; +interface StreamScopedCaptions { + /** + * Uploads the caption or subtitle file to the endpoint for a specific BCP47 language. + * One caption or subtitle file per language is allowed. + * @param language The BCP 47 language tag for the caption or subtitle. + * @param input The caption or subtitle stream to upload. + * @returns The created caption entry. + * @throws {NotFoundError} if the video is not found + * @throws {BadRequestError} if the language or file is invalid + * @throws {InternalError} if an unexpected error occurs + */ + upload(language: string, input: ReadableStream): Promise; + /** + * Generate captions or subtitles for the provided language via AI. + * @param language The BCP 47 language tag to generate. + * @returns The generated caption entry. + * @throws {NotFoundError} if the video is not found + * @throws {BadRequestError} if the language is invalid + * @throws {StreamError} if a generated caption already exists + * @throws {StreamError} if the video duration is too long + * @throws {StreamError} if the video is missing audio + * @throws {StreamError} if the requested language is not supported + * @throws {InternalError} if an unexpected error occurs + */ + generate(language: string): Promise; + /** + * Lists the captions or subtitles. + * Use the language parameter to filter by a specific language. + * @param language The optional BCP 47 language tag to filter by. + * @returns The list of captions or subtitles. + * @throws {NotFoundError} if the video or caption is not found + * @throws {InternalError} if an unexpected error occurs + */ + list(language?: string): Promise; + /** + * Removes the captions or subtitles from a video. + * @param language The BCP 47 language tag to remove. + * @returns A promise that resolves when deletion completes. + * @throws {NotFoundError} if the video or caption is not found + * @throws {InternalError} if an unexpected error occurs + */ + delete(language: string): Promise; +} +interface StreamScopedDownloads { + /** + * Generates a download for a video when a video is ready to view. Available + * types are `default` and `audio`. Defaults to `default` when omitted. + * @param downloadType The download type to create. + * @returns The current downloads for the video. + * @throws {NotFoundError} if the video is not found + * @throws {BadRequestError} if the download type is invalid + * @throws {StreamError} if the video duration is too long to generate a download + * @throws {StreamError} if the video is not ready to stream + * @throws {InternalError} if an unexpected error occurs + */ + generate(downloadType?: StreamDownloadType): Promise; + /** + * Lists the downloads created for a video. + * @returns The current downloads for the video. + * @throws {NotFoundError} if the video or downloads are not found + * @throws {InternalError} if an unexpected error occurs + */ + get(): Promise; + /** + * Delete the downloads for a video. Available types are `default` and `audio`. + * Defaults to `default` when omitted. + * @param downloadType The download type to delete. + * @returns A promise that resolves when deletion completes. + * @throws {NotFoundError} if the video or downloads are not found + * @throws {InternalError} if an unexpected error occurs + */ + delete(downloadType?: StreamDownloadType): Promise; +} +interface StreamVideos { + /** + * Lists all videos in a users account. + * @returns The list of videos. + * @throws {BadRequestError} if the parameters are invalid + * @throws {InternalError} if an unexpected error occurs + */ + list(params?: StreamVideosListParams): Promise; +} +interface StreamWatermarks { + /** + * Generate a new watermark profile + * @param input The image stream to upload + * @param params The watermark creation parameters. + * @returns The created watermark profile. + * @throws {BadRequestError} if the parameters are invalid + * @throws {InvalidURLError} if the URL is invalid + * @throws {TooManyWatermarksError} if the number of allowed watermarks is reached + * @throws {InternalError} if an unexpected error occurs + */ + generate(input: ReadableStream, params: StreamWatermarkCreateParams): Promise; + /** + * Generate a new watermark profile + * @param url The image url to upload + * @param params The watermark creation parameters. + * @returns The created watermark profile. + * @throws {BadRequestError} if the parameters are invalid + * @throws {InvalidURLError} if the URL is invalid + * @throws {TooManyWatermarksError} if the number of allowed watermarks is reached + * @throws {InternalError} if an unexpected error occurs + */ + generate(url: string, params: StreamWatermarkCreateParams): Promise; + /** + * Lists all watermark profiles for an account. + * @returns The list of watermark profiles. + * @throws {InternalError} if an unexpected error occurs + */ + list(): Promise; + /** + * Retrieves details for a single watermark profile. + * @param watermarkId The watermark profile identifier. + * @returns The watermark profile details. + * @throws {NotFoundError} if the watermark is not found + * @throws {InternalError} if an unexpected error occurs + */ + get(watermarkId: string): Promise; + /** + * Deletes a watermark profile. + * @param watermarkId The watermark profile identifier. + * @returns A promise that resolves when deletion completes. + * @throws {NotFoundError} if the watermark is not found + * @throws {InternalError} if an unexpected error occurs + */ + delete(watermarkId: string): Promise; +} +type StreamUpdateVideoParams = { + /** + * Lists the origins allowed to display the video. Enter allowed origin + * domains in an array and use `*` for wildcard subdomains. Empty arrays allow the + * video to be viewed on any origin. + */ + allowedOrigins?: Array; + /** + * A user-defined identifier for the media creator. + */ + creator?: string; + /** + * The maximum duration in seconds for a video upload. Can be set for a + * video that is not yet uploaded to limit its duration. Uploads that exceed the + * specified duration will fail during processing. A value of `-1` means the value + * is unknown. + */ + maxDurationSeconds?: number; + /** + * A user modifiable key-value store used to reference other systems of + * record for managing videos. + */ + meta?: Record; + /** + * Indicates whether the video can be a accessed using the id. When + * set to `true`, a signed token must be generated with a signing key to view the + * video. + */ + requireSignedURLs?: boolean; + /** + * Indicates the date and time at which the video will be deleted. Omit + * the field to indicate no change, or include with a `null` value to remove an + * existing scheduled deletion. If specified, must be at least 30 days from upload + * time. + */ + scheduledDeletion?: string | null; + /** + * The timestamp for a thumbnail image calculated as a percentage value + * of the video's duration. To convert from a second-wise timestamp to a + * percentage, divide the desired timestamp by the total duration of the video. If + * this value is not set, the default thumbnail image is taken from 0s of the + * video. + */ + thumbnailTimestampPct?: number; +}; +type StreamCaption = { + /** + * Whether the caption was generated via AI. + */ + generated?: boolean; + /** + * The language label displayed in the native language to users. + */ + label: string; + /** + * The language tag in BCP 47 format. + */ + language: string; + /** + * The status of a generated caption. + */ + status?: 'ready' | 'inprogress' | 'error'; +}; +type StreamDownloadStatus = 'ready' | 'inprogress' | 'error'; +type StreamDownloadType = 'default' | 'audio'; +type StreamDownload = { + /** + * Indicates the progress as a percentage between 0 and 100. + */ + percentComplete: number; + /** + * The status of a generated download. + */ + status: StreamDownloadStatus; + /** + * The URL to access the generated download. + */ + url?: string; +}; +/** + * An object with download type keys. Each key is optional and only present if that + * download type has been created. + */ +type StreamDownloadGetResponse = { + /** + * The audio-only download. Only present if this download type has been created. + */ + audio?: StreamDownload; + /** + * The default video download. Only present if this download type has been created. + */ + default?: StreamDownload; +}; +type StreamWatermarkPosition = 'upperRight' | 'upperLeft' | 'lowerLeft' | 'lowerRight' | 'center'; +type StreamWatermark = { + /** + * The unique identifier for a watermark profile. + */ + id: string; + /** + * The size of the image in bytes. + */ + size: number; + /** + * The height of the image in pixels. + */ + height: number; + /** + * The width of the image in pixels. + */ + width: number; + /** + * The date and a time a watermark profile was created. + */ + created: string; + /** + * The source URL for a downloaded image. If the watermark profile was created via + * direct upload, this field is null. + */ + downloadedFrom: string | null; + /** + * A short description of the watermark profile. + */ + name: string; + /** + * The translucency of the image. A value of `0.0` makes the image completely + * transparent, and `1.0` makes the image completely opaque. Note that if the image + * is already semi-transparent, setting this to `1.0` will not make the image + * completely opaque. + */ + opacity: number; + /** + * The whitespace between the adjacent edges (determined by position) of the video + * and the image. `0.0` indicates no padding, and `1.0` indicates a fully padded + * video width or length, as determined by the algorithm. + */ + padding: number; + /** + * The size of the image relative to the overall size of the video. This parameter + * will adapt to horizontal and vertical videos automatically. `0.0` indicates no + * scaling (use the size of the image as-is), and `1.0 `fills the entire video. + */ + scale: number; + /** + * The location of the image. Valid positions are: `upperRight`, `upperLeft`, + * `lowerLeft`, `lowerRight`, and `center`. Note that `center` ignores the + * `padding` parameter. + */ + position: StreamWatermarkPosition; +}; +type StreamWatermarkCreateParams = { + /** + * A short description of the watermark profile. + */ + name?: string; + /** + * The translucency of the image. A value of `0.0` makes the image completely + * transparent, and `1.0` makes the image completely opaque. Note that if the + * image is already semi-transparent, setting this to `1.0` will not make the + * image completely opaque. + */ + opacity?: number; + /** + * The whitespace between the adjacent edges (determined by position) of the + * video and the image. `0.0` indicates no padding, and `1.0` indicates a fully + * padded video width or length, as determined by the algorithm. + */ + padding?: number; + /** + * The size of the image relative to the overall size of the video. This + * parameter will adapt to horizontal and vertical videos automatically. `0.0` + * indicates no scaling (use the size of the image as-is), and `1.0 `fills the + * entire video. + */ + scale?: number; + /** + * The location of the image. + */ + position?: StreamWatermarkPosition; +}; +type StreamVideosListParams = { + /** + * The maximum number of videos to return. + */ + limit?: number; + /** + * Return videos created before this timestamp. + * (RFC3339/RFC3339Nano) + */ + before?: string; + /** + * Comparison operator for the `before` field. + * @default 'lt' + */ + beforeComp?: StreamPaginationComparison; + /** + * Return videos created after this timestamp. + * (RFC3339/RFC3339Nano) + */ + after?: string; + /** + * Comparison operator for the `after` field. + * @default 'gte' + */ + afterComp?: StreamPaginationComparison; +}; +type StreamPaginationComparison = 'eq' | 'gt' | 'gte' | 'lt' | 'lte'; +/** + * Error object for Stream binding operations. + */ +interface StreamError extends Error { + readonly code: number; + readonly statusCode: number; + readonly message: string; + readonly stack?: string; +} +interface InternalError extends StreamError { + name: 'InternalError'; +} +interface BadRequestError extends StreamError { + name: 'BadRequestError'; +} +interface NotFoundError extends StreamError { + name: 'NotFoundError'; +} +interface ForbiddenError extends StreamError { + name: 'ForbiddenError'; +} +interface RateLimitedError extends StreamError { + name: 'RateLimitedError'; +} +interface QuotaReachedError extends StreamError { + name: 'QuotaReachedError'; +} +interface MaxFileSizeError extends StreamError { + name: 'MaxFileSizeError'; +} +interface InvalidURLError extends StreamError { + name: 'InvalidURLError'; +} +interface AlreadyUploadedError extends StreamError { + name: 'AlreadyUploadedError'; +} +interface TooManyWatermarksError extends StreamError { + name: 'TooManyWatermarksError'; +} +type MarkdownDocument = { + name: string; + blob: Blob; +}; +type ConversionResponse = { + id: string; + name: string; + mimeType: string; + format: 'markdown'; + tokens: number; + data: string; +} | { + id: string; + name: string; + mimeType: string; + format: 'error'; + error: string; +}; +type ImageConversionOptions = { + descriptionLanguage?: 'en' | 'es' | 'fr' | 'it' | 'pt' | 'de'; +}; +type EmbeddedImageConversionOptions = ImageConversionOptions & { + convert?: boolean; + maxConvertedImages?: number; +}; +type ConversionOptions = { + html?: { + images?: EmbeddedImageConversionOptions & { + convertOGImage?: boolean; + }; + hostname?: string; + cssSelector?: string; + }; + docx?: { + images?: EmbeddedImageConversionOptions; + }; + image?: ImageConversionOptions; + pdf?: { + images?: EmbeddedImageConversionOptions; + metadata?: boolean; + }; +}; +type ConversionRequestOptions = { + gateway?: GatewayOptions; + extraHeaders?: object; + conversionOptions?: ConversionOptions; +}; +type SupportedFileFormat = { + mimeType: string; + extension: string; +}; +declare abstract class ToMarkdownService { + transform(files: MarkdownDocument[], options?: ConversionRequestOptions): Promise; + transform(files: MarkdownDocument, options?: ConversionRequestOptions): Promise; + supported(): Promise; +} +declare namespace TailStream { + interface Header { + readonly name: string; + readonly value: string; + } + interface FetchEventInfo { + readonly type: "fetch"; + readonly method: string; + readonly url: string; + readonly cfJson?: object; + readonly headers: Header[]; + } + interface JsRpcEventInfo { + readonly type: "jsrpc"; + } + interface ScheduledEventInfo { + readonly type: "scheduled"; + readonly scheduledTime: Date; + readonly cron: string; + } + interface AlarmEventInfo { + readonly type: "alarm"; + readonly scheduledTime: Date; + } + interface QueueEventInfo { + readonly type: "queue"; + readonly queueName: string; + readonly batchSize: number; + } + interface EmailEventInfo { + readonly type: "email"; + readonly mailFrom: string; + readonly rcptTo: string; + readonly rawSize: number; + } + interface TraceEventInfo { + readonly type: "trace"; + readonly traces: (string | null)[]; + } + interface HibernatableWebSocketEventInfoMessage { + readonly type: "message"; + } + interface HibernatableWebSocketEventInfoError { + readonly type: "error"; + } + interface HibernatableWebSocketEventInfoClose { + readonly type: "close"; + readonly code: number; + readonly wasClean: boolean; + } + interface HibernatableWebSocketEventInfo { + readonly type: "hibernatableWebSocket"; + readonly info: HibernatableWebSocketEventInfoClose | HibernatableWebSocketEventInfoError | HibernatableWebSocketEventInfoMessage; + } + interface CustomEventInfo { + readonly type: "custom"; + } + interface FetchResponseInfo { + readonly type: "fetch"; + readonly statusCode: number; + } + interface ConnectEventInfo { + readonly type: "connect"; + } + type EventOutcome = "ok" | "canceled" | "exception" | "unknown" | "killSwitch" | "daemonDown" | "exceededCpu" | "exceededMemory" | "loadShed" | "responseStreamDisconnected" | "scriptNotFound" | "internalError"; + interface ScriptVersion { + readonly id: string; + readonly tag?: string; + readonly message?: string; + } + interface TracePreviewInfo { + readonly id: string; + readonly slug: string; + readonly name: string; + } + interface Onset { + readonly type: "onset"; + readonly attributes: Attribute[]; + // id for the span being opened by this Onset event. + readonly spanId: string; + readonly dispatchNamespace?: string; + readonly entrypoint?: string; + readonly executionModel: string; + readonly scriptName?: string; + readonly scriptTags?: string[]; + readonly scriptVersion?: ScriptVersion; + readonly preview?: TracePreviewInfo; + readonly info: FetchEventInfo | ConnectEventInfo | JsRpcEventInfo | ScheduledEventInfo | AlarmEventInfo | QueueEventInfo | EmailEventInfo | TraceEventInfo | HibernatableWebSocketEventInfo | CustomEventInfo; + } + interface Outcome { + readonly type: "outcome"; + readonly outcome: EventOutcome; + readonly cpuTime: number; + readonly wallTime: number; + } + interface SpanOpen { + readonly type: "spanOpen"; + readonly name: string; + // id for the span being opened by this SpanOpen event. + readonly spanId: string; + readonly info?: FetchEventInfo | JsRpcEventInfo | Attributes; + } + interface SpanClose { + readonly type: "spanClose"; + readonly outcome: EventOutcome; + } + interface DiagnosticChannelEvent { + readonly type: "diagnosticChannel"; + readonly channel: string; + readonly message: any; + } + interface Exception { + readonly type: "exception"; + readonly name: string; + readonly message: string; + readonly stack?: string; + } + interface Log { + readonly type: "log"; + readonly level: "debug" | "error" | "info" | "log" | "warn"; + readonly message: object; + } + interface DroppedEventsDiagnostic { + readonly diagnosticsType: "droppedEvents"; + readonly count: number; + } + interface StreamDiagnostic { + readonly type: 'streamDiagnostic'; + // To add new diagnostic types, define a new interface and add it to this union type. + readonly diagnostic: DroppedEventsDiagnostic; + } + // This marks the worker handler return information. + // This is separate from Outcome because the worker invocation can live for a long time after + // returning. For example - Websockets that return an http upgrade response but then continue + // streaming information or SSE http connections. + interface Return { + readonly type: "return"; + readonly info?: FetchResponseInfo; + } + interface Attribute { + readonly name: string; + readonly value: string | string[] | boolean | boolean[] | number | number[] | bigint | bigint[]; + } + interface Attributes { + readonly type: "attributes"; + readonly info: Attribute[]; + } + type EventType = Onset | Outcome | SpanOpen | SpanClose | DiagnosticChannelEvent | Exception | Log | StreamDiagnostic | Return | Attributes; + // Context in which this trace event lives. + interface SpanContext { + // Single id for the entire top-level invocation + // This should be a new traceId for the first worker stage invoked in the eyeball request and then + // same-account service-bindings should reuse the same traceId but cross-account service-bindings + // should use a new traceId. + readonly traceId: string; + // spanId in which this event is handled + // for Onset and SpanOpen events this would be the parent span id + // for Outcome and SpanClose these this would be the span id of the opening Onset and SpanOpen events + // For Hibernate and Mark this would be the span under which they were emitted. + // spanId is not set ONLY if: + // 1. This is an Onset event + // 2. We are not inheriting any SpanContext. (e.g. this is a cross-account service binding or a new top-level invocation) + readonly spanId?: string; + } + interface TailEvent { + // invocation id of the currently invoked worker stage. + // invocation id will always be unique to every Onset event and will be the same until the Outcome event. + readonly invocationId: string; + // Inherited spanContext for this event. + readonly spanContext: SpanContext; + readonly timestamp: Date; + readonly sequence: number; + readonly event: Event; + } + type TailEventHandler = (event: TailEvent) => void | Promise; + type TailEventHandlerObject = { + outcome?: TailEventHandler; + spanOpen?: TailEventHandler; + spanClose?: TailEventHandler; + diagnosticChannel?: TailEventHandler; + exception?: TailEventHandler; + log?: TailEventHandler; + return?: TailEventHandler; + attributes?: TailEventHandler; + }; + type TailEventHandlerType = TailEventHandler | TailEventHandlerObject; +} +// Copyright (c) 2022-2023 Cloudflare, Inc. +// Licensed under the Apache 2.0 license found in the LICENSE file or at: +// https://opensource.org/licenses/Apache-2.0 +/** + * Data types supported for holding vector metadata. + */ +type VectorizeVectorMetadataValue = string | number | boolean | string[]; +/** + * Additional information to associate with a vector. + */ +type VectorizeVectorMetadata = VectorizeVectorMetadataValue | Record; +type VectorFloatArray = Float32Array | Float64Array; +interface VectorizeError { + code?: number; + error: string; +} +/** + * Comparison logic/operation to use for metadata filtering. + * + * This list is expected to grow as support for more operations are released. + */ +type VectorizeVectorMetadataFilterOp = '$eq' | '$ne' | '$lt' | '$lte' | '$gt' | '$gte'; +type VectorizeVectorMetadataFilterCollectionOp = '$in' | '$nin'; +/** + * Filter criteria for vector metadata used to limit the retrieved query result set. + */ +type VectorizeVectorMetadataFilter = { + [field: string]: Exclude | null | { + [Op in VectorizeVectorMetadataFilterOp]?: Exclude | null; + } | { + [Op in VectorizeVectorMetadataFilterCollectionOp]?: Exclude[]; + }; +}; +/** + * Supported distance metrics for an index. + * Distance metrics determine how other "similar" vectors are determined. + */ +type VectorizeDistanceMetric = "euclidean" | "cosine" | "dot-product"; +/** + * Metadata return levels for a Vectorize query. + * + * Default to "none". + * + * @property all Full metadata for the vector return set, including all fields (including those un-indexed) without truncation. This is a more expensive retrieval, as it requires additional fetching & reading of un-indexed data. + * @property indexed Return all metadata fields configured for indexing in the vector return set. This level of retrieval is "free" in that no additional overhead is incurred returning this data. However, note that indexed metadata is subject to truncation (especially for larger strings). + * @property none No indexed metadata will be returned. + */ +type VectorizeMetadataRetrievalLevel = "all" | "indexed" | "none"; +interface VectorizeQueryOptions { + topK?: number; + namespace?: string; + returnValues?: boolean; + returnMetadata?: boolean | VectorizeMetadataRetrievalLevel; + filter?: VectorizeVectorMetadataFilter; +} +/** + * Information about the configuration of an index. + */ +type VectorizeIndexConfig = { + dimensions: number; + metric: VectorizeDistanceMetric; +} | { + preset: string; // keep this generic, as we'll be adding more presets in the future and this is only in a read capacity +}; +/** + * Metadata about an existing index. + * + * This type is exclusively for the Vectorize **beta** and will be deprecated once Vectorize RC is released. + * See {@link VectorizeIndexInfo} for its post-beta equivalent. + */ +interface VectorizeIndexDetails { + /** The unique ID of the index */ + readonly id: string; + /** The name of the index. */ + name: string; + /** (optional) A human readable description for the index. */ + description?: string; + /** The index configuration, including the dimension size and distance metric. */ + config: VectorizeIndexConfig; + /** The number of records containing vectors within the index. */ + vectorsCount: number; +} +/** + * Metadata about an existing index. + */ +interface VectorizeIndexInfo { + /** The number of records containing vectors within the index. */ + vectorCount: number; + /** Number of dimensions the index has been configured for. */ + dimensions: number; + /** ISO 8601 datetime of the last processed mutation on in the index. All changes before this mutation will be reflected in the index state. */ + processedUpToDatetime: number; + /** UUIDv4 of the last mutation processed by the index. All changes before this mutation will be reflected in the index state. */ + processedUpToMutation: number; +} +/** + * Represents a single vector value set along with its associated metadata. + */ +interface VectorizeVector { + /** The ID for the vector. This can be user-defined, and must be unique. It should uniquely identify the object, and is best set based on the ID of what the vector represents. */ + id: string; + /** The vector values */ + values: VectorFloatArray | number[]; + /** The namespace this vector belongs to. */ + namespace?: string; + /** Metadata associated with the vector. Includes the values of other fields and potentially additional details. */ + metadata?: Record; +} +/** + * Represents a matched vector for a query along with its score and (if specified) the matching vector information. + */ +type VectorizeMatch = Pick, "values"> & Omit & { + /** The score or rank for similarity, when returned as a result */ + score: number; +}; +/** + * A set of matching {@link VectorizeMatch} for a particular query. + */ +interface VectorizeMatches { + matches: VectorizeMatch[]; + count: number; +} +/** + * Results of an operation that performed a mutation on a set of vectors. + * Here, `ids` is a list of vectors that were successfully processed. + * + * This type is exclusively for the Vectorize **beta** and will be deprecated once Vectorize RC is released. + * See {@link VectorizeAsyncMutation} for its post-beta equivalent. + */ +interface VectorizeVectorMutation { + /* List of ids of vectors that were successfully processed. */ + ids: string[]; + /* Total count of the number of processed vectors. */ + count: number; +} +/** + * Result type indicating a mutation on the Vectorize Index. + * Actual mutations are processed async where the `mutationId` is the unique identifier for the operation. + */ +interface VectorizeAsyncMutation { + /** The unique identifier for the async mutation operation containing the changeset. */ + mutationId: string; +} +/** + * A Vectorize Vector Search Index for querying vectors/embeddings. + * + * This type is exclusively for the Vectorize **beta** and will be deprecated once Vectorize RC is released. + * See {@link Vectorize} for its new implementation. + */ +declare abstract class VectorizeIndex { + /** + * Get information about the currently bound index. + * @returns A promise that resolves with information about the current index. + */ + public describe(): Promise; + /** + * Use the provided vector to perform a similarity search across the index. + * @param vector Input vector that will be used to drive the similarity search. + * @param options Configuration options to massage the returned data. + * @returns A promise that resolves with matched and scored vectors. + */ + public query(vector: VectorFloatArray | number[], options?: VectorizeQueryOptions): Promise; + /** + * Insert a list of vectors into the index dataset. If a provided id exists, an error will be thrown. + * @param vectors List of vectors that will be inserted. + * @returns A promise that resolves with the ids & count of records that were successfully processed. + */ + public insert(vectors: VectorizeVector[]): Promise; + /** + * Upsert a list of vectors into the index dataset. If a provided id exists, it will be replaced with the new values. + * @param vectors List of vectors that will be upserted. + * @returns A promise that resolves with the ids & count of records that were successfully processed. + */ + public upsert(vectors: VectorizeVector[]): Promise; + /** + * Delete a list of vectors with a matching id. + * @param ids List of vector ids that should be deleted. + * @returns A promise that resolves with the ids & count of records that were successfully processed (and thus deleted). + */ + public deleteByIds(ids: string[]): Promise; + /** + * Get a list of vectors with a matching id. + * @param ids List of vector ids that should be returned. + * @returns A promise that resolves with the raw unscored vectors matching the id set. + */ + public getByIds(ids: string[]): Promise; +} +/** + * A Vectorize Vector Search Index for querying vectors/embeddings. + * + * Mutations in this version are async, returning a mutation id. + */ +declare abstract class Vectorize { + /** + * Get information about the currently bound index. + * @returns A promise that resolves with information about the current index. + */ + public describe(): Promise; + /** + * Use the provided vector to perform a similarity search across the index. + * @param vector Input vector that will be used to drive the similarity search. + * @param options Configuration options to massage the returned data. + * @returns A promise that resolves with matched and scored vectors. + */ + public query(vector: VectorFloatArray | number[], options?: VectorizeQueryOptions): Promise; + /** + * Use the provided vector-id to perform a similarity search across the index. + * @param vectorId Id for a vector in the index against which the index should be queried. + * @param options Configuration options to massage the returned data. + * @returns A promise that resolves with matched and scored vectors. + */ + public queryById(vectorId: string, options?: VectorizeQueryOptions): Promise; + /** + * Insert a list of vectors into the index dataset. If a provided id exists, an error will be thrown. + * @param vectors List of vectors that will be inserted. + * @returns A promise that resolves with a unique identifier of a mutation containing the insert changeset. + */ + public insert(vectors: VectorizeVector[]): Promise; + /** + * Upsert a list of vectors into the index dataset. If a provided id exists, it will be replaced with the new values. + * @param vectors List of vectors that will be upserted. + * @returns A promise that resolves with a unique identifier of a mutation containing the upsert changeset. + */ + public upsert(vectors: VectorizeVector[]): Promise; + /** + * Delete a list of vectors with a matching id. + * @param ids List of vector ids that should be deleted. + * @returns A promise that resolves with a unique identifier of a mutation containing the delete changeset. + */ + public deleteByIds(ids: string[]): Promise; + /** + * Get a list of vectors with a matching id. + * @param ids List of vector ids that should be returned. + * @returns A promise that resolves with the raw unscored vectors matching the id set. + */ + public getByIds(ids: string[]): Promise; +} +/** + * The interface for "version_metadata" binding + * providing metadata about the Worker Version using this binding. + */ +type WorkerVersionMetadata = { + /** The ID of the Worker Version using this binding */ + id: string; + /** The tag of the Worker Version using this binding */ + tag: string; + /** The timestamp of when the Worker Version was uploaded */ + timestamp: string; +}; +interface DynamicDispatchLimits { + /** + * Limit CPU time in milliseconds. + */ + cpuMs?: number; + /** + * Limit number of subrequests. + */ + subRequests?: number; +} +interface DynamicDispatchOptions { + /** + * Limit resources of invoked Worker script. + */ + limits?: DynamicDispatchLimits; + /** + * Arguments for outbound Worker script, if configured. + */ + outbound?: { + [key: string]: any; + }; +} +interface DispatchNamespace { + /** + * @param name Name of the Worker script. + * @param args Arguments to Worker script. + * @param options Options for Dynamic Dispatch invocation. + * @returns A Fetcher object that allows you to send requests to the Worker script. + * @throws If the Worker script does not exist in this dispatch namespace, an error will be thrown. + */ + get(name: string, args?: { + [key: string]: any; + }, options?: DynamicDispatchOptions): Fetcher; +} +declare module 'cloudflare:workflows' { + /** + * NonRetryableError allows for a user to throw a fatal error + * that makes a Workflow instance fail immediately without triggering a retry + */ + export class NonRetryableError extends Error { + public constructor(message: string, name?: string); + } +} +declare abstract class Workflow { + /** + * Get a handle to an existing instance of the Workflow. + * @param id Id for the instance of this Workflow + * @returns A promise that resolves with a handle for the Instance + */ + public get(id: string): Promise; + /** + * Create a new instance and return a handle to it. If a provided id exists, an error will be thrown. + * @param options Options when creating an instance including id and params + * @returns A promise that resolves with a handle for the Instance + */ + public create(options?: WorkflowInstanceCreateOptions): Promise; + /** + * Create a batch of instances and return handle for all of them. If a provided id exists, an error will be thrown. + * `createBatch` is limited at 100 instances at a time or when the RPC limit for the batch (1MiB) is reached. + * @param batch List of Options when creating an instance including name and params + * @returns A promise that resolves with a list of handles for the created instances. + */ + public createBatch(batch: WorkflowInstanceCreateOptions[]): Promise; +} +type WorkflowDurationLabel = 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'year'; +type WorkflowSleepDuration = `${number} ${WorkflowDurationLabel}${'s' | ''}` | number; +type WorkflowRetentionDuration = WorkflowSleepDuration; +interface WorkflowInstanceCreateOptions { + /** + * An id for your Workflow instance. Must be unique within the Workflow. + */ + id?: string; + /** + * The event payload the Workflow instance is triggered with + */ + params?: PARAMS; + /** + * The retention policy for Workflow instance. + * Defaults to the maximum retention period available for the owner's account. + */ + retention?: { + successRetention?: WorkflowRetentionDuration; + errorRetention?: WorkflowRetentionDuration; + }; +} +type InstanceStatus = { + status: 'queued' // means that instance is waiting to be started (see concurrency limits) + | 'running' | 'paused' | 'errored' | 'terminated' // user terminated the instance while it was running + | 'complete' | 'waiting' // instance is hibernating and waiting for sleep or event to finish + | 'waitingForPause' // instance is finishing the current work to pause + | 'unknown'; + error?: { + name: string; + message: string; + }; + output?: unknown; +}; +interface WorkflowError { + code?: number; + message: string; +} +interface WorkflowInstanceRestartOptions { + /** + * Restart from a specific step. If omitted, the instance restarts from the beginning. + * The step must exist in the instance's execution history. + */ + from?: { + /** + * The step name as defined in your workflow code. + */ + name: string; + /** + * 1-indexed occurrence of this step name. Use when the same step name appears multiple times (e.g. in a loop). + * @default 1 + */ + count?: number; + /** + * Step type filter. Use when different step types share the same name. + */ + type?: 'do' | 'sleep' | 'waitForEvent'; + }; +} +declare abstract class WorkflowInstance { + public id: string; + /** + * Pause the instance. + */ + public pause(): Promise; + /** + * Resume the instance. If it is already running, an error will be thrown. + */ + public resume(): Promise; + /** + * Terminate the instance. If it is errored, terminated or complete, an error will be thrown. + */ + public terminate(): Promise; + /** + * Restart the instance. Optionally restart from a specific step, preserving + * cached results for all steps before it. + * @param options Options for the restart, including an optional step to restart from. + */ + public restart(options?: WorkflowInstanceRestartOptions): Promise; + /** + * Returns the current status of the instance. + */ + public status(): Promise; + /** + * Send an event to this instance. + */ + public sendEvent({ type, payload, }: { + type: string; + payload: unknown; + }): Promise; +} diff --git a/edge-api/wrangler.jsonc b/edge-api/wrangler.jsonc new file mode 100644 index 0000000000..95d3c4ce46 --- /dev/null +++ b/edge-api/wrangler.jsonc @@ -0,0 +1,55 @@ +/** + * For more details on how to configure Wrangler, refer to: + * https://developers.cloudflare.com/workers/wrangler/configuration/ + */ +{ + "$schema": "node_modules/wrangler/config-schema.json", + "name": "edge-api", + "main": "src/index.ts", + "compatibility_date": "2026-05-13", + "observability": { + "enabled": true + }, + "upload_source_maps": true, + "compatibility_flags": [ + "nodejs_compat" + ], + "vars": { + "APP_NAME": "edge-api", + "COURSE_NAME": "devops-core" + }, + "kv_namespaces": [ + { + "binding": "SETTINGS", + "id": "74e9b2b0de1b45689af2f523eca4af2f" + } + ] + /** + * Smart Placement + * https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement + */ + // "placement": { "mode": "smart" } + /** + * Bindings + * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including + * databases, object storage, AI inference, real-time communication and more. + * https://developers.cloudflare.com/workers/runtime-apis/bindings/ + */ + /** + * Environment Variables + * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables + * Note: Use secrets to store sensitive data. + * https://developers.cloudflare.com/workers/configuration/secrets/ + */ + // "vars": { "MY_VARIABLE": "production_value" } + /** + * Static Assets + * https://developers.cloudflare.com/workers/static-assets/binding/ + */ + // "assets": { "directory": "./public/", "binding": "ASSETS" } + /** + * Service Bindings (communicate between multiple Workers) + * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings + */ + // "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ] +} \ No newline at end of file diff --git a/screenshots/image-1.png b/screenshots/image-1.png new file mode 100644 index 0000000000000000000000000000000000000000..9ccaad5b0f56606479bd3711a18b3bcc00d567cf GIT binary patch literal 174994 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

ogmc1rsIC!Jg$va53 zkTX91;}s8rT7;B8{vg=^X3BRpD=c0PL69D0Je7O4Uh`R;OgaM5q01D+!*fFaAb`4= zkr9cu2IzMY?P%I)#_m8k(o8hO62uZOLC~PL`G0b4nkyE?dG#*<_vCG{k)=G+SREu9 z_n*rvEQ}Y;(la8iJi?6PY`}E^?MZ`&;2;Hx7Ncew!+VhuYsK|-UJjjewj%17jZC>(usNk=By4Q0SZ{+z=G*aya=0b5le=Izm5ApM@5 zc}HQWWF&QDJpgS91B8)w4P-lb{F|B#a9I|nlB-^v?mW7NW`&%CtCfz14B`av?=C*2 z``2HaKyOTdEI2<#sg79f&>w;>A8$CpeV5h1f)H{5XpUpsO>Lq@#r(%+=F^N*zIz#b z$_wlywU?L44~Bn}1MEu_)ZZNkyp&0;*TOe3H4Xd?wrCu^;6ci(Nr@^E#RDh$8>-H$ zWzqrVz$c$W4qxc?MH98F2}fGmVOjfsm@!(K0IanK@%@S_{xxbAP?ke~cB##N;{YH^ zD!QBefeiNN`M`}8mW^VpW36B*eARV zDu*N^sq3bqx!D*<_|??ZhEFf5ih=NkXstzmKl_n;kJUghG}$VgADKxJj>G79`t&Z$ zwc7%}Z6Kc{`9;ZAMDrY-Wl>}=1>8+`3Q{6Y;vRcL=cS6{ut*d8BRg(*aINJ_b0Z}P+A4H?vyE5Ti+{L?z<;F9f|$?2TFF$-e%}IQII3)kP{vql zWZ}mm+aQ7b3w;I*K#sBYDB{OL1X(Sbs=|pmkN7dsEX_5uL^MCZFOK2XBd`f(T)e$- z%7Ag0S$^ujEO)SzLer4RH(rv!weik*yS(njAGV9_J&r9-iDCNyplJ99Vq) z4e!57D@jzpq%Yl>=9$-P_0C1j%ijIzF#XX79eTCmIX>QfL$sf~|I9AchE($U*My&s zspRYSn3$bhDqjfxrVvoo3#Pv8)3ymoXw-q@fLb&AaAx5jZ!jicu5ae$T~6QQZ+7(P zD_F{D1K?1#-|OfN$kgVUAC{pSRNplK=?efHOLy#qr>6^8VqCQ_Q~*FnT@%_7!N2y< z29X+c-9)8Y7i^r=aq21(Y;maJu3|jZ_dp>4>t@ zCOP6QLr`^NA8G(a2H#{3f|qgvKt+?2lQV(sX1g5%v;dPnM@QSLJSBN~O(2?3(@TOh z41>XE8)dJwRFz<`0EyRtU7W4-XsK*ziK-PfA;ZRB^<^ zgWWxL+3VZ#;CNKpi2Flu@Vhz`9a-CbNu-6 z9+Zy=#BtCm)o5X8HyA9p!zoS-agWGHfw6&ho|&0>Xn5GHQi+R&w(0=%+}w+5iaeKS zdmHNNqC-OO{F5woq#hZOKcD7PAtQNgWvpr_UsncXDZ>t zFM$)k<{$f4V8ZM1E`eUfd>^!Ii2D;CM0^Z=-H4a+s-_gVrPsd#_R==sJBEf<`YiL| ztp?8ioMf|2W$-mV%0fJloHb7pkZB+Mu+43iXp@$%t^(RSo+A{)#LkYdIa$Wym<&kS z$##cOj?83}T%^expUqsY!B!(6Z@KdPe0F!;f6sgel}ZIVadU49e@_H}vKr|+Y}7*| zBc$pQgok7^rh^sN1E>16nIE}rZr>N;P9cU1e)Pd7{RO$Xx=zh&i&ZH)%}+&-LPl^h zZ@fC{^B((7$g$u_C32pKmft4MDG8*P;mah1bU7R}bB+c|}v$0?|H2;>W|$+nHnBo9Kenf7D`Kt|{I0DUSL9i1d+I7brW8u|s0ZoWGg zn&!Ur4#e}^)V>(OkOqf9ys&s*&?8A-DD?)GPCm7U@(!y6{2fx;&pL|&+!-1l&&|qG zk5Pqz73iu69iHg5a?b^ErCXReMkZgI`}oMC3Tngn_D$cD?)b}SUDwHmUJT|{eLX$? zefu)Hx-4&TI6hj<%&FyfV?LX5U1*hacD*0lpY5NIDB zd~(%684!i0$=@X%HIqve-;xA7&8KouVK%!(AE|>OO*v$4C!S=;1))?$hGkRD7-S}2 zz}7%M==k_U0G|9=%zk%)xXtsZq+bR$%W(A?lLe$fXUft+`47x-tl@=tRoVA@EIS3P z3APu^57CfEo0*wmIUa@PD)m)8{HS#xwiBnZ=;1yfT0dkH;v6NP`Zax*ojg{+m!V_r z191xPq71Y*Qd#sCxX+OiGDzy6T^>&ky_kjU5wOZv*?5NBFuN#!db!n63}xUV2Vee=(@`NX6oYDUIuoKLeL4*+Fg zG)e z2wPNOUoT}j{q1knZ3kXje}4>R8)`P78qK==51p_z87j6Bm z8W#%ghVFB=TF+IIZnO0FNfw?c^pK={{%p(j=4U$VttQ;IFb!#R%h;A*Kr_n7QKeEF zcZ4FU4;FaMTS2lnUOv74@cl$&YQ!fb?1yj@lk?8l{DvuD*Q7%dk!%c+;kebZ*ews; z#h_ADlmvb;xu~d!yDk}W?e`}JAUydF9so9eWB^bWCeO1|KrP_A!smLk&8-Vkwm8+_ zT(JkH$PA5J1@9bKehq+k;6n?WjNt}oeWS86gXEsHxdlMoK{6n?58xxhnB({+LzRVv z1ykE5*>I29sR6v=NIx(50{m!zSWH2z;gF4imEf8R!mH1w)F+y> zhEC5C(JeGt>t6CmOG~@pLP2ra-rnxwM-ih66NU@0dOc>x3&Q#^_rQV3cBW|ho9m~} z&IW`boj&3uz!c%NC|ukv^_jEgs*~02{QLuwS9YweF?J|&7J$AQkJ%-i{pRMR`Sxoe zW4w?`WVBb*y*GUN7WuYykg0Z#X+OcFLKZo!uoQ zWKuz7?X(@tE`T#YIFB@qF6K8rij{0uke=S&EDu=2we`$oXqg=Jb$W(|Wk0JaZB?>r zP!v!T5^#Mtc>F=MkTc4Tp{P>4ImV&C>~|IA12w2pasOuWh20r)eMY EKg+a%(*OVf literal 0 HcmV?d00001 diff --git a/screenshots/image.png b/screenshots/image.png new file mode 100644 index 0000000000000000000000000000000000000000..4e229758359a6a2063f3aea1182d5281ed2d7aec GIT binary patch literal 108556 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

{vkZ(|@5^XdGO zxF6;J;4NID>6!9@l>z6x=mo!5osaydhTC~)?Wa48>5# zzY0&q`5XUyF2rBDU{9Jhmwmd}8Tuo?j-K97ne^~sAQtqIRrutM+qW6z<*!kL8T#wz zcCx*FWk7-NnG>Fe_MA@to(~xV%qa~G4Z2jho=U3R-$j6!xVV|j!GB`UI|h3@Cec(D z^|fR?j@dut8Lkw(41{)LQ;1NKAOMmdyWf9LxjC4epSIl~N?QD{XDYmFV|QZ#VH|Bt z5gl1UY6j>K!fMw_*V#H_@}D6Jdly}3ru(TPKc(#cx}6;t(usrcc4{m;H82krt{-+b zD*2sSA{=P~a808}LtIj_ciilsH`5VOE8cFjM)tc+c-d-v}DVri{B_ha^zw{2)F zKTR+6AIZOKBlqVzBc`w86jw%kg_OK&%a_Gl|4e1-lhU+8vm*t*dEbBj(*A7!(2ZyN z_QUldlUz4b=OohpbE?nAo+E{HwkPYE3ysS!hCKeBZ?HmSS61 z(;L4hAA8674;1@7sU8NcArYRSth@r?kej{3S~e1bB!l`(H?y1=M+)z5u(jbpJtGkmxsV| zWc`((PIduWL?F^RkG>IQ29l%)hljb+jL3zV{#O^)&wP0(d3iLR4dp{6%yEz^ZVN{T z7|QwA$Ap>tX#W~Vor&Fff{Hwcb5ZY{PTC^qb`^g}^=x`>uy5+OIT>Eu zM9Z9eGv4XXw_Pmvdy(rOK5WUgJ8AYh9tzDAI-T(tiC{Iea9<*4ybad9!uI)H`K!xshn4cJc3 zL?9TEwthI<$gu%AIbz7NDU-j!6I@nG+zaA8uQf7A?WmhuvB!~#p>4v#>Gv}Zs2F|) z`$KGJucNm!A#V}}3KU9o8+uYywq8S$OoCMqSvI<89wa`FC&`ej%Q^Ot6?|puG#pV0Ko!V6H9d`n{CoK&C>{}*m7JU&y>kLfqkem5TBDO9 z;1==JQ+&b|elnoGc~fu%_KLEJeTkZ8@ZAz~O@U1d`ptd{dg}=a--ckJ^o=)5H)A!> z*hH82Qj~K`NR+Ry?>i|i#}jCgLXr){qLI0vp5!+e(CI5>|0Y~`Ulfl`5497p>SA=yb8>Fc}ikbchIj~}z! z(~fP%S9l2U!UELG;I*!1` zFGGuuh?qnBqm;NQ0xCsKN`ipSEi3)#a*P9^vDGO$;5e6t1jPoap1sC8_=E}p<|hrx zJa+NOoDG$ynnbkt8I z*%Rs57R?J#DEeoijgo_4$eZB|1y@%z7#kTIlM^S^MdRLQr|NC} z?1-2Ksc2hy+sS8NGbYnbj|Q}e<+yJapw&YajFOB1QN+^c;QD+s&Gm4SML71NGFBQE z;M0$KcMEPgw>WM{3S{jJVDJ?C1`tuVB6!|T4rW=G~TQ?g# z@()EvEzTxvdV1cPoPmS0SoTBX#V}wG(^Ej+`QY@L^@?7hsB+A{yo|sL6@TtG;lwEZ zVYRT82yseA6v2j^MfB%{gg=A>IsE9aGZ+HMnIMD+gX%*?0ca_9quUS(*%{!1SDm-)uv^3-OE`xCMPl20EUuE$=(hG>I5R zNC||YrW{j65gd{S2R1Fm?qmLP*fP+{Pr>miK59|Iq}Wf@Or*Zdjtxal*^1l3gVR26 zTnN#nK=7JlYd{F^vh_Aq8A~EW0wSCmn`w#L=-B6{E5U-2qXKf_11AP%7^gLDG+kX1 z7VGr|--&|t2zd5v4>IrhEL%($(W9wn%Uy<7qgvMwm3s3DnhEg$ynK0(tZqKfDGt&) ziF9X)LqudQn;MFou;HFOeVT}eV_3dCVt@)q$Hchj5Vr|`5eG)vENQj!>QHBa zcmX5RRea&Ce!qS>q?LlQNd2+9(smzwz+sX7g6`q~P%uQA!4B$$l0puL0dXU6*(WQ@ zK6|VPhX({*yH z0Ex=@5sLw#A3;nK0|L-G@$oxdEXTk5U6rq7W{OjY{!GFrC>1mV;+)Mpg5EMJV~-Kx z5rJ5VN^H}bxtxoO3xS^=nfto?lhj@$S{3+Ks3P$!jd zR)3!F_zxjM`y+bctd_w>DriX+5XqtZM-M0r#pS5zIKkGB_%~s=fQGU4STYdyLA3&PwSt=zyB zy&$oaL5L$i*K+UE35C2wyh{uMjfM6n(AhhcWz*)-f*fS><)=Wn`$GZcE99^eC--Wg z5plB6_V0i7ecL<^{Ha6$ftiFFY&yT~>tMVEIlU_tP?cha{f@&omQjcZ1Rz|EdF$!! zzNgm_JelOOJenNk2M)Plu@kwT2-y^p{Rvz}u!yoPM=vfh5aANh8crv}A~S^rXbF7= z@d@Ei{fsfBTA$3Tkx-qwaV@1%x9RSl9)TQpT_6CGqaX(*W9g8bgibb^b?dUmWL54@ z6S5mk{E#3RiE)dxMQCnmzO5-~?Xg8SeHHRucC%0o3eVs3_&Y)q0^~bIokvS7S|5}T z9H7U(z8-Vu)~#3G6}l7TTqb%}Ua}3MqOBVgTcG9IL5cuKOx4Tcfvk)Z<;vyiw70B^ z-E&bCyNeb&%}$%uj?DsG`j2wruNKHABXYJa$Lmkhv#e!1LrKm;S z2weUcr-#5}Mp{|1{z>3NPl1oGFBM3q{+hkU#>PZ<16^E=W!&$20(HUv!Q7iiWBKlH z!#5>GrAhiKDj~BJiBM_Keak%03Kc4uGDVt;D09h_Nan~qHz0&EXDpE^l&Q?makh8A z{XXw{|9jVd)?@9pS6}Yoy3Xr7KjU#6A1~Qg{^1RD+a$a7_4O;OP$KBr+5OLsJK}=k z;+g}mY7uFfB9Mf5ipNl^go#$ej78ND=XV&x-)Ko+grFV~)kJ08F7?&5IiU2&6ATcf z{CLHabCW%&l%5#QTi<(hXq^xkG9{>RdL~6|1-^!y`v;A~RgH~W z{B!}y$9&j-qpClC+0`ig#xd-10L0YdlsRI1Ke6q=9xTJ=LUeh>6h1^3#BGwvAe8PC zP*hQ2L1$VXvInFVP7n`7R05nB{sVL>M~;3)SdL0My6;~f+Z3q@zKT|M`heOZQtvOQ z7QfF-!EXGGv*5YK{%wIT{_=Zz`Uw(4TGh*{B)Bv5n(l*?Py8J`R4HNPfSDr`x$n_F zTdtX3qxWGBPa?J;51+6;v0V!;aop|P8~U(EPFPsD*81-EF9*k>N61rt3dj8$_u&WK zn8Y-~4u$!ky}7}G9y!8vNs7(_XxIu>|p0(1mm8ss-|%K`UD$ z)NH$(KfgJ{T|Dzc%eRM&e))10-VvIHbQFBVb!7X5YYru=G92X>Ag#$9P=uQ$@`!kn zfM~EF%p;N~zFQ9%3w3dPoZaTOyESZm%Z{OnC9<;oXTs)tUW0_yGwC85&c1FP*J2o8 zL*${kJ*OPR5+XBZ1gSIj_m7^6^?{-$obU$#COxYQTM5kD@2!O6`lU21q zG3`R`Kny#{1##xa-Ou)Ftzs8{rxgcd@&z&1MLRq7_?6Mob$OgZQZ8<8Pm!w;Z6kEK zKO&(f1sizWvO8;cM5U(Q2e#@fHZCsrAZ!Z>W{B7tf%+f;BKT7Njya;WhV~>Y-12>F zg759Q8kX|_ef@yi9UWz`DcKud=F7`kxi_#y&?9CcAAxMVjJyW*1(YNXN0@D&y*2X_r>Q*$dOSm0LRcFVkg}{z=~9{<>!E(cq0i-MF@4! z>)ma|eZE1jl=RV%u7Ror!pL=-4&uyOX+ zXgPK-p{Z)782*DO^fu}*8$}G4o0*xBhMh%apkEcqJK(Br;@e(>kWYXwNUCtB%;uA= z_R!Xfp#~6+CuGG)M~Fm+2olpSevv1FB7jpJ!ft*6NaQ9shBr5G6U!h0a}_LZmi%Sz zf3X12aQT3SAi;N$gn?_vjr)DCz*C}HUznj#|d;0XLz7J8%JPf~!X6EqRWD$a}^+;$Dmg-N`r%Fac@uuiUhYf}=?!RDi7}oJSJBlDr{T2#Q_gS(36D zTm?z{K+;2PYz5L)Xd6(|Jc8#oTtaS{U)1y+FpdK+blBnpWp`ACGGns58{77A^J7zME$OHP>O+i$EvNf7K)70Mb!bgc5r z31AjTk)4z~OsoQTV2iDL^113ZBCubBYqt^ChFMvT0tDSbz@6?QJ--9!A<+(Wd5p>> zc@rv3%wlIhY)iB6BL-~y5#JoRCN3C85%4gNjCK~5;$wT~k!1-2mzCG#Cyo|*H?EO=`oK2z=EuIQ$h61026aq6H7|we&DiA8tb!VM zKgaXno$;7#CP?rScc%R&clm61Y>lv{_$DHy_ZkSLO~_?|E+u+G6+^JHODWSfb{=@p zrO1J9LOYbQ4d;#A#}QP8X_K3z9iCs_>Zeh&Z#`}kWt^l8xxRVdHS#zQRKn}_F!?aa z@UiV#O!tj7@+j-9z^ajIX>2dDlJ%4$XtET1N1=-q)w}hS8~OS9Ero8`>Rb3tiV7}s zbPo*)0wAH<{}Uhz5d=;4!nH0+N>eV68l~qwm_X47pY5R?R?lT!E0bHYOLrvhpkUoHc%19&C7Ea*r8?oQUW^_hp z5&JBq#O_7wCZ1i8$(0``Nh|WkHWvBi?S*b^08xB2Y*KiGX9=?W7q0uSl#k>B`@0_3 zdeisg?B2It-5&sq61VA;sePhwr*r53-p}ba@?t&L%q<|7Q08^*Y{!=Wt%uj@`~PZ$ zSWa^P3RQ10ryV&`+I#=N0^fkZzuVOx4ZMa!kF@&yr`HSTb?3j_Gqg0i#sfox%|#52 z8h{ZB^%1K? zq8li20A62)*d%3a0kJjOxzj~plQ6e0;yjLJ4Q>g!(-}sfWLR%BUv46_B1JxA@Clb| zvY--Gqwy2met{P_7D ziJj4s@z2vv5xE6ucc5G-27Qv|l-tiLw@1IW)VkJ-0;8Q>?3Kj@0?iQ6O1ObY-3&l^ z=ZXHcKww>mvj}p~y8C>oQLzUHa#wkTu%sw);E@Neosd5uEU=G6ib!vQ|Ge@~`;TC) zck1AKuR~v(ls6B|Ppl_u(ZHieAy@#OqbmCztlD%Rz(`2?cQ&Jfxp#V`7+}*d=-}PD zb!+*`mFTH(aaHHJ{SpDBhMs~-0l~3uzi|+W5}87PQ0gSUgfRQjPPHFi>@H;{q$LW` zHh@PAJeQbjitH{;j(331>&bszEh(HAEp^!?UcQ5V8c|S6;v4?;Niu2vUHYDSwm} zkO|W1QT2cz7QfKG2`>Dws_Gi@{nm@9r;)lf60|@w-vk02r=Yfb_4e)C$K+Vnvfhs_ zBRHV#$a>I|!J>9qHy_sMUE^n!A@E8)>zp3tAiCx$Bk7;M2I%YRzPlSDc~XgQ&5Y=S z2P-v2nNLj6S3Xu8x*)f#Xg{5y2Ve5$L8b5VhTcV&L0RlDdVO%Uw-FcgwB|#n~ z8R#qd3h};@dhP)aEB*aZ8EOj_!}*jg1xu5@uQKo2yHRt&rtj+E5Q@9eXM52o`KH5f zLPnN!-K0}=rB7JZbYwJ9MQ)ma+o%ykb~OXRIx3l07U$Uz`O>AY6NX_E*eZ#RBVrzk zr(JJl;j!v25gktY#KTuNr+MC7`=M$@zoCiC;}di%KXGOHh$sBEb2%gy6_xe)oZ82d z_Um=F#iKgTkM0QuhD5*hLZb8q1`%|LS1<*}`Kv<(6xvvMjLrAYvHU2H4e4{ty4HGX zd`!A`*R28rJlNfciip-3;$Tw84HnY727FmJS{-8y70^xr6lc7(JZDZd&r^jKU|eD8 z`GoVu`HLgxYmY8Dq~mGX=~>A7LS~chRuQ8gac3wd3#-M`7|XKhrXm4zjvuqkv ztO#m3VydU|nRYM3CU*BhpY+P|-(US5t}PV7oAw}ChYBzm90n0UxI2o)Wrxekc8hj z3l*6rC^-^2q(6P$ljqLe1D?7Y$th8bP1c{5c@oQ`S(shOjHQiQpnK=u*TWcd(NI6(EgjRsqct ze;!35X|-WsQ)VTdpsQl>TWfbZM(dK6ZKLN?-%^xWW7mJgE@-9vmK>Vlo#TD5owBIy z=@Z{D^!ELleV16BgN5ezKk*5?dQM~gS%b~LB?NwnO@%F)k)&hSqFA-jM~X9E3J+=; zmSxG2q6`nwZ`Gv)w9#MbSjH(6&@{vs6CqLSPw7b7Bg!>YAv)UrMs9uKdb>_@fD(CX z&x58(M*$MqCdv3njL{#Bi1Ty92aKoCJQG9Lj&t zL^`3`tqRMpV)2&f-9_&rrkr!woaxPA2_=fO`~-c+z@%2E3JDR=qn3Ii@Qas0RyP`7-^C7TNum%82t_6h$Z zEq)ZN2!#m&NThW>5+tJGPVt1NBEVrXiUpY$GC52~xlVsSV9yBZC!cYgiM%>Od|SZ$ zFHd|_&_56omSD>zyX34D%e`|vlcv@q6wQ}@5z4i}VZ1!L3K{C1+1N0uZAyC&yT>aS zYFRf{F8#_Bf4otbcqoX`vcO}LE;Ypzq*hXYK(wbN7xAnTDH)fsd7F#2m3Q@{2UnTS zr-cgK7VGJV){@nQ+U*a>NOfbWa+^?-VFtgK%mqPp!uxX4+YP2Oas%C$hwm0-#~X0A zxGc+IU!p0p5r%7RDxNI%G8v~YEZ0mAys+!{A6z3_S$YReU6E$W8FeP(kVG9M=vxhdK(7Z&w7MsdX`(y!BJ`SGqz*Uh-xK zjo5^0YIja$kJrr$WA%(khzVRASd&^L*WQ%3gp* z%+to?!B^>sD@kMsYg>x5V2cI-&;i|0SA=x=YXk%+_r=lMTo@bs@hEWZ`{0N4?`JqR z^@_+od0>*AnAb~ppS`3%@@kE>r}h1qC;1N=8NN6E{PmtjHEL0>qYKb!dKB#M&nsnN zPD>5z-L(1mB$XDhZs+M+xm7NH0`uprSI^08X!*Lc!!&96GS~fd7W>3E6~1}@-dHZ> zH!QhKcEttV%oi`5%_h0Hh5^`v_fpQ_-MO=Bd`p3VTh1YS`*E4(B_(L}5Sf0WsRW`u z#8#8lp2#y0eggAGOwuBK3=}$+P=Il)IP83R>eHE2*$piyTYdzxon#t_F$mfNhma`v z=H%xSED{RQj1;uwx>4sM=W?$q=ZHQ zO{h>t!?(4dIJDXNI-O_#KK_mO7XJDDuD5qfPTJj)$dIdadbMo};|Hzw9NI4S3?bIF zT`3QEpRW@{h4m)t`;fmTJmOS$A*H}^IqbR?2c{qKqM4C$v_MXeT5Vl}bIM2g|7Gh| z1j8iL|52O=|Nl>(D<*ab&#agE7W&X9QKb|JagkW2yJ_irS#Bk+$cOZoT_~G6)d%I4 zQMe-Ae?>5gbOz+b&5LVRUapxj(m#{LQsCUnGB&QspLXihgW3C&;|=W{tqzVc0epSb z&_LeC@|X>#<_~68zpuE6S2J|n3`Z@UZ&JSKYqrUB{1DpJrL85tqZ9xAj1*8|F5No6Gy zP!!A3{VNdwqxp6V3awF@ts z{>oEF$+Rw_z1Ps&@7Caeu8J#DhQVRWI}e8LYYHA{WBF3|qneer#C|osQ8UdfdVPFV zOUov-M_;3rtX5Po(K3O=`D&8&z3(wJl!=K-#Pk;IyaGee#FwJ<4^pv{b+P;t;1`6$ z!o%&W8|%=Bl9GDNVK8MLhHy=YA6IDh! zybwYlH05K7(R}B3d5XWE8Ql@%C$*5XbW1JM)uGp(MK$VfRf$YqbPSmt8*bR%6pxM4 z{Yl&-uq_9hCSPOo_Uih%8-wCOv-UE zN&=#0u)vrDKu^I|J@`bm=2P#MjY544)I$p{lyfo+@2BV%igqfAO!P49ijEccHOcxS zJl47R+cE0#*Q&b%x5Y#9lDh5&OtIuYDVX=sji1$Fwf?-IG4QrRIbm+I;Ho`S2?E-6 zhN3BYZ{C=A`|VCymRFZ&EmpThH+oJnH%eA;~%Zmij7n7o& z->w>nXO4C{igMsd2$_Sd1%va=bvNm!jBVCDbJVxRKP1eS#B)qHxpczbrC6g=u8PA%)E5wT*>(SJoO(33fk&D9 z+3`M$d6pPPwaqQmRlZLa>8lecubN|;2S0?&UM@IFt7+nUd}Sry^WkUP?g>svH~6pu z2=Ji!3P3L|!T;b(5v1aDFGt{5VZT`^2xiT@ip8_M_NsDXP*uTN=F7kQ2G6HmnM;0T zx9M=_D*gKFrBK{lwoH95mw>>pb3dePE@=Lv@MF%%)PCu%#Or}+=T3<#iS#U1-ev0X zh)lNo$Fz$fK41SB?+>$>iNM2B_LeDuh=j#XMJle}Y2@RlY`(+Ya%HW}wU~gu7A?~* zml9d)&i5uY$9w4yRwby1q}zW~zc?+j@~oPYexI7rVBJOsJz9&=lMIw_y0lLgZ>Gm z2Ze$<(~)CkRo;E5_`3+%1I-88GjEq2QILfc3F&D8CqNszG}6w$Xc(tlAv>*!^G*;e z*v%;1A#P%P0U%mzZCGSSN1ec3ZX4-dyEa07~~)!GyzEA3KJSNMVU3x|}OdoZGRg*e_H>_R|H+m74~C z7Tsmqi1CI5bA?!pw!U_UwMg9e+j~*73shN=dIrsMMBrrDDH-$@>qvC^krC6aD%*%k z7U>=Q?tglppzeTr6f!9?v=n(bw?RT#Mum=dIQW}B?SvmYKZ~({jk~*%sWDrx4!lG37W{CM_2PuU563g{PE>wbQ*DLM9}XNWUZtMu_s_72vh&`LilN`n z_G=H^dZMr+%C>2#FWac%~2Nlo&MocLhJx>ffNEMP+r}FYAWgH5y=t~(zJ*Th)4q$;~{^UNE2se9Yb2sGaCdf z8^*68o5s*16r~;eb=5cw&&|+|n8JW4GUUH{O_&Ccb|Vku?4z`5>)`%H}=2 zox6{u&R{aq)uipVM2Q(?T`o8tQohB13f4M;%FRe2+Pp=5zd?xYv9swcSh0O6*t0}j zouoAwGvc>ZdblZhvx9>}Pb6Aeo+R9Xy~8|;^^_=JtBKx{_?Q%`+yDwO53tv*=D^@b^DF>A?{S&pVGY>8r#@K1p>8=e_g#9_~H3^ z!5|}5gL5@Q{?UN}K4Lu_Al?ahjnSx7f)`v9N)WclhIrF&wNy>kVeuhNQui+H&hb5f zL2t)%={%c+79B)gl}L5wA3>m(M37!fpf@cb{fECpE%ic{+vmnIHV_x-MXXC3!pMpt zw3W8qSc4AsVdzx!85~3V{w-o$%>+f{(F_!@Hb2m3x20Qn{{|7Z=NGvgM8sOHr%}M? z;^scGeEVBioVVCP5VM)v5h3HkMQjtup8(xEKWTD0s#!-9PzK6%SC{=3PvR44yr z**m1~1{gW<-)O%Jke9)aY|ShZ3l)FtqC zFU-;_o8tLfr1Ow!vXz1o;A)i13D^Ur|FO4OJh3QZK`w*{RFnPy5o5sv(q=aZzccm= zO<^-sT%dQZp+5plDPGH(oBau>Fi_u?qKEDBP{Vxk9a0rh92sWw>Z_jtSOuga3wguMb}1mlSiV^l_Q|AVUar*Ejm^8Xw#9-U41f0PUO-{o8V-^_yi zFWtF~&wksI&&fPS%m8b1abX2IrO`OCD5vFZ{KKi`*}=o%{6ljlr1PHr$C9hXivRk3 z>+KaAqqFa=Dfv?M@ApRg|Ll>9irX=-Xmjio(;DZ380$kvT7@R0Ka9`%r!cIw%zrR+ zu-FH$t_EMUUpT;jwYfR{z#|@`_2iqQB}XfmqXOj?ATCj^pw+v$^-Apt*PG(53i|Sl z#h%fg^eHr>&x~F^(RUL0qVIUGdhsG9g=yo#*a4cFYRvJqOYg0qf1=>ErjmX|%$mBP zxrLlPX7cphyB@4Dt}WkjzareNuid^XOzM}%h?K&LrMfAPzsvB~3iN&pa#W@S>f~zk z%O)n-(?u0jz0@waZNB^kMe^Yd@rsV4wBy11R*_%iouFHP-#y-$P3=9ib&8Yq@fc!C~?xa9vMIeyVS zOz8{z(vsM4DVxA*hpy$H)w^pHjaieF4|y`=yyAXFEgF$YW28_#A8W`bXns=kQsEy8 zYnSQPIM=)_BN`WaM*ZBYQ6`7_4W8qraa1{0p-qZ^-Wfw(h+q}0W5%}yYO3dL=rN0} zY9Hbgdy}*5OBp|I>qN+$j6jo;2Bn5AQefIuGfA3(ZsX@=r!r|3kJKOB|H!hN+~P}W z%>((%N*Vn{zW#NwYfPRpZ=>)jlOedDbI% z=Rqp>Gex-(bqkxXr#Vv!V;m}~l$a)-dGDf>Dpmvvo&NfapXEAz&cg=s8YQoSUy#K~=}i?lLS)gJ2}5W|PGU;gesXYf92^8#yscR>N| zg=~-3r#G9t87Ly=EN_=Ni!EdJ^nQ6?(CE|4Q;lE97I|>QAhxusI_LR`YJs6G?%Fg;O)}i-|DR*F_oE}-*eip=1j1oFC|d&XI6Tye_Y@rL5sd1@(YEZmRDr= zMMUiA)qIeC?ceuyS(cma<=UUU6>G?4omf}zGxMU=+?h%@=@H|wU{P?4bQVl zvc_(s$3@Y&3*XV>XkB^{D&F z49w*5-?=6`{@aauMx#<%p@wYvtK2d8U?JW_0T=DCYs>Lze0O8S`Aezfh}X~;B-4(I;`#8|tW%HOCR$O7Bm32u!LytD8SPc)G3H=O-g3c8t4wJ@ zeoE=_+TbK@vt24WYysCU$Nb)1l#}Z}Dr>=Tar{XVMRi>uE8pF>4*c($xh2^G=-p4y z61K5@>($au2@Drxn0a{5dW}gych!$F{@$gk3+8<^Js0flrwocw+0-*tIkB5981U;} z+CRBj>92(tru%OR33`1EqVBzLSQTd23E=iRBa zKxdaqrqADw=+Q-S^9f#*q7L|{=J$-8YPh|mF!t@e^ctQ(jPPyv-*XVo6XZn13iKBdbVQ9D_)>(E4br& zsPIMMQZ~LjhQh}@W0M~DoiR6m*U?e8`o|~&TUbW^=JIK6|?d67Uvx!4S!O6O4BJ_aQ5K!Up$%0?d z^D&zRgQtH~Qb{j&3@u33CwRkDF-3I8k89RDUhTb@S;(O1nH?C))B7z%$>YzhzuJ2? zv-DhMrfFKR3-iWGrl`5QD*T3V%YX8>-QKHNncl4)R(GxR&6~sifnj0a@AX_;?@6IZLFk6 z7pO87;bJIU7Mbt;^Ye+z|2VF{#A8ufx{s&i)b2+;qob(^qXmS0T8FE-M2?33Ba)eF z)|g>ZDJ{tgFSMb@B6HH(Dya0FR+P@CBX0F|bq-VC^`>WMLj)=n_2}9S`2;C}ODz~^ z0%9FGyNX{hDC!-U*Y$(pf5rBFJZiV|J8xWCG2B?%2BB}S&B}t0ZVOKT*Kf21MZOhR zdPnWHDz%Fxmn2-$Ju;Glz&2dYJ@n3~QuotUb)I|c0>YIN*!bKF(vs{o(|DdKZuj6d zD1OG9t9OEFs&K)t6S4?+gFeXGc1}*Bj5;nmRvx%I{i1%BaM09G{|aCBKB+;&{?6xUe8J7NDJmIyWTQK&FqVa_?w<~XHN{Q@?J6l5qBWnZa&Lz7{h53i-NG_<< zJeZS>jd6%i5Bb?yRIh$k;_G6DP(@ou)9#XTXPYZw4R5m+-fyXRqva(lsx`T%b9Owb z;Y09Zn9Nu6eU8cr#ud(@yoVCl&d%9n(s%12Y~s5t&&^L$6}b-a z{>>({-(I^1`}0iawav6nisaSS+jEQRSpMSQF~9x1&#%YFVwGZaJKJA@!oB z9pT6Rsdk3}1K$pVF`;ky76%sM_54$B_YC;Qy=~aiq0e)OF2aRr#fsc+IVNvG!6}|) zd~)?hbjG|D=5=XDzUFJRUGm+cBwi$%DY$v|t8VmKjuZ~l%eB5d?0v_QE04yFpRX5T zJCPq68_M=bF4R<$$y#f7%_p-J$G(`nOt~BF zBx}IXtmuCJ@OW<7%$&@UV5@)+?;{88yF?8hG;Yl`jraAwS=Q`I*IR?LU7auI<_N@AaR`#$L%Cld_3i zJvN64`Sm$}&w>`X5xb66Xx6Q|Q2q%^R73K8JIXW$QYV^a; zBW7KnW`zy}pWU*#+~JyLvVWQnzh2$XrC)WII&ZEoUw6-p#ZH6=Xu*=HTC%rs&& z^RV(dAy?#Uwu36QKf5Y3NbS{&)2AzYzC3Avs?ejJU6fYs=2XFx6q}|pX2;|0ZMPt^ ztr-(}rWvDq>vHs-cpV+t>egE){{Hv7FW1w>&vIK|@I4`taCi&Ep%|JNEa~z1F6_s|Ysi2z2Xt zU^v*NZazEA+R%Re%DY&RC03T;@D~KhU6U_05_cL%H0K=;?z-hZ2)so(Z&7*{YYQ?c`e6eLseho0~sy z`I(+bmiL41ltWBS0U}PT)^P|*Pv+2FOAtin4owl%+%8W<+e@1M1aU^2}9lxo5~aIv7_ z^Xr*Q5o#(849(ko$KPF=clfgR(@@*gP^x#h0`;FVn=Fx>l$VhTQ&9mT&uiQ6Yn}5_ z+gZ=hykzP!TS2h!h|J6m?ZNu))cN!2!{ZXOKK4mD<9s{2o*O9EMV^Vdwf$!8)1)mG zg%7RuW+yfEgSB4CO(*n(@;A?IXiN?qp0K;-#>)E3xU|B&&1pyVJMZkrX$2MLbG3y` zeO-zB*6duBp>@VWbf*lI+Aqwxu?DiT<|OSq6LxroWtq*h`)wx0ae=JO3q{Y2qT({_ zQhyfasa1M)KTLo5GFEKw59)f9qlfKq`-fE4)P;W{rew$JoG?8{QD>Nh$q9}e@6u(qxt(2xQ=e)-+z0m zbN&DOk{-L{bv5tbYl3)(l?e(7aZ1)+^7qqKZW|t#{$`%0YrgwYST6hD_j#VuOV;k~?d1p25I|RdZYa;@VsPSl4&_xZAa@|Z z&rbz&e(dK@TkZ6}Z=&c3p;!ocv;@Q4^m_f5`_8WnhI%q)lko4__24tp-`DX;LThNl zrcKX*7)G|Tk4GtvK^KETdq+pFD9wod&&B7kL*o?^%1$fo?J~pGkqH$K8m(e`|MNlF z_#pF4ee3|+MoTG#p19R^{I~QrL zz!kC|@F)QLzdvx|?;Vyj3Wm@HgIN5oxmgD{2adN;|aTOoXLD8Fy`&x){?{oAE znzzOA-9=s98gL4W@Kt|5A*?JmX^(0c^fjIXWZ~uG(}-?N14{dev{C41IO%u(eI=#R z$g>x)c?e8vgNuoW6pJx~7~4|O*4CDG0@NJP|Kh-$s5rMb5qg)H;TQnsaXbK~ivG}z zjD=jlAUYULgxvY~aUwutg#Ts*sUPsfdybDn&*lTjIO3o-xVXAv1cV`ONAujdqy+8c z1VALAsB(#|dK9ulj)2HBEL)a9uyEfDlA9EtNkaesQ8gj;ssgi>2rfcwZ{|_SPWq;p+-3UoQRkihHJO zjpQwF1Hp+q9?!c++qWI+LHI-K2c>G6faNo}-{6~Pw`x{%wuu>*4} z{A2KcI(SZkfmxtQVeOxRci7w4r@)poeJxbW}Zt&WC_COSqEpgiHXhXD%K zM#s&s0K=Eb8hG8ks|F-ULyoQ4Jm$dM4Cbf0qS2sp;>0~PXkxL1e0Wr7V4Y8!J%h&a z3~sgu*&{$c$Ne#+F#(S)9-u^AyI@8!_)ZQ$j%Hfcm;LNSTZ=3tcANlg4!-!$B7qH( zh^;Su@v|o+MFpssd{&RPQ}5TW1W_Cha7=4~%S-ffdXI}DP6Gg26;des#Ez~0uSJS#sO;##3OFU=@^MiCcs1-uCJ_G$k|)vBfvja6 zzkAapi#{myRvR_bo@4;fC`B!;vuOLMC;T&3v+%bA{ zkmu7iV|1g{uuB`$Efjfpc?Z$Vv$M5T1LuK<3TU_Q;$P#L^D!uqQbh>Y4<3A8e(YiO z>6^E12|(-`ABWvt2O|QP)Bwm+c^~`UbGqG+f8i_yL!2JM2(i3Mpfi~e=xI^F%sjOtM{d9yz)Zw}#9#@q2AD?S7`UEna3S|7fc(A=UbDrY-5|GC zSyL0t9lp<29&EhOT_@%JhHKxwyEwOX-Ma4IUFGEpkdNR?m-%Y|S&!y2y=ckL!gEZ< z!8SPCi4G&KWM@TF_Zv=AKH-<2k_ed)D}cF=t@%!=VBx?cZRxnx;X0HILuc`%mQ|9I zMjclVoiHED`mR3uxca8sC3{<2+xLm;v0h+WJR=(ucpqQS_d)6U$@oq1NN!&Q*EnD% zsrxXl;a@)&%zLd?2BVoMz{htS?MR`CKGxK=G735Y(dONZ|tCp)&+VYz-t@PBgSlK zZN5zebSiPaRTCbNrlO*Q-GXx+3%4=^3e!iROecxZGgci>lmsp2n-hCs)P*h?;n-;c zR0tLss)qvc#)YoFF2H<#1eq@b2(Dqwbb-ODM+ZC;mhKg!mIEC*0J3m~p;M z8#b1Sg+&K%p>0{tuZ$JKn51XWSQ-F2qxHqf>k9}0ta>Yhc$7h|H^DuE>>T+th%^EI z{79zTtvCIYYahogwai=eIYf-HEm}c6-W@h&Xm1C&6r?fj9hT4{qEDqox5sjlGWG+QmN!4u#&P|F2_JM)$k1t+@=VC;fV4>w@!=r{?4u{B&4@oCFgI1RhSU8las;~5MjrWVzK zPLm>V;O_ziGCso=?q;0h+n(5%0MtMN%tuXCqmntCQ)P8^qlSuXZ-WE2Ofu#PokhT; zti<;3H+ydGfCbh9G9r<^JKAuS-Tg!-DC9$le*kE!?}_ga!Ed8bj~voGs$c*23n_iu zO4MHw-Y@P~9ic%39(H=o>c4+yU1xOTuMPBk?6n7d1j*~|f87hEo$tSuB>dMhkq~RY zvzIPqfm09^6cig47G|CHKjFEjBBGKYgb;|*dw{KO$Oz{&rJguJQWZEG)U8Fq(tmV< z_e|>FGfep$O~P?IyFes$;G&Xp|F&%%{1?*6&)jesR+wA@ z?0Tj2pWE@YPHJDOE4Mgj57e|WmgDF*MEZ(Q0J9yOAu5Ecw(R>5Z%L~I(0u}NoT5J{ zoN+LX`xaa$`k!F>gf>|7mu6gTj*u9^tP3KddLVb?5d0$I#{E3=SCFm@b`=+E)Cu@t zwp8(nCWE!0{6&3mdiL1_zC4w$8eiy9wTx{!~?2IVYJMWgGa>yr<3oUk^R;Fl+D=r z5OP3^@Jw&Gfo5{S38qwY^B9sIAapURF9>pCbvm^PtA6F^Ou{2Zh zEE=N@Euq#yqAUZ$P28b&;?J$4)2tpBLgo~8x+=muGytrn1FHHjZzNnzE4g`L2| z72LT~0g(SjFiS{sGZgOB$v>3DDkv*!gmbTnSJAfY!r)C+AURWAIxj4p`f8+#+#}UZ zj^HM#$TdEKjx%xp%G_b3C4r@rNX`>MO_9GG2hTA5Y zB{1p=4+s=2biY#yG9I#-2Qaj~(UWcoHx;xgZLAiF$e_|f#qcj^k_95cFpfTN-SFHG z;X*1-^3YXAPK<#Mn7~&KMYxTq9Xwbf(fU;K7Rh!I%K67&f2cThy2N4L;B(|q@c>iu zNPokwzY4@(3KA~z8`r`3xSoLlJ#!Kn*JyaV^asBF5sU-Y&0xD0Uc8 zUfx+wZcCi=8H|$8JX6c*INYj*T3xe?sP+~z`~#68Hx(ItAb0unb}AX}0m+~gEP)`> zMe?% zj!jJ=PyKUsBq#%1R1LItaiAW#T&k<9gBq=ZkZK^a!?W5!ZABVQq;1^6qinu>g|5V> zthu>aEyZcDfr@}wzvyzV*#eXsCK2E8NlWX4c0pnl0#>Dxst5u+5)zU)6h^H9WR#45 zMMnnMzV%42x6q9v$t8XbauIbF^$U2yM3#eu!LZ0p!1a+76-qJ2{xK+zkZ5NHcG%mf ziBmQEUj+*5)Iwe=sW9N%L5LF99K?0_> z5lCv*EnAWhPU}IZs0oKX4k+3okVj@PZiwtrPzc>Y10#ty+@WK$k&`9pieo>1SEjU4z5iK@8Mh@sCWF?mQUT`D+$F(#A4Z91qq zBx4*Cs5cxRGp%*zvGw&KWWmayE26^~6a&R!J|wp&KQuxEG7&b?5iSig4t1c!Eslw% z!iG7jq+9?&2QrNb5)+D9x0m%H%164LfG0VF*j(A$2@or$XhVs$7_S!swrnc$t>am7 zwJ-yT#q+~9$c{gvcJ&zub!x~!XLp8ykLz_?l zW9kRK-ajCc-ifSN_UGI6s9)A2{7u+Dl5=H1O1CrGT?O*u|^^9-yqB-{4B`lo`oPQu%)*!#nHC&;-gbFYn8`#

_C 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�ZgMCuHT9O^m2&&4`>$Mno8nC& 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 QPxxIflC{gLm-;3C3j*bC)c^nh literal 0 HcmV?d00001