the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at f8cd2f7ad8d8c17edfbc797f2515543c72944c8a 26 lines 403 B view raw
1export type DatabaseSchema = { 2 status: Status 3 auth_session: AuthSession 4 auth_state: AuthState 5} 6 7export type Status = { 8 authorDid: string 9 status: string 10 updatedAt: string 11 indexedAt: string 12} 13 14export type AuthSession = { 15 key: string 16 session: AuthSessionJson 17} 18 19export type AuthState = { 20 key: string 21 state: AuthStateJson 22} 23 24type AuthStateJson = string 25 26type AuthSessionJson = string