contentful-management
Version:
Client for Contentful's Content Management API
10 lines (9 loc) • 683 B
TypeScript
import type { RestEndpoint } from '../types';
export declare const get: RestEndpoint<'SpaceMembership', 'get'>;
export declare const getMany: RestEndpoint<'SpaceMembership', 'getMany'>;
export declare const getForOrganization: RestEndpoint<'SpaceMembership', 'getForOrganization'>;
export declare const getManyForOrganization: RestEndpoint<'SpaceMembership', 'getManyForOrganization'>;
export declare const create: RestEndpoint<'SpaceMembership', 'create'>;
export declare const createWithId: RestEndpoint<'SpaceMembership', 'createWithId'>;
export declare const update: RestEndpoint<'SpaceMembership', 'update'>;
export declare const del: RestEndpoint<'SpaceMembership', 'delete'>;