UNPKG

@controlplane/schema

Version:

Control Plane Corporation Schema

25 lines (24 loc) 473 B
import { Tags, Links, ApiError } from './base'; export interface User { id?: string; name?: string; kind?: 'user'; version?: number; tags?: Tags; created?: Date; lastModified?: Date; links?: Links; idp?: string; email?: string; } export interface InviteRequest { emails?: string[]; } export interface InviteResponse { errors?: { [x: string]: ApiError; }; invitations?: { [x: string]: string; }; }