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

    Interface ArtifactShipper

    Ships a workload image to the serving devices as a content-addressed artifact (ADR-0008 delivery model): docker save → digest → upload via the ingest application → register by digest. Tier-2 concern (spawns docker + streams from the local filesystem) — injected so the browser-safe core never touches child_process/fs. NodeArtifactShipper (sdk/node) is the standard impl.

    interface ArtifactShipper {
        ship(req: ArtifactShipRequest): Promise<ArtifactShipResult>;
        shipArchiveFile(
            req: ArtifactArchiveShipRequest,
        ): Promise<ArtifactShipResult>;
    }

    Implemented by

    Index

    Methods