Skip to content

Commit

Permalink
v7 model: Change image.image_size to str
Browse files Browse the repository at this point in the history
Change-type: major
  • Loading branch information
otaviojacobi committed Sep 9, 2024
1 parent d2e4cf9 commit 369a63f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -4194,7 +4194,7 @@ The name must be a string; the optional doc argument can have any type.
"start_timestamp": str,
"end_timestamp": str,
"push_timestamp": str,
"image_size": int,
"image_size": str,
"dockerfile": str,
"error_message": str,
"is_a_build_of__service": Union[List[ServiceType], PineDeferred],
Expand Down
2 changes: 1 addition & 1 deletion balena/types/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ class ImageType(TypedDict):
start_timestamp: str
end_timestamp: str
push_timestamp: str
image_size: int
image_size: str
dockerfile: str
error_message: str
is_a_build_of__service: NavigationResource["ServiceType"]
Expand Down

0 comments on commit 369a63f

Please sign in to comment.