UNPKG

@emergentmethods/asknews-typescript-sdk

Version:
29 lines (28 loc) 986 B
/** * AskNews API * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod) * * The version of the OpenAPI document: 0.24.22 * Contact: contact@emergentmethods.ai * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import type { ProfileResponse } from '../models/index'; /** * */ export declare class ProfileApi extends runtime.BaseAPI { /** * Get the current profile * Get the current user\'s profile */ getUserProfileRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProfileResponse>>; /** * Get the current profile * Get the current user\'s profile */ getUserProfile(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProfileResponse>; }