@itxch/contentful-import
Version:
This tool allows you to import JSON dump exported by contentful-export
19 lines (18 loc) • 505 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
class ContentfulAssetError extends Error {
filePath;
constructor(message, filePath) {
super(message);
this.filePath = filePath;
}
}
class ContentfulEntityError extends Error {
entity;
}
class ContentfulMultiError extends Error {
errors;
}
exports.ContentfulAssetError = ContentfulAssetError;
exports.ContentfulEntityError = ContentfulEntityError;
exports.ContentfulMultiError = ContentfulMultiError;