<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">

    <!-- Plugin to intercept order placement for consent handling -->
    <type name="Magento\Sales\Model\Order">
        <plugin
            name="vitaminsforlife_klaviyo_consent_plugin"
            type="VitaminsForLife\KlaviyoCustom\Plugin\ConsentCheckboxPlugin"
            sortOrder="10"
        />
    </type>

    <!-- Register CLI command -->
    <type name="Magento\Framework\Console\CommandList">
        <arguments>
            <argument name="commands" xsi:type="array">
                <item name="klaviyo_sync_contact_forms"
                      xsi:type="object">
                    VitaminsForLife\KlaviyoCustom\Console\SyncHistoricalContactForms
                </item>
            </argument>
        </arguments>
    </type>

</config>
