File tree Expand file tree Collapse file tree 2 files changed +66
-5
lines changed Expand file tree Collapse file tree 2 files changed +66
-5
lines changed Original file line number Diff line number Diff line change 3776
3776
}
3777
3777
}
3778
3778
},
3779
+ {
3780
+ "type" : " object" ,
3781
+ "additionalProperties" : false ,
3782
+ "properties" : {
3783
+ "type" : {
3784
+ "type" : " string" ,
3785
+ "enum" : [
3786
+ " licenseSpdxDisj"
3787
+ ]
3788
+ },
3789
+ "value" : {
3790
+ "allOf" : [
3791
+ {
3792
+ "$ref" : " #/components/schemas/SocketIssueBasics"
3793
+ },
3794
+ {
3795
+ "type" : " object" ,
3796
+ "additionalProperties" : false ,
3797
+ "properties" : {
3798
+ "description" : {
3799
+ "type" : " string" ,
3800
+ "default" : " "
3801
+ },
3802
+ "props" : {
3803
+ "type" : " object" ,
3804
+ "additionalProperties" : false ,
3805
+ "properties" : {
3806
+ "spdxDisj" : {
3807
+ "type" : " string" ,
3808
+ "default" : " "
3809
+ }
3810
+ },
3811
+ "required" : [
3812
+ " spdxDisj"
3813
+ ]
3814
+ },
3815
+ "usage" : {
3816
+ "$ref" : " #/components/schemas/SocketUsageRef"
3817
+ }
3818
+ },
3819
+ "required" : [
3820
+ " description" ,
3821
+ " props"
3822
+ ]
3823
+ }
3824
+ ]
3825
+ }
3826
+ }
3827
+ },
3779
3828
{
3780
3829
"type" : " object" ,
3781
3830
"additionalProperties" : false ,
8340
8389
"/purl" : {
8341
8390
"post" : {
8342
8391
"tags" : [
8343
- " Artifacts "
8392
+ " Packages "
8344
8393
],
8345
8394
"summary" : " Get Packages (unstable)" ,
8346
- "operationId" : " batchArtifactFetch " ,
8395
+ "operationId" : " batchPackageFetch " ,
8347
8396
"requestBody" : {
8348
8397
"content" : {
8349
8398
"application/json" : {
8357
8406
"security" : [
8358
8407
{
8359
8408
"basicAuth" : [
8360
- " artifacts :list"
8409
+ " packages :list"
8361
8410
]
8362
8411
}
8363
8412
],
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ export interface paths {
281
281
*
282
282
* This endpoint consumes 100 units of your quota.
283
283
*/
284
- post : operations [ "batchArtifactFetch " ] ;
284
+ post : operations [ "batchPackageFetch " ] ;
285
285
} ;
286
286
}
287
287
@@ -1190,6 +1190,18 @@ export interface components {
1190
1190
props : Record < string , never > ;
1191
1191
usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1192
1192
} ;
1193
+ } ) | ( {
1194
+ /** @enum {string} */
1195
+ type ?: "licenseSpdxDisj" ;
1196
+ value ?: components [ "schemas" ] [ "SocketIssueBasics" ] & {
1197
+ /** @default */
1198
+ description : string ;
1199
+ props : {
1200
+ /** @default */
1201
+ spdxDisj : string ;
1202
+ } ;
1203
+ usage ?: components [ "schemas" ] [ "SocketUsageRef" ] ;
1204
+ } ;
1193
1205
} ) | ( {
1194
1206
/** @enum {string} */
1195
1207
type ?: "unsafeCopyright" ;
@@ -2995,7 +3007,7 @@ export interface operations {
2995
3007
*
2996
3008
* This endpoint consumes 100 units of your quota.
2997
3009
*/
2998
- batchArtifactFetch : {
3010
+ batchPackageFetch : {
2999
3011
requestBody ?: {
3000
3012
content : {
3001
3013
"application/json" : components [ "schemas" ] [ "SocketBatchPURLFetch" ] ;
You can’t perform that action at this time.
0 commit comments