UNPKG

contensis-management-api

Version:

Client for managing content using the Contensis Management API

14 lines (13 loc) 342 B
export type GroupType = 'sys' | 'contensis' | 'external'; export interface Group { id: string; name: string; description: string; type: GroupType; custom: { [key: string]: any; }; created: Date; modified: Date; } export type GroupToCreate = Omit<Group, 'id'> & Partial<Pick<Group, 'id'>>;