@watzon/baserow

    Interface BaserowClientConfig

    Configuration options for the Baserow client

    interface BaserowClientConfig {
        defaultHeaders?: Record<string, string>;
        token: string;
        tokenType?: "JWT" | "Token";
        url: string;
    }
    Index

    Properties

    defaultHeaders?: Record<string, string>

    Default headers to include with every request

    token: string

    API token for authentication

    tokenType?: "JWT" | "Token"

    Token type, either "JWT" or "Token" (default is "Token")

    url: string

    The base URL of the Baserow API server

    MMNEPVFCICPMFPCPTTAAATR