contentful-management
Version:
Client for Contentful's Content Management API
10 lines (9 loc) • 646 B
TypeScript
import type { GetAppDefinitionParams } from '../../../common-types';
import type { RestEndpoint } from '../types';
export declare const getAppDefinitionUrl: (params: GetAppDefinitionParams) => string;
export declare const get: RestEndpoint<'AppDefinition', 'get'>;
export declare const getMany: RestEndpoint<'AppDefinition', 'getMany'>;
export declare const create: RestEndpoint<'AppDefinition', 'create'>;
export declare const update: RestEndpoint<'AppDefinition', 'update'>;
export declare const del: RestEndpoint<'AppDefinition', 'delete'>;
export declare const getInstallationsForOrg: RestEndpoint<'AppDefinition', 'getInstallationsForOrg'>;