contentful-management
Version:
Client for Contentful's Content Management API
11 lines (10 loc) • 700 B
TypeScript
import type { RestEndpoint } from '../types';
export declare const getMany: RestEndpoint<'DataAssembly', 'getMany'>;
export declare const get: RestEndpoint<'DataAssembly', 'get'>;
export declare const create: RestEndpoint<'DataAssembly', 'create'>;
export declare const update: RestEndpoint<'DataAssembly', 'update'>;
export declare const del: RestEndpoint<'DataAssembly', 'delete'>;
export declare const publish: RestEndpoint<'DataAssembly', 'publish'>;
export declare const getPublished: RestEndpoint<'DataAssembly', 'getPublished'>;
export declare const getManyPublished: RestEndpoint<'DataAssembly', 'getManyPublished'>;
export declare const unpublish: RestEndpoint<'DataAssembly', 'unpublish'>;