@datocms/cma-client
Version:
JS client for DatoCMS REST Content Management API
51 lines • 2.71 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.buildBlockRecord = void 0;
const Utils = __importStar(require("@datocms/rest-client-utils"));
const index_js_1 = require("../generated/resources/index.js");
function buildBlockRecord(body) {
var _a, _b, _c, _d, _e, _f;
const data = Utils.serializeRequestBody(body, {
type: index_js_1.Item.TYPE,
attributes: '*',
relationships: ['item_type'],
}).data;
// Mirror the deserializer: expose `item_type.data.id` as a top-level
// `__itemTypeId` so locally-built blocks support the same TS narrowing
// pattern as blocks read from API responses. The field is TS-only and is
// stripped again by the serializer when the outer request is sent.
//
// `item_type` is optional on `UpdateBlockRecordSchema` (id-only updates), so
// the ID may be absent here. Accept any source the caller provided and
// leave `__itemTypeId` unset when none is available — the property is
// declared optional, so consumers already handle the `undefined` case.
const itemTypeId = (_c = (_a = body.__itemTypeId) !== null && _a !== void 0 ? _a : (_b = body.item_type) === null || _b === void 0 ? void 0 : _b.id) !== null && _c !== void 0 ? _c : (_f = (_e = (_d = data.relationships) === null || _d === void 0 ? void 0 : _d.item_type) === null || _e === void 0 ? void 0 : _e.data) === null || _f === void 0 ? void 0 : _f.id;
if (itemTypeId === undefined)
return data;
return Object.assign(Object.assign({}, data), { __itemTypeId: itemTypeId });
}
exports.buildBlockRecord = buildBlockRecord;
//# sourceMappingURL=buildBlockRecord.js.map