From f863726411f03206364bb1a1c2544613c71fd582 Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Mon, 25 May 2026 16:18:43 +0200 Subject: [PATCH] added stagingBundle to bundle dict type --- ayon_api/typing.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ayon_api/typing.py b/ayon_api/typing.py index 68394c046..f8016524f 100644 --- a/ayon_api/typing.py +++ b/ayon_api/typing.py @@ -235,6 +235,7 @@ class BundleInfoDict(TypedDict): class BundlesInfoDict(TypedDict): bundles: list[BundleInfoDict] productionBundle: str + stagingBundle: str devBundles: list[str]