From afa33ef70d26f94055c45a371132dbe2ff0ba1ed Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Tue, 15 Jul 2025 06:12:54 -0700 Subject: [PATCH 1/3] chore: Update .codegen.json with commit hash of codegen and openapi spec --- .codegen.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codegen.json b/.codegen.json index febf6e9..59a292a 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "ba4dd3b", "specHash": "8402463", "version": "1.15.0" } +{ "engineHash": "7d973e2", "specHash": "8402463", "version": "1.15.0" } From 601da507a00a6556e7459bc3278242e4419c53aa Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Wed, 16 Jul 2025 03:41:29 -0700 Subject: [PATCH 2/3] chore: Update .codegen.json with commit hash of codegen and openapi spec --- .codegen.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.codegen.json b/.codegen.json index 59a292a..e835980 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "7d973e2", "specHash": "8402463", "version": "1.15.0" } +{ "engineHash": "fe7a2b2", "specHash": "8402463", "version": "1.15.0" } From 2edc4f2d9d1e1ce59b732cc7738fc3e1452ef66a Mon Sep 17 00:00:00 2001 From: box-sdk-build Date: Thu, 17 Jul 2025 02:07:39 -0700 Subject: [PATCH 3/3] fix: specify events next_stream_position property format as int64 (box/box-openapi#535) --- .codegen.json | 2 +- box_sdk_gen/schemas/events.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.codegen.json b/.codegen.json index e835980..18b27f5 100644 --- a/.codegen.json +++ b/.codegen.json @@ -1 +1 @@ -{ "engineHash": "fe7a2b2", "specHash": "8402463", "version": "1.15.0" } +{ "engineHash": "fe7a2b2", "specHash": "719cda2", "version": "1.15.0" } diff --git a/box_sdk_gen/schemas/events.py b/box_sdk_gen/schemas/events.py index d452834..2e2e14a 100644 --- a/box_sdk_gen/schemas/events.py +++ b/box_sdk_gen/schemas/events.py @@ -16,7 +16,7 @@ def __init__( self, *, chunk_size: Optional[int] = None, - next_stream_position: Optional[Union[str, float]] = None, + next_stream_position: Optional[Union[str, int]] = None, entries: Optional[List[Event]] = None, **kwargs ): @@ -25,7 +25,7 @@ def __init__( :type chunk_size: Optional[int], optional :param next_stream_position: The stream position of the start of the next page (chunk) of events., defaults to None - :type next_stream_position: Optional[Union[str, float]], optional + :type next_stream_position: Optional[Union[str, int]], optional :param entries: A list of events., defaults to None :type entries: Optional[List[Event]], optional """