File tree Expand file tree Collapse file tree 2 files changed +86
-0
lines changed Expand file tree Collapse file tree 2 files changed +86
-0
lines changed Original file line number Diff line number Diff line change 1288
1288
"description": "",
1289
1289
"default": ""
1290
1290
},
1291
+ "authors": {
1292
+ "type": "array",
1293
+ "items": {
1294
+ "type": "string",
1295
+ "description": "",
1296
+ "default": ""
1297
+ },
1298
+ "description": ""
1299
+ },
1300
+ "errorData": {
1301
+ "type": "string",
1302
+ "description": "",
1303
+ "default": ""
1304
+ },
1291
1305
"provenance": {
1292
1306
"type": "string",
1293
1307
"description": "",
1305
1319
}
1306
1320
},
1307
1321
"required": [
1322
+ "authors",
1323
+ "errorData",
1308
1324
"filepath",
1309
1325
"match_strength",
1310
1326
"provenance",
1423
1439
"type": "integer",
1424
1440
"description": "",
1425
1441
"default": 0
1442
+ },
1443
+ "fix": {
1444
+ "type": "object",
1445
+ "additionalProperties": false,
1446
+ "description": "",
1447
+ "properties": {
1448
+ "type": {
1449
+ "type": "string",
1450
+ "description": "",
1451
+ "default": ""
1452
+ },
1453
+ "description": {
1454
+ "type": "string",
1455
+ "description": "",
1456
+ "default": ""
1457
+ }
1458
+ },
1459
+ "required": [
1460
+ "description",
1461
+ "type"
1462
+ ]
1426
1463
}
1427
1464
},
1428
1465
"required": [
7835
7872
"default": false
7836
7873
}
7837
7874
},
7875
+ {
7876
+ "name": "fixable",
7877
+ "in": "query",
7878
+ "required": false,
7879
+ "description": "Include only fixable alerts.",
7880
+ "schema": {
7881
+ "type": "boolean",
7882
+ "default": false
7883
+ }
7884
+ },
7838
7885
{
7839
7886
"name": "licenseattrib",
7840
7887
"in": "query",
@@ -122129,6 +122176,28 @@
122129
122176
"description": "",
122130
122177
"default": 0,
122131
122178
"nullable": true
122179
+ },
122180
+ "fix": {
122181
+ "type": "object",
122182
+ "additionalProperties": false,
122183
+ "description": "",
122184
+ "properties": {
122185
+ "type": {
122186
+ "type": "string",
122187
+ "description": "",
122188
+ "default": ""
122189
+ },
122190
+ "description": {
122191
+ "type": "string",
122192
+ "description": "",
122193
+ "default": ""
122194
+ }
122195
+ },
122196
+ "required": [
122197
+ "description",
122198
+ "type"
122199
+ ],
122200
+ "nullable": true
122132
122201
}
122133
122202
},
122134
122203
"required": [
Original file line number Diff line number Diff line change @@ -1144,6 +1144,9 @@ export interface components {
1144
1144
LicenseDetails: {
1145
1145
/** @default */
1146
1146
spdxDisj: string;
1147
+ authors: string[];
1148
+ /** @default */
1149
+ errorData: string;
1147
1150
/** @default */
1148
1151
provenance: string;
1149
1152
/** @default */
@@ -1183,6 +1186,12 @@ export interface components {
1183
1186
action?: string;
1184
1187
/** @default 0 */
1185
1188
actionPolicyIndex?: number;
1189
+ fix?: {
1190
+ /** @default */
1191
+ type: string;
1192
+ /** @default */
1193
+ description: string;
1194
+ };
1186
1195
};
1187
1196
SocketArtifactLink: {
1188
1197
/** @default false */
@@ -2895,6 +2904,8 @@ export interface operations {
2895
2904
alerts?: boolean;
2896
2905
/** @description Compact metadata. */
2897
2906
compact?: boolean;
2907
+ /** @description Include only fixable alerts. */
2908
+ fixable?: boolean;
2898
2909
/** @description Include license attribution data, including license text and author information. Maps attribution/license text to a list of data objects to which that attribution info applies. */
2899
2910
licenseattrib?: boolean;
2900
2911
/** @description Include detailed license information, including location and match strength, for each license datum. */
@@ -47062,6 +47073,12 @@ export interface operations {
47062
47073
start?: number | null;
47063
47074
/** @default 0 */
47064
47075
end?: number | null;
47076
+ fix?: {
47077
+ /** @default */
47078
+ type: string;
47079
+ /** @default */
47080
+ description: string;
47081
+ } | null;
47065
47082
};
47066
47083
dependency: {
47067
47084
/** @default false */
You can’t perform that action at this time.
0 commit comments