Skip to content

Commit

Permalink
feat: add maxItems and maxTotalChargeUsd to resurrect
Browse files Browse the repository at this point in the history
  • Loading branch information
novotnyj committed Mar 4, 2025
1 parent 111cfbb commit e6becbf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/resource_clients/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -261,6 +263,8 @@ export interface RunResurrectOptions {
build?: string;
memory?: number;
timeout?: number;
maxItems?: number;
maxTotalChargeUsd?: number;
}

export interface RunChargeOptions {
Expand Down

0 comments on commit e6becbf

Please sign in to comment.