Skip to content

Commit a16278a

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
feat: build api: include url in queued/in_progress checks
1 parent 24e9db5 commit a16278a

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 22
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-60fccc45e9e7fac02642f763acadcafbd890990992facb1242864364f7c3fa80.yml
3-
openapi_spec_hash: f4a06d91e54ada059445cd7ab63678b3
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/stainless%2Fstainless-v0-1d73a351f5570e4ce6fa4116eeb560acf7d31c32e54aeb86048e80e8ce9a8bce.yml
3+
openapi_spec_hash: 4e947471253594803217011d177b25ff
44
config_hash: 4b44da9496c775d2294758cd233f4ecd

src/resources/builds/builds.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,14 @@ export namespace CheckStep {
265265

266266
export interface Queued {
267267
status: 'queued';
268+
269+
url: string | null;
268270
}
269271

270272
export interface InProgress {
271273
status: 'in_progress';
274+
275+
url: string | null;
272276
}
273277

274278
export interface Completed {

0 commit comments

Comments
 (0)