Skip to content

Commit

Permalink
fix: add scopeProfiles property to package directories (#80)
Browse files Browse the repository at this point in the history
* fix: add scopeProfile property to package directories

* fix: update descriptions
  • Loading branch information
shetzel committed Oct 26, 2023
1 parent 765000f commit 3f32839
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions sfdx-project.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@
"releaseNotesUrl": {
"$ref": "#/definitions/packageDirectory.releaseNotesUrl"
},
"scopeProfiles": {
"$ref": "#/definitions/packageDirectory.scopeProfiles"
},
"seedMetadata": {
"$ref": "#/definitions/packageDirectory.seedMetadata"
},
Expand Down Expand Up @@ -157,12 +160,12 @@
"namespace": {
"title": "Namespace",
"type": "string",
"description": "The global namespace that is used with a package. The namespace must be registered with an org that is associated with your Dev Hub org. This namespace is assigned to scratch orgs created with the org:create command. If you’re creating an unlocked package, you have the option to create a package with no namespace."
"description": "A namespace is an alphanumeric identifier that distinguishes your package and its contents from other packages in your customer’s org. For steps on how to register a namespace and link it to your Dev Hub org, see Create and Register Your Namespace for Second-Generation Managed Packages on developer.salesforce.com. If you’re creating an unlocked package, you can create it without a namespace."
},
"sourceApiVersion": {
"title": "Source API Version",
"type": "string",
"description": "The API version that the source is compatible with. The default is the same version as the Salesforce CLI.",
"description": "The API version that the source is compatible with. By default it matches the API version.",
"default": "48.0"
},
"sfdcLoginUrl": {
Expand Down Expand Up @@ -621,6 +624,12 @@
"title": "Post Install Script",
"description": "The post install script."
},
"packageDirectory.scopeProfiles": {
"type": "boolean",
"title": "Scope Profiles",
"description": "Determines whether to include profile settings from only the directory being packaged (true), or whether to include profile settings from all package directories (false). If not specified, the default is false.",
"default": false
},
"packageDirectory.seedMetadata": {
"type": "object",
"title": "Seed Metadata",
Expand Down Expand Up @@ -659,7 +668,8 @@
"packageDirectory.includeProfileUserLicenses": {
"type": "boolean",
"title": "Include Profile User Licenses",
"description": "Whether to include <userLicense> elements in profile metadata "
"description": "Whether to include <userLicense> elements in profile metadata. Defaults to false.",
"default": false
},
"packageDirectory.apexTestAccess": {
"type": "object",
Expand Down

0 comments on commit 3f32839

Please sign in to comment.