Package-level declarations

Types

Link copied to clipboard
data class DismissMatchRequest(val subject: Did)
Link copied to clipboard
Link copied to clipboard
data class GetMatchesQueryParams(val limit: Long? = 50, val cursor: String? = null)
Link copied to clipboard
data class GetMatchesResponse(val cursor: String? = null, val matches: List<ProfileView>)
Link copied to clipboard
data class GetSyncStatusResponse(val syncStatus: SyncStatus? = null)
Link copied to clipboard
data class ImportContactsRequest(val token: String, val contacts: List<String>)
Link copied to clipboard
data class ImportContactsResponse(val matchesAndContactIndexes: List<MatchAndContactIndex>)
Link copied to clipboard
data class MatchAndContactIndex(val match: ProfileView, val contactIndex: Long)

Associates a profile with the positional index of the contact import input in the call to app.bsky.contact.importContacts, so clients can know which phone caused a particular match.

Link copied to clipboard
data class Notification(val from: Did, val to: Did)

A stash object to be sent via bsync representing a notification to be created.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class SendNotificationRequest(val from: Did, val to: Did)
Link copied to clipboard
Link copied to clipboard
data class SyncStatus(val syncedAt: Timestamp, val matchesCount: Long)
Link copied to clipboard
data class VerifyPhoneRequest(val phone: String, val code: String)
Link copied to clipboard
data class VerifyPhoneResponse(val token: String)