@archastro/sdk
    Preparing search index...

    Interface KeyValueStorageEntryWithUser

    A key-value storage entry enriched with owner information. Developer and server-to-server callers receive user_email and user_name populated; end-user (user-JWT) callers receive those fields as null.

    interface KeyValueStorageEntryWithUser {
        created_at: string;
        key: string;
        updated_at: string;
        user: string;
        user_email?: string;
        user_name?: string;
        value: string;
    }
    Index

    Properties

    created_at: string

    When this storage entry was first created (ISO 8601).

    key: string

    The string key used to store and look up this entry.

    updated_at: string

    When this storage entry was last updated (ISO 8601).

    user: string

    ID of the user who owns this storage entry (usr_...).

    user_email?: string

    Email address of the owning user. null for end-user (user-JWT) callers; populated for developer and server-to-server callers.

    user_name?: string

    Display name of the owning user. null for end-user (user-JWT) callers; populated for developer and server-to-server callers.

    value: string

    The string value stored under key for this user.