Functionalities are identical in both versions, just the path and category is different. More details of the endpoints can be seen in the swagger.
To see the second choice in the swagger, modify line 5 in main.py from from tdp_server.api.v1.api import api_router to from tdp_server.api.v2.api import api_router.
Discussion
This PR is a server started from scratch.
Choice between two different endpoint specifications regarding the url path and categorization:
Choice 1
Choice 2
The
configurations
category has been splitted in two categoriesstatus
andvariables
. The rest is identical; below are the changes :Functionalities are identical in both versions, just the path and category is different. More details of the endpoints can be seen in the swagger.
To see the second choice in the swagger, modify line 5 in
main.py
fromfrom tdp_server.api.v1.api import api_router
tofrom tdp_server.api.v2.api import api_router
.Agreements