Skip to content

Commit 7799f87

Browse files
Apply suggestions from code review
update release notes with stylistic edits Co-authored-by: Lucy Butcher <[email protected]>
1 parent fac309c commit 7799f87

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/release/RELEASE-NOTES

Lines changed: 5 additions & 5 deletions
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 Python SDK.
2020
```python
2121
vaults = await client.vaults.list_all(vault_id)
2222
```
23-
with
23+
with:
2424
```python
2525
vaults = await client.vaults.list(vault_id)
2626
```
@@ -31,7 +31,7 @@ vaults = await client.vaults.list(vault_id)
3131
async for vault in vaults:
3232
# using vault overview
3333
```
34-
with
34+
with:
3535
```python
3636
for vault in vaults:
3737
# using vault overview
@@ -57,7 +57,7 @@ overviews = await client.items.list(vault_id, ItemListFilter(
5757
async for overview in overviews:
5858
# using item overview
5959
```
60-
with
60+
with:
6161
```python
6262
for overview in overviews:
6363
# using item overview

0 commit comments

Comments
 (0)