@@ -58,8 +58,7 @@ def sync_detailed(
5858) -> Response [Any | list [EntityDefinitionResponse ]]:
5959 """Retrieve all entity definitions with their versions
6060
61- Fetches a list of all entity definitions and their associated versions from the database. Requires
62- 'list:entitydefinitions' permission.
61+ Fetches a list of all entity definitions with versions, ordered by group and kind
6362
6463 Raises:
6564 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -84,8 +83,7 @@ def sync(
8483) -> Any | list [EntityDefinitionResponse ] | None :
8584 """Retrieve all entity definitions with their versions
8685
87- Fetches a list of all entity definitions and their associated versions from the database. Requires
88- 'list:entitydefinitions' permission.
86+ Fetches a list of all entity definitions with versions, ordered by group and kind
8987
9088 Raises:
9189 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -106,8 +104,7 @@ async def asyncio_detailed(
106104) -> Response [Any | list [EntityDefinitionResponse ]]:
107105 """Retrieve all entity definitions with their versions
108106
109- Fetches a list of all entity definitions and their associated versions from the database. Requires
110- 'list:entitydefinitions' permission.
107+ Fetches a list of all entity definitions with versions, ordered by group and kind
111108
112109 Raises:
113110 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
@@ -130,8 +127,7 @@ async def asyncio(
130127) -> Any | list [EntityDefinitionResponse ] | None :
131128 """Retrieve all entity definitions with their versions
132129
133- Fetches a list of all entity definitions and their associated versions from the database. Requires
134- 'list:entitydefinitions' permission.
130+ Fetches a list of all entity definitions with versions, ordered by group and kind
135131
136132 Raises:
137133 errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
0 commit comments