Generates a summary of available services (tables) with their base endpoints. Groups routes by table name and returns one representative endpoint per table. Excludes custom endpoints.
The routes object containing route definitions.
Optional
Optional set of custom endpoint paths to exclude.
An object mapping table names (in kebab-case) to their base endpoints.
// Returns:// {// "users": "GET /users",// "join-users": "GET /join-users",// "other-table": "GET /other-table"// } Copy
// Returns:// {// "users": "GET /users",// "join-users": "GET /join-users",// "other-table": "GET /other-table"// }
Generates a summary of available services (tables) with their base endpoints. Groups routes by table name and returns one representative endpoint per table. Excludes custom endpoints.