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 216216 "type" : " object" ,
217217 "additionalProperties" : false ,
218218 "properties" : {
219+ "id" : {
220+ "type" : " string" ,
221+ "default" : " "
222+ },
223+ "healthy" : {
224+ "type" : " boolean" ,
225+ "default" : false
226+ },
219227 "issues" : {
220228 "$ref" : " #/components/schemas/SocketIssueList"
221229 },
254262 }
255263 },
256264 "required" : [
265+ " healthy" ,
266+ " id" ,
257267 " issues" ,
258268 " score"
259269 ]
61996209 "type" : " object" ,
62006210 "additionalProperties" : {
62016211 "type" : " string" ,
6202- "default" : " " ,
62036212 "format" : " binary"
6213+ },
6214+ "properties" : {
6215+ "issueRules" : {
6216+ "type" : " object" ,
6217+ "additionalProperties" : {
6218+ "type" : " boolean" ,
6219+ "default" : false
6220+ },
6221+ "properties" : {}
6222+ }
62046223 }
62056224 }
62066225 }
Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ export interface components {
6666 depscore : number ;
6767 } ;
6868 SocketReport : {
69+ /** @default */
70+ id : string ;
71+ /** @default false */
72+ healthy : boolean ;
6973 issues : components [ "schemas" ] [ "SocketIssueList" ] ;
7074 score : {
7175 /** @default 0 */
@@ -1984,7 +1988,9 @@ export interface operations {
19841988 } ;
19851989 requestBody : {
19861990 content : {
1987- "multipart/form-data" : { [ key : string ] : never } ;
1991+ "multipart/form-data" : {
1992+ issueRules ?: { [ key : string ] : boolean } ;
1993+ } & { [ key : string ] : never } ;
19881994 } ;
19891995 } ;
19901996 } ;
You can’t perform that action at this time.
0 commit comments