Scratch space for learning atproto app development
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