UNPKG

@kontent-ai/management-sdk

Version:
15 lines (14 loc) 482 B
import { SharedContracts } from './shared-contracts'; export declare namespace CustomAppsContracts { interface ICustomAppContract { name: string; codename: string; source_url: string; config: string | null; allowed_roles?: SharedContracts.ICodenameIdReferenceContract[]; } interface ICustomAppsListResponseContract { custom_apps: ICustomAppContract[]; pagination: SharedContracts.IPaginationModelContract; } }