import client from "../client"; import type { PostUsersLoginMutationRequest, PostUsersLoginMutationResponse, } from "../models/PostUsersLogin"; /** * @description Provides the user with a nonce to be included in the next signature. Consumed by /verify endpoint. * @summary Get nonce * @link /users/login */ export function postUsersLogin< TData = PostUsersLoginMutationResponse, TVariables = PostUsersLoginMutationRequest, >( data: TVariables, options: Partial[0]> = {} ): Promise { return client({ method: "post", url: `/users/login`, data, ...options, }); }