jfrog_get_package_versions
Retrieve versions of a package with publication dates and filter by vulnerability status. Supports Python, Node, Java, Go, .NET, Hugging Face, and Ruby packages.
Instructions
Useful for when you need to get a list of versions of a publicly available package. it can tell you each version's publication date. Can also filter based on version vulnerability status.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the package, as it appears in the package repository. | |
type | Yes | The type of package. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name of the package, as it appears in the package repository.",
"type": "string"
},
"type": {
"description": "The type of package.",
"enum": [
"pypi",
"npm",
"maven",
"golang",
"nuget",
"huggingface",
"rubygems"
],
"type": "string"
}
},
"required": [
"type",
"name"
],
"type": "object"
}