Commit 7bdae4d6 authored by Assunta DeSanto's avatar Assunta DeSanto
Browse files

Annotate the history_id paramter

parent a6327a52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -10621,7 +10621,7 @@ export interface operations {
            header?: {
                "run-as"?: string;
            };
            /** @description The ID of the History. */
            /** @description History ID or any string. */
            /** @description The ID of the item (`HDA`/`HDCA`) contained in the history. */
            path: {
                history_id: string;
+1 −1
Original line number Diff line number Diff line
@@ -824,7 +824,7 @@ class FastAPIHistoryContents:
        self,
        response: Response,
        trans: ProvidesHistoryContext = DependsOnTrans,
        history_id: str = "",
        history_id: str = Path(..., description="History ID or any string."),
        id: DecodedDatabaseIdField = HistoryItemIDPathParam,
        type: HistoryContentType = ContentTypePathParam,
        serialization_params: SerializationParams = Depends(query_serialization_params),