File tree Expand file tree Collapse file tree 2 files changed +62
-2
lines changed Expand file tree Collapse file tree 2 files changed +62
-2
lines changed Original file line number Diff line number Diff line change 4599
4599
}
4600
4600
}
4601
4601
},
4602
+ {
4603
+ "type" : " object" ,
4604
+ "additionalProperties" : false ,
4605
+ "properties" : {
4606
+ "type" : {
4607
+ "type" : " string" ,
4608
+ "enum" : [
4609
+ " ambiguousClassifier"
4610
+ ]
4611
+ },
4612
+ "value" : {
4613
+ "allOf" : [
4614
+ {
4615
+ "$ref" : " #/components/schemas/SocketIssueBasics"
4616
+ },
4617
+ {
4618
+ "type" : " object" ,
4619
+ "additionalProperties" : false ,
4620
+ "properties" : {
4621
+ "description" : {
4622
+ "type" : " string" ,
4623
+ "default" : " "
4624
+ },
4625
+ "props" : {
4626
+ "type" : " object" ,
4627
+ "additionalProperties" : false ,
4628
+ "properties" : {
4629
+ "classifier" : {
4630
+ "type" : " string" ,
4631
+ "default" : " "
4632
+ }
4633
+ },
4634
+ "required" : [
4635
+ " classifier"
4636
+ ]
4637
+ },
4638
+ "usage" : {
4639
+ "$ref" : " #/components/schemas/SocketUsageRef"
4640
+ }
4641
+ },
4642
+ "required" : [
4643
+ " description" ,
4644
+ " props"
4645
+ ]
4646
+ }
4647
+ ]
4648
+ }
4649
+ }
4650
+ },
4602
4651
{
4603
4652
"type" : " object" ,
4604
4653
"additionalProperties" : false ,
6469
6518
"/dependencies/upload" : {
6470
6519
"post" : {
6471
6520
"tags" : [
6472
- " Upload" ,
6473
6521
" Dependencies"
6474
6522
],
6475
6523
"summary" : " Create a snapshot of all dependencies from manifest information" ,
6801
6849
"/orgs/{org_slug}/repos/{repo_slug}" : {
6802
6850
"get" : {
6803
6851
"tags" : [
6804
- " Repositories) "
6852
+ " Repositories"
6805
6853
],
6806
6854
"summary" : " Get repository (unstable)" ,
6807
6855
"operationId" : " getOrgRepo" ,
Original file line number Diff line number Diff line change @@ -1359,6 +1359,18 @@ export interface components {
1359
1359
} ;
1360
1360
usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1361
1361
} ;
1362
+ } ) | ( {
1363
+ /** @enum {string} */
1364
+ type ?: "ambiguousClassifier" ;
1365
+ value ?: components [ "schemas" ] [ "SocketIssueBasics" ] & {
1366
+ /** @default */
1367
+ description : string ;
1368
+ props : {
1369
+ /** @default */
1370
+ classifier : string ;
1371
+ } ;
1372
+ usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1373
+ } ;
1362
1374
} ) | ( {
1363
1375
/** @enum {string} */
1364
1376
type ?: "didYouMean" ;
You can’t perform that action at this time.
0 commit comments