PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.65
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.65
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
leadin / scripts / utils / contentEmbedInstaller.ts

contentEmbedInstaller.ts in HubSpot All-In-One Marketing – Forms, Popups, Live Chat 11.3.65, at scripts/utils/contentEmbedInstaller.ts

28 lines 743 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 type ContentEmbedInfoResponse = {
2 success: boolean;
3 data?: {
4 // Empty if user doesn't have permissions or plugin already activated
5 activateAjaxUrl?: string;
6 message: string;
7 };
8 };
9
10 export function startInstall(nonce: string) {
11 const formData = new FormData();
12 const ajaxUrl = (window as any).ajaxurl;
13 formData.append('_wpnonce', nonce);
14 formData.append('action', 'content_embed_install');
15 return fetch(ajaxUrl, {
16 method: 'POST',
17 body: formData,
18 keepalive: true,
19 }).then<ContentEmbedInfoResponse>(res => res.json());
20 }
21
22 export function startActivation(requestUrl: string) {
23 return fetch(requestUrl, {
24 method: 'POST',
25 keepalive: true,
26 }).then<ContentEmbedInfoResponse>(res => res.json());
27 }
28