File tree Expand file tree Collapse file tree 2 files changed +106
-28
lines changed Expand file tree Collapse file tree 2 files changed +106
-28
lines changed Original file line number Diff line number Diff line change 2554
2554
"props" : {
2555
2555
"type" : " object" ,
2556
2556
"additionalProperties" : false ,
2557
- "properties" : {}
2557
+ "properties" : {
2558
+ "key" : {
2559
+ "type" : " string" ,
2560
+ "default" : " "
2561
+ },
2562
+ "description" : {
2563
+ "type" : " string" ,
2564
+ "default" : " "
2565
+ }
2566
+ },
2567
+ "required" : [
2568
+ " description" ,
2569
+ " key"
2570
+ ]
2558
2571
},
2559
2572
"usage" : {
2560
2573
"$ref" : " #/components/schemas/SocketUsageRef"
4495
4508
"$ref" : " #/components/schemas/SocketRefPyPI"
4496
4509
}
4497
4510
}
4511
+ },
4512
+ {
4513
+ "type" : " object" ,
4514
+ "additionalProperties" : false ,
4515
+ "properties" : {
4516
+ "type" : {
4517
+ "type" : " string" ,
4518
+ "enum" : [
4519
+ " go"
4520
+ ]
4521
+ },
4522
+ "value" : {
4523
+ "$ref" : " #/components/schemas/SocketRefGo"
4524
+ }
4525
+ }
4498
4526
}
4499
4527
]
4500
4528
},
4627
4655
"required" : [
4628
4656
" package"
4629
4657
]
4658
+ },
4659
+ "SocketRefGo" : {
4660
+ "type" : " object" ,
4661
+ "additionalProperties" : false ,
4662
+ "properties" : {
4663
+ "package" : {
4664
+ "type" : " string" ,
4665
+ "default" : " "
4666
+ },
4667
+ "version" : {
4668
+ "type" : " string" ,
4669
+ "default" : " "
4670
+ },
4671
+ "file" : {
4672
+ "$ref" : " #/components/schemas/SocketRefFile"
4673
+ }
4674
+ },
4675
+ "required" : [
4676
+ " package"
4677
+ ]
4630
4678
}
4631
4679
},
4632
4680
"securitySchemes" : {
5300
5348
},
5301
5349
"settings" : {
5302
5350
"type" : " object" ,
5303
- "properties " : {
5304
- "deferTo " : {
5305
- "type " : " string " ,
5306
- "nullable " : true
5307
- } ,
5308
- "issueRules " : {
5309
- "type" : " object " ,
5310
- "additionalProperties " : {
5351
+ "additionalProperties " : {
5352
+ "type " : " object " ,
5353
+ "properties " : {
5354
+ "deferTo " : {
5355
+ "type" : " string " ,
5356
+ "nullable " : true
5357
+ } ,
5358
+ "issueRules " : {
5311
5359
"type" : " object" ,
5312
- "properties" : {
5313
- "action" : {
5314
- "type" : " string" ,
5315
- "enum" : [
5316
- " defer" ,
5317
- " error" ,
5318
- " ignore" ,
5319
- " warn"
5320
- ]
5321
- }
5360
+ "nullable" : false ,
5361
+ "additionalProperties" : {
5362
+ "type" : " object" ,
5363
+ "nullable" : false ,
5364
+ "properties" : {
5365
+ "action" : {
5366
+ "type" : " string" ,
5367
+ "enum" : [
5368
+ " defer" ,
5369
+ " error" ,
5370
+ " ignore" ,
5371
+ " warn"
5372
+ ]
5373
+ }
5374
+ },
5375
+ "required" : [
5376
+ " action"
5377
+ ]
5322
5378
}
5323
5379
}
5324
- }
5380
+ },
5381
+ "required" : [
5382
+ " deferTo" ,
5383
+ " issueRules"
5384
+ ]
5325
5385
}
5326
5386
}
5327
5387
},
Original file line number Diff line number Diff line change @@ -717,7 +717,12 @@ export interface components {
717
717
value ?: components [ "schemas" ] [ "SocketIssueBasics" ] & {
718
718
/** @default */
719
719
description : string ;
720
- props : Record < string , never > ;
720
+ props : {
721
+ /** @default */
722
+ key : string ;
723
+ /** @default */
724
+ description : string ;
725
+ } ;
721
726
usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
722
727
} ;
723
728
} ) | ( {
@@ -1214,6 +1219,10 @@ export interface components {
1214
1219
/** @enum {string} */
1215
1220
type ?: "pypi" ;
1216
1221
value ?: components [ "schemas" ] [ "SocketRefPyPI" ] ;
1222
+ } | {
1223
+ /** @enum {string} */
1224
+ type ?: "go" ;
1225
+ value ?: components [ "schemas" ] [ "SocketRefGo" ] ;
1217
1226
} ;
1218
1227
SocketRefTextRange : {
1219
1228
/** @default 0 */
@@ -1261,6 +1270,13 @@ export interface components {
1261
1270
artifact ?: string ;
1262
1271
file ?: components [ "schemas" ] [ "SocketRefFile" ] ;
1263
1272
} ;
1273
+ SocketRefGo : {
1274
+ /** @default */
1275
+ package : string ;
1276
+ /** @default */
1277
+ version ?: string ;
1278
+ file ?: components [ "schemas" ] [ "SocketRefFile" ] ;
1279
+ } ;
1264
1280
} ;
1265
1281
responses : {
1266
1282
/** @description Bad request */
@@ -1645,13 +1661,15 @@ export interface operations {
1645
1661
/** @default */
1646
1662
start : string | null ;
1647
1663
settings : {
1648
- deferTo ?: string | null ;
1649
- issueRules ?: {
1650
- [ key : string ] : ( {
1651
- /** @enum {string} */
1652
- action ?: "defer" | "error" | "ignore" | "warn" ;
1653
- } ) | undefined ;
1654
- } ;
1664
+ [ key : string ] : ( {
1665
+ deferTo : string | null ;
1666
+ issueRules : {
1667
+ [ key : string ] : ( {
1668
+ /** @enum {string} */
1669
+ action : "defer" | "error" | "ignore" | "warn" ;
1670
+ } ) | undefined ;
1671
+ } ;
1672
+ } ) | undefined ;
1655
1673
} ;
1656
1674
} ) [ ] ;
1657
1675
} ;
You can’t perform that action at this time.
0 commit comments