From 68cebf1f9e41c50156bf913a1407d5a3ec2dfeb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernst=20W=C3=BCrger?= Date: Thu, 3 Apr 2025 12:40:32 +0200 Subject: [PATCH] fix: `WorkitemsSingleGetResponseDataRelationshipsApprovalsDataItemType` missing option Somehow in relationships there can be workitem_approvals included. This is missing in the enum data type. --- ...e_get_response_data_relationships_approvals_data_item_type.py | 1 + 1 file changed, 1 insertion(+) diff --git a/polarion_rest_api_client/open_api_client/models/workitems_single_get_response_data_relationships_approvals_data_item_type.py b/polarion_rest_api_client/open_api_client/models/workitems_single_get_response_data_relationships_approvals_data_item_type.py index 4534eccd..23e8e866 100644 --- a/polarion_rest_api_client/open_api_client/models/workitems_single_get_response_data_relationships_approvals_data_item_type.py +++ b/polarion_rest_api_client/open_api_client/models/workitems_single_get_response_data_relationships_approvals_data_item_type.py @@ -7,6 +7,7 @@ class WorkitemsSingleGetResponseDataRelationshipsApprovalsDataItemType( str, Enum ): + WORKITEM_APPROVALS = "workitem_approvals" WORKRECORDS = "workrecords" def __str__(self) -> str: