UNPKG

@salesforce/plugin-packaging

Version:

SF plugin that support Salesforce Packaging Platform

57 lines 1.34 kB
{ "$schema": "http://json-schema.org/draft-07/schema#", "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqResult", "definitions": { "BundleSObjects.PkgBundleVersionInstallReqResult": { "type": "object", "additionalProperties": false, "properties": { "Id": { "type": "string" }, "InstallStatus": { "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqStatus" }, "ValidationError": { "type": "string" }, "CreatedDate": { "type": "string" }, "CreatedById": { "type": "string" }, "Error": { "type": "array", "items": { "type": "string" } }, "PackageBundleVersionId": { "type": "string" }, "DevelopmentOrganization": { "type": "string" } }, "required": [ "CreatedById", "CreatedDate", "DevelopmentOrganization", "Id", "InstallStatus", "PackageBundleVersionId", "ValidationError" ] }, "BundleSObjects.PkgBundleVersionInstallReqStatus": { "type": "string", "enum": [ "Queued", "InProgress", "Success", "Error" ] } } }