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

    Variable storageConst

    storage: Storage = ...

    Global storage object with common and temp namespaces

    import { storage } from "@cpod/sdk";

    // Common storage (shared across apps)
    await storage.common.set("shared-key", { data: "value" });
    const shared = await storage.common.get("shared-key");

    // Temp storage (auto-expires)
    await storage.temp.set("cache-key", data, { ttl: 3600 });
    const cached = await storage.temp.get("cache-key");