UNPKG

contentful-management

Version:
19 lines (18 loc) 466 B
import type { Link } from '../common-types'; export type FunctionProps = { sys: { id: string; type: 'Function'; createdBy: Link<'User'>; createdAt: string; updatedBy: Link<'User'>; updatedAt: string; organization: Link<'Organization'>; appDefinition: Link<'AppDefinition'>; }; name: string; description: string; path: string; accepts: string[]; allowNetworks?: string[]; };