diff --git a/14/umbraco-cms/customizing/umbraco-package.md b/14/umbraco-cms/customizing/umbraco-package.md index c06453e5eb7..ba7044aa912 100644 --- a/14/umbraco-cms/customizing/umbraco-package.md +++ b/14/umbraco-cms/customizing/umbraco-package.md @@ -20,7 +20,6 @@ Before Umbraco 14, the manifest was declared in a `package.manifest` file instea "id": "My.Nuget.Package", "name": "Sir Trevor", "version": "1.0.0-beta", - "allowPackageTelemetry": true, "extensions": [ { "type": "propertyEditorUi", @@ -48,7 +47,7 @@ The `umbraco-package` accept these fields: "id": "", "name": "", "version": "", - "allowPackageTelemetry": true, + "allowTelemetry": true, "allowPublicAccess": false, "importmap": { "imports": { @@ -74,11 +73,13 @@ Allows you to specify a friendly name for your package that will be used for tel The version of your package, if this is not specified there will be no version-specific information for your package. This is used for telemetry and to help users understand what version of your package they are using. It is also used for package migrations. The version should follow the [Semantic Versioning](https://semver.org/) format. -### Allow Package Telemetry +### Allow Telemetry With this field, you can control the telemetry of this package, this will provide Umbraco with the knowledge of how many installations use this package. -Default is `false`. +The default is `true`. + +Also known as: `allowPackageTelemetry` ### Allow Public Access diff --git a/15/umbraco-cms/customizing/umbraco-package.md b/15/umbraco-cms/customizing/umbraco-package.md index 3cd2ea57da2..e655f30ebb0 100644 --- a/15/umbraco-cms/customizing/umbraco-package.md +++ b/15/umbraco-cms/customizing/umbraco-package.md @@ -20,7 +20,6 @@ Before Umbraco 14, a package was declared in a `package.manifest` file instead o "id": "My.Nuget.Package", "name": "Sir Trevor", "version": "1.0.0-beta", - "allowPackageTelemetry": true, "extensions": [ { "type": "propertyEditorUi", @@ -48,7 +47,7 @@ The `umbraco-package` accepts these fields: "id": "", "name": "", "version": "", - "allowPackageTelemetry": true, + "allowTelemetry": true, "allowPublicAccess": false, "importmap": { "imports": { @@ -74,11 +73,13 @@ Allows you to specify a friendly name for your package that will be used for tel The version of your package, if this is not specified there will be no version-specific information for your package. This is used for telemetry and to help users understand what version of your package they are using. It is also used for package migrations. The version should follow the [Semantic Versioning](https://semver.org/) format. -### Allow Package Telemetry +### Allow Telemetry With this field, you can control the telemetry of this package, this will provide Umbraco with the knowledge of how many installations use this package. -The default is `false`. +The default is `true`. + +Also known as: `allowPackageTelemetry` ### Allow Public Access