File tree Expand file tree Collapse file tree 2 files changed +50
-8
lines changed Expand file tree Collapse file tree 2 files changed +50
-8
lines changed Original file line number Diff line number Diff line change 4488
4488
"$ref" : " #/components/schemas/SocketRefList"
4489
4489
},
4490
4490
"label" : {
4491
- "type" : " string"
4491
+ "type" : " string" ,
4492
+ "default" : " "
4492
4493
}
4493
4494
},
4494
4495
"required" : [
4495
4496
" category" ,
4497
+ " label" ,
4496
4498
" locations" ,
4497
- " severity" ,
4498
- " label"
4499
+ " severity"
4499
4500
]
4500
4501
},
4501
4502
"SocketUsageRef" : {
4865
4866
"in" : " path" ,
4866
4867
"required" : true ,
4867
4868
"schema" : {
4868
- "type" : " string" ,
4869
- "pattern" : " ^([0-9]+)\\ .([0-9]+)\\ .([0-9]+)(?:-([0-9A-Za-z-]+(?:\\ .[0-9A-Za-z-]+)*))?(?:\\ +[0-9A-Za-z-]+)?$"
4869
+ "type" : " string"
4870
4870
}
4871
4871
}
4872
4872
],
4927
4927
"in" : " path" ,
4928
4928
"required" : true ,
4929
4929
"schema" : {
4930
- "type" : " string" ,
4931
- "pattern" : " ^([0-9]+)\\ .([0-9]+)\\ .([0-9]+)(?:-([0-9A-Za-z-]+(?:\\ .[0-9A-Za-z-]+)*))?(?:\\ +[0-9A-Za-z-]+)?$"
4930
+ "type" : " string"
4932
4931
}
4933
4932
}
4934
4933
],
5065
5064
"url" : {
5066
5065
"type" : " string" ,
5067
5066
"default" : " "
5067
+ },
5068
+ "repo" : {
5069
+ "type" : " string" ,
5070
+ "default" : " "
5071
+ },
5072
+ "branch" : {
5073
+ "type" : " string" ,
5074
+ "default" : " "
5075
+ },
5076
+ "pull_requests" : {
5077
+ "type" : " object" ,
5078
+ "default" : null
5079
+ },
5080
+ "commit" : {
5081
+ "type" : " string" ,
5082
+ "default" : " "
5083
+ },
5084
+ "owner" : {
5085
+ "type" : " string" ,
5086
+ "default" : " "
5087
+ },
5088
+ "created_at" : {
5089
+ "type" : " string" ,
5090
+ "default" : " "
5068
5091
}
5069
5092
},
5070
5093
"required" : [
5094
+ " branch" ,
5095
+ " commit" ,
5096
+ " created_at" ,
5071
5097
" id" ,
5098
+ " owner" ,
5099
+ " pull_requests" ,
5100
+ " repo" ,
5072
5101
" url"
5073
5102
]
5074
5103
}
5906
5935
}
5907
5936
}
5908
5937
}
5909
- }
5938
+ }
Original file line number Diff line number Diff line change @@ -1232,6 +1232,7 @@ export interface components {
1232
1232
severity : components [ "schemas" ] [ "SocketIssueSeverity" ] ;
1233
1233
category : components [ "schemas" ] [ "SocketCategory" ] ;
1234
1234
locations : components [ "schemas" ] [ "SocketRefList" ] ;
1235
+ /** @default */
1235
1236
label : string ;
1236
1237
} ;
1237
1238
SocketUsageRef : {
@@ -1532,6 +1533,18 @@ export interface operations {
1532
1533
id : string ;
1533
1534
/** @default */
1534
1535
url : string ;
1536
+ /** @default */
1537
+ repo : string ;
1538
+ /** @default */
1539
+ branch : string ;
1540
+ /** @default null */
1541
+ pull_requests : Record < string , never > ;
1542
+ /** @default */
1543
+ commit : string ;
1544
+ /** @default */
1545
+ owner : string ;
1546
+ /** @default */
1547
+ created_at : string ;
1535
1548
} ) [ ] ;
1536
1549
} ;
1537
1550
} ;
You can’t perform that action at this time.
0 commit comments