Type alias OptimizedInputProperties

OptimizedInputProperties: {
    authLocalStorageKey?: AuthLocalStorageKey;
    clientOptions?: Partial<Omit<RecommendationClientOptions, "initialCredentials">>;
    databaseId: NonNullable<LoginServiceInput["databaseId"]>;
    password: LoginServiceInput["password"];
    serviceLoginId: LoginServiceInput["serviceLoginId"];
    sessionId?: NonNullable<LoginServiceInput["sessionId"]>;
    userId?: LoginServiceInput["userId"];
}

Properties included in input params of most functions. If these remain the same across multiple calls, some performance optimizations will be applied.

Type declaration