···1515 refreshJwt: z.string().optional(), // optional because it can expire
1616 accessJwt: z.string().optional(), // optional because it can expire
1717 deactivated: z.boolean().optional(),
1818+ pdsUrl: z.string().optional(),
1819})
1920export type PersistedAccount = z.infer<typeof accountSchema>
2021