UNPKG

@becomes/cms-cloud-client

Version:

SDK for accessing BCMS Cloud API

27 lines (26 loc) 718 B
import { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface UserSignUpData { email: string; password: string; firstName: string; lastName: string; org: { name: string; }; } export declare const UserSignUpDataSchema: ObjectSchema; export interface UserUpdateData { fullName?: string; email?: string; password?: { old: string; new: string; }; } export declare const UserUpdateDataSchema: ObjectSchema; export interface UserSignUpCompleteData { userId: string; otp: string; } export declare const UserSignUpCompleteDataSchema: ObjectSchema; export declare const UserController: import("@becomes/purple-cheetah/types").Controller;