@edgible-team/sdk
    Preparing search index...

    Interface ApplicationDeploymentHistoryEntry

    One deployment state change, reconstructed by the backend from application_deployment_state_changed lifecycle events. state is a plain string because the handler reads it from event metadata.

    interface ApplicationDeploymentHistoryEntry {
        deviceId?: string;
        deviceType?: "gateway" | "serving";
        metadata?: Record<string, unknown>;
        previousState?: string;
        state: string;
        timestamp: string;
    }
    Index

    Properties

    deviceId?: string
    deviceType?: "gateway" | "serving"
    metadata?: Record<string, unknown>
    previousState?: string
    state: string
    timestamp: string