Package-level declarations

Types

Link copied to clipboard
interface AuthPasskeyApi

Interface for interacting with the Supabase Passkey API

Link copied to clipboard
data class PasskeyAuthenticationBuilder(var captchaToken: String? = null)
Link copied to clipboard
@Serializable
data class PasskeyAuthenticationOptionsResponse(val challengeId: String, val options: JsonObject, val expiresAt: Instant)
Link copied to clipboard
@Serializable
data class PasskeyListItem(val id: String, val friendlyName: String? = null, val createdAt: Instant, val lastUsedAt: Instant? = null)

A passkey item for AuthPasskeyApi.list

Link copied to clipboard
@Serializable
data class PasskeyRegistrationResponse(val challengeId: String, val options: JsonObject, val expiresAt: Instant)
Link copied to clipboard
@Serializable
data class PasskeyRegistrationVerifyResponse(val id: String, val friendlyName: String? = null, val createdAt: Instant)