UNPKG

@contentstack/management

Version:

The Content Management API is used to manage the content of your Contentstack account

19 lines (16 loc) 514 B
import { Organization } from './organization' import { SystemFields } from './utility/fields' export interface PasswordReset { resetPasswordToken: string password: string passwordConfirm: string } export interface User extends SystemFields { email?: string organizations?: [Organization] update(): Promise<User> delete(): Promise<Response> requestPassword(): Promise<Response> resetPassword(data: PasswordReset): Promise<Response> getTasks(params: object): Promise<any> }