File tree Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Expand file tree Collapse file tree 2 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 216
216
"type" : " object" ,
217
217
"additionalProperties" : false ,
218
218
"properties" : {
219
+ "id" : {
220
+ "type" : " string" ,
221
+ "default" : " "
222
+ },
223
+ "healthy" : {
224
+ "type" : " boolean" ,
225
+ "default" : false
226
+ },
219
227
"issues" : {
220
228
"$ref" : " #/components/schemas/SocketIssueList"
221
229
},
254
262
}
255
263
},
256
264
"required" : [
265
+ " healthy" ,
266
+ " id" ,
257
267
" issues" ,
258
268
" score"
259
269
]
6199
6209
"type" : " object" ,
6200
6210
"additionalProperties" : {
6201
6211
"type" : " string" ,
6202
- "default" : " " ,
6203
6212
"format" : " binary"
6213
+ },
6214
+ "properties" : {
6215
+ "issueRules" : {
6216
+ "type" : " object" ,
6217
+ "additionalProperties" : {
6218
+ "type" : " boolean" ,
6219
+ "default" : false
6220
+ },
6221
+ "properties" : {}
6222
+ }
6204
6223
}
6205
6224
}
6206
6225
}
Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ export interface components {
66
66
depscore : number ;
67
67
} ;
68
68
SocketReport : {
69
+ /** @default */
70
+ id : string ;
71
+ /** @default false */
72
+ healthy : boolean ;
69
73
issues : components [ "schemas" ] [ "SocketIssueList" ] ;
70
74
score : {
71
75
/** @default 0 */
@@ -1984,7 +1988,9 @@ export interface operations {
1984
1988
} ;
1985
1989
requestBody : {
1986
1990
content : {
1987
- "multipart/form-data" : { [ key : string ] : never } ;
1991
+ "multipart/form-data" : {
1992
+ issueRules ?: { [ key : string ] : boolean } ;
1993
+ } & { [ key : string ] : never } ;
1988
1994
} ;
1989
1995
} ;
1990
1996
} ;
You can’t perform that action at this time.
0 commit comments