File "extra-body.js"
Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/extendify/src/Shared/lib/extra-body.js
File size: 307 bytes
MIME-type: text/plain
Charset: utf-8
// Optionally add items to request body
const allowList = [
'partnerId',
'devbuild',
'version',
'siteId',
'wpLanguage',
'wpVersion',
'siteProfile',
];
export const extraBody = {
...Object.fromEntries(
Object.entries(window.extSharedData).filter(([key]) =>
allowList.includes(key),
),
),
};