Skip to content

Commit 39be8d7

Browse files
authored
Update persistence coverage table (#148)
1 parent 960776c commit 39be8d7

File tree

4 files changed

+168
-2256
lines changed

4 files changed

+168
-2256
lines changed

scripts/persistence/create_persistence_docs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ def collect_status() -> dict:
7373
catalog_db = PersistenceCatalog(notion_client=notion_client)
7474
statuses = {}
7575
for item in catalog_db:
76+
# skip services that are not implemented
77+
if not item.implemented:
78+
continue
79+
7680
# we do not want some services to be mentioned in the docs (for instance, not yet released)
7781
if item.exclude:
7882
continue

scripts/persistence/notion/catalog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class PersistenceServiceItem(Page):
2323
secondary_owner = PeopleProperty("Secondary Owner(s)")
2424
limitations = Text("Limitations (synced with docs)")
2525
exclude = Checkbox("Exclude from docs")
26+
implemented = Checkbox("Implemented")
2627

2728

2829
class PersistenceCatalog(Database[PersistenceServiceItem]):

src/components/persistence-coverage/PersistenceCoverage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ export default function PersistenceCoverage() {
9696
getFilteredRowModel: getFilteredRowModel(),
9797
getPaginationRowModel: getPaginationRowModel(),
9898
debugTable: false,
99-
initialState: { pagination: { pageSize: 10 } },
99+
initialState: { pagination: { pageSize: 12 } },
100100
});
101101

102102
return (

0 commit comments

Comments
 (0)