@cpod/sdk - v0.2.7
    Preparing search index...

    Interface CyberPodConfig

    SDK Configuration options

    interface CyberPodConfig {
        baseUrl: string;
        apiKey?: string;
        accessToken?: string;
        timeout?: number;
        retry?: false | RetryOptions;
        httpsOnly?: boolean;
    }
    Index

    Properties

    baseUrl: string

    Base URL of the CyberPod API

    apiKey?: string

    Optional API key for service-to-service authentication

    accessToken?: string

    Optional access token for user authentication

    timeout?: number

    Request timeout in milliseconds (default: 30000)

    retry?: false | RetryOptions

    Retry configuration. Set to false to disable retries.

    httpsOnly?: boolean

    Require HTTPS in production (default: true in production)