import { ok, badRequest, serverError } from 'wix-http-functions'; import { contacts } from 'wix-crm-backend'; // --- 1. THE UPDATE FUNCTION (Automation calls this) --- export async function post_updateContactData(request) { try { const body = await request.body.json(); const { contactId, customValue } = body; if (!contactId) throw new Error("No contactId received"); const myContact = await contacts.getContact(contactId, { suppressAuth: true }); const identifiers = { contactId, revision: myContact.revision }; const info = { extendedFields: { // Ensure this key matches what listKeys shows "custom.purchased": customValue ? customValue.toString() : "false" } }; await contacts.updateContact(identifiers, info, { suppressAuth: true }); return ok({ body: { "status": "success" } }); } catch (error) { console.error("Update Error:", error.message); return badRequest({ body: { "error": error.message } }); } } // --- 2. THE KEY FINDER (Visit: ://yoursite.com) --- // This version is forced to be extra "loud" so it won't be blank. export async function get_listKeys(request) { try { const fields = await contacts.queryExtendedFields().find({ suppressAuth: true }); const customKeys = fields.items .filter(f => f.fieldType === "USER_DEFINED") .map(f => `${f.displayName}: ${f.key}`); const textResponse = customKeys.length > 0 ? "FOUND KEYS:\n\n" + customKeys.join("\n") : "No custom fields found in your Dashboard."; return ok({ headers: { "Content-Type": "text/plain" }, body: textResponse }); } catch (err) { return serverError({ body: "Error: " + err.message }); } }

Healing
Everything
Changes
Our Mission:
Our mission is to release God’s goodness and healing to the broken places in the hearts of His children; to expand the tent pegs of their hearts so that His Kingdom can be expanded on earth. This includes not only the One Whole Heart healing process itself, but also the training and equipping of individuals so they in turn can release the Lord’s healing in their church families. We envision the ministry being extended not only to the region, but also to the nations. We are not willing to believe that every heart cannot be free in Him. We will press in until that happens.

TESTIMONIES

Lydia Mortensen
Jacksonville, FL

Nancy Ojeda
Yucatan, Mexico



























