export type ICreateUsername = { username: string; }; export type IGetUserOwnUsernameResponse = { username: string; userId: string; }; export type IGetUsernamesV1QueryParams = { _limit?: number; _offset?: number; _usernamePrefix?: string; }; export type getUsernamesV1Response = { userId: string; username: string; };