@suluk/cloudflare - v0.4.0
    Preparing search index...

    Interface DurableObjectBinding

    A Durable Object class to bind + (for same-script classes) create via an inline script migration. Mirrors @suluk/deploy's DurableObjectBinding so the CLI plan and the no-wrangler REST deploy describe DO agents alike.

    interface DurableObjectBinding {
        binding: string;
        className: string;
        sqlite?: boolean;
        scriptName?: string;
    }
    Index

    Properties

    binding: string

    the binding name exposed as env.<binding>.

    className: string

    the exported Agent/DO class name.

    sqlite?: boolean

    SQLite-backed storage — REQUIRED by the Agents SDK + the free plan. Default true ⇒ new_sqlite_classes.

    scriptName?: string

    cross-script DO: the script that DEFINES the class. Omit for a same-script class (the only kind we migrate).