Skip to content

Commit 5fb9c9a

Browse files
authored
feat: add maxItems and maxTotalChargeUsd to resurrect (#652)
Can be merged after apify/apify-core#19740
1 parent a4091c5 commit 5fb9c9a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/resource_clients/run.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,8 @@ export class RunClient extends ResourceClient {
130130
build: ow.optional.string,
131131
memory: ow.optional.number,
132132
timeout: ow.optional.number,
133+
maxItems: ow.optional.number,
134+
maxTotalChargeUsd: ow.optional.number,
133135
}));
134136

135137
const response = await this.httpClient.call({
@@ -261,6 +263,8 @@ export interface RunResurrectOptions {
261263
build?: string;
262264
memory?: number;
263265
timeout?: number;
266+
maxItems?: number;
267+
maxTotalChargeUsd?: number;
264268
}
265269

266270
export interface RunChargeOptions {

0 commit comments

Comments
 (0)