import { Prettify, RequiredBy } from "viem"; export type WaypointResponse = { id_token: string; address?: string; secondary_address?: string; }; export type PKCEWaypointResponse = { authorization_code: string; }; export type WaypointResponseWithWallet = Prettify>; export type DelegationAuthorizeResponse = WaypointResponse & { wallet_key: string; };