File tree Expand file tree Collapse file tree 2 files changed +81
-19
lines changed Expand file tree Collapse file tree 2 files changed +81
-19
lines changed Original file line number Diff line number Diff line change 361
361
]
362
362
}
363
363
},
364
+ "cvss" : {
365
+ "type" : " object" ,
366
+ "additionalProperties" : false ,
367
+ "properties" : {
368
+ "score" : {
369
+ "type" : " number" ,
370
+ "default" : 0
371
+ },
372
+ "vectorString" : {
373
+ "type" : " string" ,
374
+ "default" : " "
375
+ }
376
+ },
377
+ "required" : [
378
+ " score" ,
379
+ " vectorString"
380
+ ]
381
+ },
364
382
"description" : {
365
383
"type" : " string" ,
366
384
"default" : " "
392
410
},
393
411
"required" : [
394
412
" cveId" ,
413
+ " cvss" ,
395
414
" cwes" ,
396
415
" description" ,
397
416
" firstPatchedVersionIdentifier" ,
472
491
]
473
492
}
474
493
},
494
+ "cvss" : {
495
+ "type" : " object" ,
496
+ "additionalProperties" : false ,
497
+ "properties" : {
498
+ "score" : {
499
+ "type" : " number" ,
500
+ "default" : 0
501
+ },
502
+ "vectorString" : {
503
+ "type" : " string" ,
504
+ "default" : " "
505
+ }
506
+ },
507
+ "required" : [
508
+ " score" ,
509
+ " vectorString"
510
+ ]
511
+ },
475
512
"description" : {
476
513
"type" : " string" ,
477
514
"default" : " "
486
523
},
487
524
"severity" : {
488
525
"type" : " string" ,
489
- "default" : " high "
526
+ "default" : " critical "
490
527
},
491
528
"title" : {
492
529
"type" : " string" ,
503
540
},
504
541
"required" : [
505
542
" cveId" ,
543
+ " cvss" ,
506
544
" cwes" ,
507
545
" description" ,
508
546
" firstPatchedVersionIdentifier" ,
583
621
]
584
622
}
585
623
},
624
+ "cvss" : {
625
+ "type" : " object" ,
626
+ "additionalProperties" : false ,
627
+ "properties" : {
628
+ "score" : {
629
+ "type" : " number" ,
630
+ "default" : 0
631
+ },
632
+ "vectorString" : {
633
+ "type" : " string" ,
634
+ "default" : " "
635
+ }
636
+ },
637
+ "required" : [
638
+ " score" ,
639
+ " vectorString"
640
+ ]
641
+ },
586
642
"description" : {
587
643
"type" : " string" ,
588
644
"default" : " "
597
653
},
598
654
"severity" : {
599
655
"type" : " string" ,
600
- "default" : " low "
656
+ "default" : " critical "
601
657
},
602
658
"title" : {
603
659
"type" : " string" ,
614
670
},
615
671
"required" : [
616
672
" cveId" ,
673
+ " cvss" ,
617
674
" cwes" ,
618
675
" description" ,
619
676
" firstPatchedVersionIdentifier" ,
5871
5928
},
5872
5929
"format" : " binary"
5873
5930
},
5874
- "properties" : {
5875
- "repository" : {
5876
- "type" : " string" ,
5877
- "default" : " "
5878
- },
5879
- "branch" : {
5880
- "type" : " string" ,
5881
- "default" : " "
5882
- }
5883
- }
5931
+ "properties" : {}
5884
5932
}
5885
5933
}
5886
5934
},
Original file line number Diff line number Diff line change @@ -203,6 +203,12 @@ export interface components {
203
203
/** @default */
204
204
name : string ;
205
205
} [ ] ;
206
+ cvss : {
207
+ /** @default 0 */
208
+ score : number ;
209
+ /** @default */
210
+ vectorString : string ;
211
+ } ;
206
212
/** @default */
207
213
description : string ;
208
214
/** @default */
@@ -237,13 +243,19 @@ export interface components {
237
243
/** @default */
238
244
name : string ;
239
245
} [ ] ;
246
+ cvss : {
247
+ /** @default 0 */
248
+ score : number ;
249
+ /** @default */
250
+ vectorString : string ;
251
+ } ;
240
252
/** @default */
241
253
description : string ;
242
254
/** @default */
243
255
firstPatchedVersionIdentifier : string ;
244
256
/** @default */
245
257
ghsaId : string ;
246
- /** @default high */
258
+ /** @default critical */
247
259
severity : string ;
248
260
/** @default */
249
261
title : string ;
@@ -271,13 +283,19 @@ export interface components {
271
283
/** @default */
272
284
name : string ;
273
285
} [ ] ;
286
+ cvss : {
287
+ /** @default 0 */
288
+ score : number ;
289
+ /** @default */
290
+ vectorString : string ;
291
+ } ;
274
292
/** @default */
275
293
description : string ;
276
294
/** @default */
277
295
firstPatchedVersionIdentifier : string ;
278
296
/** @default */
279
297
ghsaId : string ;
280
- /** @default low */
298
+ /** @default critical */
281
299
severity : string ;
282
300
/** @default */
283
301
title : string ;
@@ -1887,11 +1905,7 @@ export interface operations {
1887
1905
requestBody ?: {
1888
1906
content : {
1889
1907
"multipart/form-data" : {
1890
- /** @default */
1891
- repository ?: string ;
1892
- /** @default */
1893
- branch ?: string ;
1894
- [ key : string ] : undefined ;
1908
+ [ key : string ] : never ;
1895
1909
} ;
1896
1910
} ;
1897
1911
} ;
You can’t perform that action at this time.
0 commit comments