From 3769628e6a61d1d998c201acf5362dadc8deffb9 Mon Sep 17 00:00:00 2001 From: Josef Prochazka Date: Fri, 13 Mar 2026 14:46:21 +0100 Subject: [PATCH 1/2] Add `ActorRunStorageIds` --- src/resource_clients/actor.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/resource_clients/actor.ts b/src/resource_clients/actor.ts index 3448d59a..e964ea3e 100644 --- a/src/resource_clients/actor.ts +++ b/src/resource_clients/actor.ts @@ -701,6 +701,15 @@ export interface ActorRunListItem { usageTotalUsd?: number; } +export interface ActorRunStorageIds { + /** Aliased dataset IDs for this run. */ + datasets: { default: string; [alias: string]: string }; + /** Aliased key-value store IDs for this run. */ + keyValueStores: { default: string; [alias: string]: string }; + /** Aliased request queue IDs for this run. */ + requestQueues: { default: string; [alias: string]: string }; +} + /** * Complete Actor run information including statistics and usage details. * @@ -721,6 +730,7 @@ export interface ActorRun extends ActorRunListItem { pricingInfo?: ActorRunPricingInfo; chargedEventCounts?: Record; generalAccess?: RUN_GENERAL_ACCESS | null; + storageIds: ActorRunStorageIds; } /** From e78aab4c836a11928077920bf6ae14666012fcc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20Proch=C3=A1zka?= Date: Fri, 13 Mar 2026 15:44:11 +0100 Subject: [PATCH 2/2] Update src/resource_clients/actor.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Jindřich Bär --- src/resource_clients/actor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/resource_clients/actor.ts b/src/resource_clients/actor.ts index e964ea3e..3eb68c74 100644 --- a/src/resource_clients/actor.ts +++ b/src/resource_clients/actor.ts @@ -730,7 +730,7 @@ export interface ActorRun extends ActorRunListItem { pricingInfo?: ActorRunPricingInfo; chargedEventCounts?: Record; generalAccess?: RUN_GENERAL_ACCESS | null; - storageIds: ActorRunStorageIds; + storageIds?: ActorRunStorageIds; } /**