@itxch/contentful-import
Version:
This tool allows you to import JSON dump exported by contentful-export
15 lines (14 loc) • 463 B
TypeScript
import { ResourcesUnion } from '../../types';
/**
* Publish a list of entities.
* Does not return a rejected promise in the case of an error, pushing it
* to an error buffer instead.
*/
export declare function publishEntities({ entities, requestQueue }: {
entities: any;
requestQueue: any;
}): Promise<ResourcesUnion>;
export declare function archiveEntities({ entities, requestQueue }: {
entities: any;
requestQueue: any;
}): Promise<any[]>;