diff --git a/tools/api_refs/.phpdoc/template/menu-entry.html.twig b/tools/api_refs/.phpdoc/template/menu-entry.html.twig
deleted file mode 100644
index bedd3e8bfe..0000000000
--- a/tools/api_refs/.phpdoc/template/menu-entry.html.twig
+++ /dev/null
@@ -1,29 +0,0 @@
-{% set is_nested = entry.children.count or entry.interfaces[0] is defined or entry.classes[0] is defined or entry.traits[0] is defined or entry.enums[0] is defined %}
-{% set url = entry|route("url")|raw %}
-{% set type = type|default('') %}
-
-{% if type != 'namespace' or is_nested %}
-
- {% for child in entry.children %}
- {% include 'components/menu-entry.html.twig' with {
- title: child.name|shortFQSEN,
- nav_id: nav_id ~ '-' ~ index,
- entry: child,
- expanded: false,
- icon: 'folder.svg',
- type: 'namespace',
- } %}
-
- {% set index = index + 1 %}
- {% endfor %}
-
- {% endif %}
-
- {% if entry.interfaces[0] is defined or entry.classes[0] is defined or entry.traits[0] is defined or entry.enums[0] is defined %}
- {% if depth > 1 %}
-
- {% endif %}
-
- {% if entry.interfaces[0] is defined %}
- {% for element in entry.interfaces|sort_asc %}
- {% include 'components/menu-entry.html.twig' with {
- title: element.name|shortFQSEN,
- nav_id: nav_id ~ '-' ~ index,
- entry: element,
- expanded: false,
- icon: 'file.svg',
- } %}
-
- {% set index = index + 1 %}
- {% endfor %}
- {% endif %}
- {% if entry.classes[0] is defined %}
- {% for element in entry.classes|sort_asc %}
- {% include 'components/menu-entry.html.twig' with {
- title: element.name|shortFQSEN,
- nav_id: nav_id ~ '-' ~ index,
- entry: element,
- expanded: false,
- icon: 'file.svg',
- } %}
-
- {% set index = index + 1 %}
- {% endfor %}
- {% endif %}
- {% if entry.traits[0] is defined %}
- {% for element in entry.traits|sort_asc %}
- {% include 'components/menu-entry.html.twig' with {
- title: element.name|shortFQSEN,
- nav_id: nav_id ~ '-' ~ index,
- entry: element,
- expanded: false,
- icon: 'file.svg',
- } %}
-
- {% set index = index + 1 %}
- {% endfor %}
- {% endif %}
- {% if entry.enums[0] is defined %}
- {% for element in entry.enums|sort_asc %}
- {% include 'components/menu-entry.html.twig' with {
- title: element.name|shortFQSEN,
- nav_id: nav_id ~ '-' ~ index,
- entry: element,
- expanded: false,
- icon: 'file.svg',
- } %}
-
- {% set index = index + 1 %}
- {% endfor %}
- {% endif %}
-
- {% endif %}
-{% endif %}
diff --git a/tools/api_refs/api_refs.sh b/tools/api_refs/api_refs.sh
index 45df65be25..33f8e5ad9c 100755
--- a/tools/api_refs/api_refs.sh
+++ b/tools/api_refs/api_refs.sh
@@ -10,9 +10,9 @@ REST_API_OPENAPI_FILE_JSON=${5:-./docs/api/rest_api/rest_api_reference/openapi.j
DXP_EDITION='commerce'; # Edition from and for which the Reference is built
DXP_VERSION='5.0.*'; # Version from and for which the Reference is built
-DXP_ADD_ONS=(automated-translation rector integrated-help fieldtype-richtext-rte connector-anthropic cdp shopping-list); # Packages not included in $DXP_EDITION but added to the Reference, listed without their vendor "ibexa"
+DXP_ADD_ONS=(automated-translation rector integrated-help fieldtype-richtext-rte connector-anthropic connector-gemini shopping-list cdp connector-raptor connector-quable); # Packages not included in $DXP_EDITION but added to the Reference, listed without their vendor "ibexa"
DXP_EDITIONS=(oss headless experience commerce); # Available editions ordered by ascending capabilities
-SF_VERSION='7.3'; # Symfony version used by Ibexa DXP
+SF_VERSION='7.4'; # Symfony version used by Ibexa DXP
PHPDOC_VERSION='3.9.1'; # Version of phpDocumentor used to build the Reference
PHPDOC_CONF="$(pwd)/tools/api_refs/phpdoc.dist.xml"; # Absolute path to phpDocumentor configuration file
#PHPDOC_CONF="$(pwd)/tools/api_refs/phpdoc.dev.xml"; # Absolute path to phpDocumentor configuration file