1Password SDKS 0.3.0
- You can now fetch an item’s state using the SDK.
ItemOverview
exposes one of two states:Active
orArchived
.- Active: An item located inside a vault. (Default)
- Archived: An item that has been moved to the Archive. 1Password doesn’t include archived items in search results or suggest them when you fill in apps and browsers. You can keep archived items as long as you’d like.
- You can now filter listed items by item state.
- You can now delete items from the archive.
- The function for listing items has changed from
ListAll
toList
. - The function for listing vaults has changed from
ListAll
toList
. - In the Go SDK, the return type of the item listing function has changed from
*Iterator[ItemOverview]
to[]ItemOverview
, and the return type of the vault listing function has changed from*Iterator[VaultOverview]
to[]VaultOverview
.