diff --git a/src/config/shopware6/customer.yaml b/src/config/shopware6/customer.yaml index a46a2c8..326907e 100644 --- a/src/config/shopware6/customer.yaml +++ b/src/config/shopware6/customer.yaml @@ -1,2 +1,2 @@ customer: - customer: { first_name: { formatter: first_name }, last_name: { formatter: last_name }, company: { formatter: company }, email: { formatter: email }, remote_address: { formatter: address } } + customer: { columns: { first_name: { formatter: first_name }, last_name: { formatter: last_name }, company: { formatter: company }, email: { formatter: email }, remote_address: { formatter: address } } } diff --git a/src/config/shopware6/customer_address.yaml b/src/config/shopware6/customer_address.yaml index bcab3ea..35a3c4e 100644 --- a/src/config/shopware6/customer_address.yaml +++ b/src/config/shopware6/customer_address.yaml @@ -1,2 +1,2 @@ customer_address: - customer_address: { company: { formatter: company }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, street: { formatter: street }, zipcode: { formatter: zipcode }, city: { formatter: city }, phone_number: { formatter: phone } } + customer_address: { columns: { company: { formatter: company }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, street: { formatter: street }, zipcode: { formatter: zipcode }, city: { formatter: city }, phone_number: { formatter: phone } } } diff --git a/src/config/shopware6/newsletter_recipient.yaml b/src/config/shopware6/newsletter_recipient.yaml index 65a84d5..a85eb9a 100644 --- a/src/config/shopware6/newsletter_recipient.yaml +++ b/src/config/shopware6/newsletter_recipient.yaml @@ -1,2 +1,2 @@ newsletter_recipient: - newsletter_recipient: { email: { formatter: email }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, city: { formatter: city }, street: { formatter: street } } + newsletter_recipient: { columns: { email: { formatter: email }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, city: { formatter: city } } } diff --git a/src/config/shopware6/order_address.yaml b/src/config/shopware6/order_address.yaml index ebee7e1..f8a8bfa 100644 --- a/src/config/shopware6/order_address.yaml +++ b/src/config/shopware6/order_address.yaml @@ -1,2 +1,2 @@ order_address: - order_address: { company: { formatter: company }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, street: { formatter: street }, zipcode: { formatter: zipcode }, city: { formatter: city }, phone_number: { formatter: phone } } + order_address: { columns: { company: { formatter: company }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, street: { formatter: street }, zipcode: { formatter: zipcode }, city: { formatter: city }, phone_number: { formatter: phone } } } diff --git a/src/config/shopware6/order_customer.yaml b/src/config/shopware6/order_customer.yaml index 525222d..42b14e9 100644 --- a/src/config/shopware6/order_customer.yaml +++ b/src/config/shopware6/order_customer.yaml @@ -1,2 +1,2 @@ order_customer: - order_customer: { email: { formatter: email }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, company: { formatter: company }, remote_address: { formatter: address } } + order_customer: { columns: { email: { formatter: email }, first_name: { formatter: first_name }, last_name: { formatter: last_name }, company: { formatter: company }, remote_address: { formatter: address } } } diff --git a/src/config/shopware6/user.yaml b/src/config/shopware6/user.yaml index 2ad62c0..4384899 100644 --- a/src/config/shopware6/user.yaml +++ b/src/config/shopware6/user.yaml @@ -1,2 +1,2 @@ user: - user: { first_name: { formatter: first_name }, last_name: { formatter: last_name }, email: { formatter: email } } + user: { columns: { first_name: { formatter: first_name }, last_name: { formatter: last_name }, email: { formatter: email } } }