Skip to content

Commit c110ee6

Browse files
Apply suggestions from code review
Co-authored-by: Lucy Butcher <89952129+libutcher@users.noreply.github.com>
1 parent 576a0c0 commit c110ee6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

client/release/RELEASE-NOTES

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
## NEW
44

5-
- **Support for item states**: You can now fetch an item's state using the SDK.`ItemOverview` exposes one of two states: `Active` or `Archived`.
5+
- **Support for item states**: You can now fetch an item's state using the SDK. `ItemOverview` exposes one of two states: `Active` or `Archived`.
66
- `Active`: An item located inside a vault. (Default)
77
- `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.
8-
- **Filtering the return of item listing by state**: You can now filter the listed items by item state.
8+
- **Filtering listed items by state**: You can now filter the results of the item list function by item state.
99

1010
## FIXED
1111

@@ -20,7 +20,7 @@ This release contains breaking changes for two functions in the JS SDK.
2020
```js
2121
const vaults = await client.vaults.listAll();
2222
```
23-
with
23+
with:
2424
```js
2525
const vaults = await client.vaults.list();
2626
```
@@ -43,4 +43,4 @@ const overviews = await client.items.list(vault.id, {
4343

4444
* The return type of the item listing function has changed from `SdkIterable<ItemOverview>` to `ItemOverview[]`. No changes are needed here.
4545

46-
This does not affect any code that's already deployed, and will not take effect in your codebase until updating to v0.3.0+ of the 1Password JS SDK.
46+
This does not affect any code that's already deployed, and will not take effect in your codebase until you choose to update to version 0.3.0 or later of the 1Password JS SDK.

0 commit comments

Comments
 (0)