import { sendOpenAILead } from 'backend/openaiConversions'; // OLD WIX FORMS export async function wixCrm_onFormSubmit(event) { try { const formId = event?.formId || ""; const contactId = event?.contactId || ""; const eventId = contactId ? `wix_oldform_${contactId}_${Date.now()}` : `wix_oldform_${formId}_${Date.now()}`; const result = await sendOpenAILead({ eventId, sourceUrl: "" }); console.log("OpenAI old Wix form conversion:", result); } catch (error) { console.error("OpenAI old Wix form event error:", error); } } // NEW WIX FORMS V2 export async function wixForms_onSubmissionCreated(event) { try { const submissionId = event?.entity?._id || event?.metadata?.entityId || ""; const formId = event?.entity?.formId || ""; const eventId = submissionId ? `wix_form_${submissionId}` : `wix_form_${formId}_${Date.now()}`; const result = await sendOpenAILead({ eventId, sourceUrl: "" }); console.log("OpenAI Wix Forms V2 conversion:", result); } catch (error) { console.error("OpenAI Wix Forms V2 event error:", error); } }
top of page

Hardwood

Browse our selection of hardwood flooring for your project. We've got 1,000's of options to choose (more than we can we show). We partner with tons of distributors and manufacturers to install the best possible materials, no matter the project. Get the hardwood floor you want, not what you're told to buy. 

CB5260LG_SeasideCalm-ROOM-1[1].jpg
bottom of page