@jayree/sfdx-plugin-manifest
Version:
A Salesforce CLI plugin containing commands for creating manifest files from Salesforce orgs or git commits of sfdx projects.
39 lines (38 loc) • 897 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/GitDiffCommandResult",
"definitions": {
"GitDiffCommandResult": {
"type": "object",
"properties": {
"manifest": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": ["path", "name"],
"additionalProperties": false
},
"destructiveChanges": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": ["path", "name"],
"additionalProperties": false
}
},
"additionalProperties": false
}
}
}