Type alias ContactsAccessScope

ContactsAccessScope: "read" | "write" | "readWrite"

Which contacts capability a permission check or request targets.

  • "read" — streaming and picking (Android READ_CONTACTS).
  • "write" — creating and deleting (Android WRITE_CONTACTS).
  • "readWrite" — both.

Checking a single scope keeps read and write independent: a read-only eitri-app is never reported as blocked because write was not granted, and vice versa. On iOS all scopes map to the single CNContactStore authorization, which covers reading and writing together.

Generated using TypeDoc