Skip to content

Commit

Permalink
feat(api): OpenAPI spec update via Stainless API (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Jun 20, 2024
1 parent a42e9c6 commit da8e31a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 27
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-7cdd0b1eec3c7f00b1b2101d12e0c9fe83a60c503811c896de78458cba2e0034.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/val-town%2Fval-town-210a1f68d87ff41944e6003f4876d21ce2177fdb0b41b604051ab0a2318a2d04.yml
2 changes: 1 addition & 1 deletion src/resources/evals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class Evals extends APIResource {
}
}

export type EvalRunCodeResponse = string | number | unknown | Array<unknown> | boolean;
export type EvalRunCodeResponse = string | number | Record<string, unknown> | Array<unknown> | boolean;

export interface EvalRunCodeParams {
args?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/resources/vals/vals.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export namespace ValRetrieveResponse {
}
}

export type ValRunAnonymousResponse = string | number | unknown | Array<unknown> | boolean;
export type ValRunAnonymousResponse = string | number | Record<string, unknown> | Array<unknown> | boolean;

export interface ValCreateParams {
code: string;
Expand Down

0 comments on commit da8e31a

Please sign in to comment.