diff --git a/README.md b/README.md index 0b2678e..b7b55fd 100644 --- a/README.md +++ b/README.md @@ -63,13 +63,14 @@ if ($moduleManager->isInstalled('ps_eventbus')) { The required consents are up to your needs, you may use: - `info` (mandatory): The shop technical data such as the version of PrestaShop or PHP (read only) -- `modules` (mandatory): The list of modules installed on the shop (read only) -- `themes` (mandatory): The list of themes installed on the shop (read only) -- `carts`: Information about the shopping carts of the shop (read only) +- `modules`: The list of modules installed on the shop (read only) +- `themes`: The list of themes installed on the shop (read only) - `carriers`: The characteristics of the carriers available on the shop (read only) +- `carts`: Information about the shopping carts of the shop (read only) - `categories`: The list of product categories of the shop (read only) - `currencies`: The list of currencies available in the shop (read only) - `customers`: The anonymized list of the shop customers (read only) +- `employees`: The anonymized list of the store employees (read only) - `languages`: Languages used by the shop (read only) - `manufacturers`: List of manufacturers of the products sold by the shop (read only) - `orders`: Information about orders placed on the shop (read only) @@ -80,7 +81,7 @@ The required consents are up to your needs, you may use: - `taxonomies`: Advanced categories available on the shop (read only) - `wishlists`: The anonymized wishlists of the customers (read only) -| `info`, `modules` and `themes` consents are mandatory. +| `info` is mandatory. ## Add the CDC to your config page diff --git a/ps_tech_vendor_boilerplate.php b/ps_tech_vendor_boilerplate.php index 1bfc2de..35fa6ca 100644 --- a/ps_tech_vendor_boilerplate.php +++ b/ps_tech_vendor_boilerplate.php @@ -152,11 +152,12 @@ public function getContent() 'info', 'modules', 'themes', - 'carts', 'carriers', + 'carts', 'categories', 'currencies', 'customers', + 'employees', 'languages', 'manufacturers', 'orders',