contentful-management
Version:
Client for Contentful's Content Management API
15 lines (12 loc) • 503 B
JavaScript
import { toPlainObject, freezeSys } from 'contentful-sdk-core';
import copy from 'fast-copy';
function wrapContentSemanticsIndex(_makeRequest, data) {
const result = toPlainObject(copy(data));
return freezeSys(result);
}
function wrapContentSemanticsIndexCollection(_makeRequest, data) {
const result = toPlainObject(copy(data));
return freezeSys(result);
}
export { wrapContentSemanticsIndex, wrapContentSemanticsIndexCollection };
//# sourceMappingURL=content-semantics-index.js.map