Skip to content

Commit 966a99c

Browse files
committed
fix: updated schema
1 parent e67bf91 commit 966a99c

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

lib/index.d.ts

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3972,7 +3972,16 @@ export interface TestNode {
39723972
/**
39733973
* current state of the test run
39743974
*/
3975-
status?: 'pending' | 'cancelled' | 'creating' | 'building' | 'running' | 'succeeded' | 'failed' | 'errored'
3975+
status?:
3976+
| 'pending'
3977+
| 'cancelled'
3978+
| 'creating'
3979+
| 'building'
3980+
| 'running'
3981+
| 'succeeded'
3982+
| 'failed'
3983+
| 'errored'
3984+
| 'debugging'
39763985
/**
39773986
* when test node was updated
39783987
*/
@@ -4058,7 +4067,16 @@ export interface TestRun {
40584067
/**
40594068
* current state of the test run
40604069
*/
4061-
status?: 'pending' | 'cancelled' | 'creating' | 'building' | 'running' | 'succeeded' | 'failed' | 'errored'
4070+
status?:
4071+
| 'pending'
4072+
| 'cancelled'
4073+
| 'creating'
4074+
| 'building'
4075+
| 'running'
4076+
| 'succeeded'
4077+
| 'failed'
4078+
| 'errored'
4079+
| 'debugging'
40624080
/**
40634081
* The download location for the source code to be tested
40644082
*/
@@ -4178,7 +4196,7 @@ export interface PrivateSpacesVpn {
41784196
/**
41794197
* Status of the VPN
41804198
*/
4181-
status?: 'pending' | 'provisioning' | 'active' | 'deprovisioning' | 'complete' | 'failed'
4199+
status?: 'pending' | 'provisioning' | 'active' | 'deprovisioning' | 'failed'
41824200
/**
41834201
* Details of the status
41844202
*/

schema.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15044,7 +15044,8 @@
1504415044
"running",
1504515045
"succeeded",
1504615046
"failed",
15047-
"errored"
15047+
"errored",
15048+
"debugging"
1504815049
],
1504915050
"readOnly": true,
1505015051
"type": [
@@ -15251,7 +15252,8 @@
1525115252
"running",
1525215253
"succeeded",
1525315254
"failed",
15254-
"errored"
15255+
"errored",
15256+
"debugging"
1525515257
],
1525615258
"readOnly": true,
1525715259
"type": [
@@ -15802,7 +15804,6 @@
1580215804
"provisioning",
1580315805
"active",
1580415806
"deprovisioning",
15805-
"complete",
1580615807
"failed"
1580715808
],
1580815809
"example": "active",

0 commit comments

Comments
 (0)