File tree Expand file tree Collapse file tree 2 files changed +100
-3
lines changed Expand file tree Collapse file tree 2 files changed +100
-3
lines changed Original file line number Diff line number Diff line change 326
326
"description": "Total size of the package artifact in bytes",
327
327
"default": 0
328
328
},
329
+ "repositoryType": {
330
+ "type": "string",
331
+ "description": "Hugging Face model, dataset, or space type",
332
+ "default": ""
333
+ },
329
334
"alerts": {
330
335
"type": "array",
331
336
"items": {
336
341
"score": {
337
342
"$ref": "#/components/schemas/SocketScore"
338
343
},
344
+ "inputPurl": {
345
+ "type": "string",
346
+ "description": "Original unmodified PURL input string before normalization",
347
+ "default": ""
348
+ },
339
349
"batchIndex": {
340
350
"type": "integer",
341
- "description": "Index position of this artifact within its processing batch, used for ordering and pagination ",
351
+ "description": "Deprecated: Always 0. Previously used for batch ordering but replaced by inputPurl for better tracking. ",
342
352
"default": 0
343
353
},
344
354
"license": {
@@ -30768,10 +30778,36 @@
30768
30778
"type": "string",
30769
30779
"description": "",
30770
30780
"default": ""
30781
+ },
30782
+ "filters": {
30783
+ "type": "object",
30784
+ "additionalProperties": false,
30785
+ "properties": {
30786
+ "status": {
30787
+ "type": "array",
30788
+ "items": {
30789
+ "type": "string",
30790
+ "description": "",
30791
+ "default": ""
30792
+ },
30793
+ "description": ""
30794
+ },
30795
+ "requestId": {
30796
+ "type": "array",
30797
+ "items": {
30798
+ "type": "string",
30799
+ "description": "",
30800
+ "default": ""
30801
+ },
30802
+ "description": ""
30803
+ }
30804
+ },
30805
+ "description": ""
30771
30806
}
30772
30807
},
30773
30808
"required": [
30774
30809
"endDateInclusive",
30810
+ "filters",
30775
30811
"organizationId",
30776
30812
"queryStartTimestamp",
30777
30813
"startDateInclusive"
31225
31261
"cargo",
31226
31262
"chrome",
31227
31263
"golang",
31264
+ "huggingface",
31228
31265
"maven",
31229
31266
"npm",
31230
31267
"nuget",
31504
31541
"cargo",
31505
31542
"chrome",
31506
31543
"golang",
31544
+ "huggingface",
31507
31545
"maven",
31508
31546
"npm",
31509
31547
"nuget",
32011
32049
"schema": {
32012
32050
"type": "object",
32013
32051
"additionalProperties": false,
32014
- "description": "",
32015
32052
"properties": {
32016
32053
"limit": {
32017
32054
"type": "integer",
32025
32062
"description": "",
32026
32063
"default": 0,
32027
32064
"minimum": 0
32065
+ },
32066
+ "purls": {
32067
+ "type": "array",
32068
+ "items": {
32069
+ "type": "string",
32070
+ "description": "PURLs to filter results with",
32071
+ "default": ""
32072
+ },
32073
+ "description": ""
32028
32074
}
32029
32075
},
32030
32076
"required": [
32069
32115
"description": "",
32070
32116
"default": 0
32071
32117
},
32118
+ "purlFilters": {
32119
+ "type": "object",
32120
+ "additionalProperties": false,
32121
+ "description": "",
32122
+ "properties": {
32123
+ "valid": {
32124
+ "type": "array",
32125
+ "items": {
32126
+ "type": "string",
32127
+ "description": "Successfully parsed PURLs",
32128
+ "default": ""
32129
+ },
32130
+ "description": ""
32131
+ },
32132
+ "invalid": {
32133
+ "type": "array",
32134
+ "items": {
32135
+ "type": "string",
32136
+ "description": "PURLs that could not be parsed",
32137
+ "default": ""
32138
+ },
32139
+ "description": ""
32140
+ }
32141
+ },
32142
+ "required": [
32143
+ "invalid",
32144
+ "valid"
32145
+ ]
32146
+ },
32072
32147
"rows": {
32073
32148
"type": "array",
32074
32149
"items": {
32132
32207
"end",
32133
32208
"limit",
32134
32209
"offset",
32210
+ "purlFilters",
32135
32211
"rows"
32136
32212
]
32137
32213
}
Original file line number Diff line number Diff line change @@ -1477,10 +1477,20 @@ export interface components {
1477
1477
* @default 0
1478
1478
*/
1479
1479
size ?: number
1480
+ /**
1481
+ * @description Hugging Face model, dataset, or space type
1482
+ * @default
1483
+ */
1484
+ repositoryType ?: string
1480
1485
alerts ?: Array < components [ 'schemas' ] [ 'SocketAlert' ] >
1481
1486
score ?: components [ 'schemas' ] [ 'SocketScore' ]
1482
1487
/**
1483
- * @description Index position of this artifact within its processing batch, used for ordering and pagination
1488
+ * @description Original unmodified PURL input string before normalization
1489
+ * @default
1490
+ */
1491
+ inputPurl ?: string
1492
+ /**
1493
+ * @description Deprecated: Always 0. Previously used for batch ordering but replaced by inputPurl for better tracking.
1484
1494
* @default 0
1485
1495
*/
1486
1496
batchIndex ?: number
@@ -12486,6 +12496,10 @@ export interface operations {
12486
12496
startDateInclusive : string
12487
12497
/** @default */
12488
12498
endDateInclusive : string
12499
+ filters : {
12500
+ status ?: string [ ]
12501
+ requestId ?: string [ ]
12502
+ }
12489
12503
}
12490
12504
items : Array < {
12491
12505
/** @default */
@@ -12678,6 +12692,7 @@ export interface operations {
12678
12692
| 'cargo'
12679
12693
| 'chrome'
12680
12694
| 'golang'
12695
+ | 'huggingface'
12681
12696
| 'maven'
12682
12697
| 'npm'
12683
12698
| 'nuget'
@@ -12779,6 +12794,7 @@ export interface operations {
12779
12794
| 'cargo'
12780
12795
| 'chrome'
12781
12796
| 'golang'
12797
+ | 'huggingface'
12782
12798
| 'maven'
12783
12799
| 'npm'
12784
12800
| 'nuget'
@@ -12991,6 +13007,7 @@ export interface operations {
12991
13007
limit : number
12992
13008
/** @default 0 */
12993
13009
offset : number
13010
+ purls ?: string [ ]
12994
13011
}
12995
13012
}
12996
13013
}
@@ -13005,6 +13022,10 @@ export interface operations {
13005
13022
limit : number
13006
13023
/** @default 0 */
13007
13024
offset : number
13025
+ purlFilters : {
13026
+ valid : string [ ]
13027
+ invalid : string [ ]
13028
+ }
13008
13029
rows : Array < {
13009
13030
/** @default */
13010
13031
branch : string
You can’t perform that action at this time.
0 commit comments