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

    Interface DemoRequest

    interface DemoRequest {
        label: string;
        name: string;
        method: string;
        path: string;
        needsAuth: boolean;
        body?: Record<string, DemoValue>;
        captures: DemoCapture[];
    }
    Index

    Properties

    label: string

    the human label (the op name).

    name: string

    the op's by-name handle name (for chaining resolution).

    method: string
    path: string

    path with {param} substituted to a row value or a {{param}} variable; prefixed with {{baseUrl}} at render.

    needsAuth: boolean
    body?: Record<string, DemoValue>
    captures: DemoCapture[]