Update request format for key-value operations.

Defines the structure for updating individual key-value pairs within specific namespaces, supporting targeted updates without affecting other stored data.

interface KeyValueUpdate {
    namespace: string;
    key: string;
    value: string;
}

Properties

Properties

namespace: string

Namespace identifier for data organization

key: string

Specific key within the namespace

value: string

Value to store (as string for API compatibility)