@salesforce/plugin-packaging
Version:
SF plugin that support Salesforce Packaging Platform
29 lines (28 loc) • 647 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/PackageVersionRetrieveCommandResult",
"definitions": {
"PackageVersionRetrieveCommandResult": {
"type": "array",
"items": {
"$ref": "#/definitions/FileDownloadEntry"
}
},
"FileDownloadEntry": {
"type": "object",
"properties": {
"fullName": {
"type": "string"
},
"type": {
"type": "string"
},
"filePath": {
"type": "string"
}
},
"required": ["fullName", "type", "filePath"],
"additionalProperties": false
}
}
}