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

Carpet

Discover our extensive collection of carpets for your project. We offer an expansive selection, featuring thousands of options (more than we can showcase). Our partnerships with a multitude of distributors and manufacturers ensure the provision of superior quality materials for any type of project. Select the carpet you want, not what you're told to buy.

bottom of page