@taiyi-io/api-connector-ts
    Preparing search index...

    Interface NextSecureStore

    适配Nextjs的安全数据存储

    interface NextSecureStore {
        access_expired_at: string;
        access_token: string;
        algorithm: TokenSigningMethod;
        authenticated: boolean;
        backend_host: string;
        backend_port: number;
        device: string;
        id: string;
        public_key: string;
        roles: UserRole[];
        user: string;
    }
    Index

    Properties

    access_expired_at: string

    访问令牌过期时间,RFC3339格式

    access_token: string

    访问令牌

    令牌签名方法

    authenticated: boolean

    是否已认证

    backend_host: string

    后端主机地址

    backend_port: number

    后端端口号

    device: string

    设备ID

    id: string

    实例唯一标识

    public_key: string

    公钥

    roles: UserRole[]

    用户角色列表

    user: string

    用户名称