From e6becbf6f55a67a8736f1e925183881a8320d722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Novotny=CC=81?= Date: Tue, 4 Mar 2025 11:43:59 +0100 Subject: [PATCH] feat: add maxItems and maxTotalChargeUsd to resurrect --- src/resource_clients/run.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/resource_clients/run.ts b/src/resource_clients/run.ts index c1f91319..900a70f9 100644 --- a/src/resource_clients/run.ts +++ b/src/resource_clients/run.ts @@ -130,6 +130,8 @@ export class RunClient extends ResourceClient { build: ow.optional.string, memory: ow.optional.number, timeout: ow.optional.number, + maxItems: ow.optional.number, + maxTotalChargeUsd: ow.optional.number, })); const response = await this.httpClient.call({ @@ -261,6 +263,8 @@ export interface RunResurrectOptions { build?: string; memory?: number; timeout?: number; + maxItems?: number; + maxTotalChargeUsd?: number; } export interface RunChargeOptions {