Add isSelfHosted to SessionAccount (#7028)

* Add isSelfHosted to SessionAccount

* Update snaps
This commit is contained in:
Eric Bailey
2024-12-09 13:43:16 -06:00
committed by GitHub
parent 63c0c7e621
commit bc4b4a3cfe
3 changed files with 34 additions and 0 deletions
+1
View File
@@ -28,6 +28,7 @@ const accountSchema = z.object({
*/
status: z.string().optional(),
pdsUrl: z.string().optional(),
isSelfHosted: z.boolean().optional(),
})
export type PersistedAccount = z.infer<typeof accountSchema>