# extendify/3.1.5/src/Shared/lib/data.js

Extendify, version 3.1.5. 21 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Shared/lib/data.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.5/raw/src/Shared/lib/data.js
- Modified: 2026-03-05T17:57:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Shared/lib/data.js#L10-L20`.

```javascript
// Optionally add items to request body
const allowList = [
	'partnerId',
	'devbuild',
	'version',
	'siteId',
	'homeUrl',
	'wpLanguage',
	'wpVersion',
	'siteCreatedAt',
	'siteProfile',
];

export const reqDataBasics = {
	...Object.fromEntries(
		Object.entries(window.extSharedData).filter(([key]) =>
			allowList.includes(key),
		),
	),
};

```
