File "update-theme-variation.js"
Full Path: /home/fresvfqn/waterdamagerestorationandrepairsmithtown.com/wp-content/plugins/extendify/src/Agent/workflows/extermal/tools/update-theme-variation.js
File size: 362 bytes
MIME-type: text/x-java
Charset: utf-8
import apiFetch from '@wordpress/api-fetch';
// variation here should be added to the payload by the custom component
const id = window.extSharedData.globalStylesPostID;
export default ({ variation }) =>
apiFetch({
method: 'POST',
path: `/wp/v2/global-styles/${id}`,
data: {
id,
settings: variation.settings,
styles: variation.styles,
},
});