From ab4905f5f1edfac134bd4f2b07faa8fb7db40ac4 Mon Sep 17 00:00:00 2001 From: Vincent Le Quec Date: Fri, 27 Oct 2023 14:21:07 +0200 Subject: [PATCH 1/2] feat: Add employees --- README.md | 7 ++++--- ps_tech_vendor_boilerplate.php | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ce57591..f3e5815 100644 --- a/README.md +++ b/README.md @@ -60,13 +60,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) 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', From 6ab22b0302812f453251c18ff2c6fc15259d7b7b Mon Sep 17 00:00:00 2001 From: Vincent Le Quec Date: Fri, 27 Oct 2023 14:45:30 +0200 Subject: [PATCH 2/2] docs: fix mandatory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f3e5815..b1fed2b 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,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