diff --git a/.codegen.json b/.codegen.json index 6521d1b3..4cb09839 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "02fdae4", "specHash": "74a1e4a", "version": "10.5.0" } +{ "engineHash": "02fdae4", "specHash": "c8e3a85", "version": "10.5.0" } diff --git a/box_sdk_gen/managers/search.py b/box_sdk_gen/managers/search.py index dfb1a16d..cdfc76d8 100644 --- a/box_sdk_gen/managers/search.py +++ b/box_sdk_gen/managers/search.py @@ -93,7 +93,7 @@ class SearchForContentContentTypes(str, Enum): DESCRIPTION = 'description' FILE_CONTENT = 'file_content' COMMENTS = 'comments' - TAG = 'tag' + TAGS = 'tags' class SearchForContentType(str, Enum): diff --git a/box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py b/box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py index f1423d2c..7df54508 100644 --- a/box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py +++ b/box_sdk_gen/schemas/v2025_r0/hub_item_operation_result_v2025_r0.py @@ -25,6 +25,7 @@ def __init__( *, action: Optional[str] = None, item: Optional[HubItemReferenceV2025R0] = None, + parent_id: Optional[str] = None, status: Optional[int] = None, error: Optional[str] = None, **kwargs @@ -32,6 +33,8 @@ def __init__( """ :param action: The action performed on the item., defaults to None :type action: Optional[str], optional + :param parent_id: The ID of the parent block the item was added to., defaults to None + :type parent_id: Optional[str], optional :param status: The HTTP status code of the operation., defaults to None :type status: Optional[int], optional :param error: Error message if the operation failed., defaults to None @@ -40,5 +43,6 @@ def __init__( super().__init__(**kwargs) self.action = action self.item = item + self.parent_id = parent_id self.status = status self.error = error