export type TychiDid = `did:tychi:${string}`; export type AuthSession = { jwt: string; exp: number; agentId: string; tychiId: TychiDid; tyiPubkey: string; }; export type AuthNonceResponse = { nonce: string; expires_in_sec: number; }; export type RegisterAgentInput = { name?: string; }; export type RegisterAgentResponse = { ok: true; created: boolean; agent_id: string; tychi_id: TychiDid; name: string; }; export type AuthVerifyResponse = { jwt: string; exp: number; tychi_id: TychiDid; agent_id: string; }; export type MeResponse = { agent_id: string; tychi_id: TychiDid; tyi_pubkey: string; }; //# sourceMappingURL=types.d.ts.map