contentful-management
Version:
Client for Contentful's Content Management API
10 lines • 379 B
JavaScript
import { freezeSys, toPlainObject } from 'contentful-sdk-core';
import copy from 'fast-copy';
export function wrapContentSemanticsIndex(_makeRequest, data) {
const result = toPlainObject(copy(data));
return freezeSys(result);
}
export function wrapContentSemanticsIndexCollection(_makeRequest, data) {
const result = toPlainObject(copy(data));
return freezeSys(result);
}