UNPKG

@becomes/cms-cloud-client

Version:

SDK for accessing BCMS Cloud API

14 lines (13 loc) 473 B
import { ObjectSchema } from '@becomes/purple-cheetah/types'; export interface InvitationCreateData { email: string; } export declare const InvitationCreateDataSchema: ObjectSchema; export interface InvitationVerifyData { invitationId: string; otp: string; fullName: string; password: string; } export declare const InvitationVerifyDataSchema: ObjectSchema; export declare const InvitationController: import("@becomes/purple-cheetah/types").Controller;