Skip to content

Commit d397d11

Browse files
committed
docs: mention full profiles in package and command description
1 parent 59cd22d commit d397d11

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# sfdx-plugin-source-read
22

3-
> sfdx/sf plugin to read Metadata via CRUD Metadata API
3+
> sfdx/sf plugin to read Metadata e.g. full Profiles via CRUD Metadata API
44
55
For certain Metadata Types there is a different behaviour of the [file-based](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_retrieve.htm) vs. [CRUD-based](https://developer.salesforce.com/docs/atlas.en-us.api_meta.meta/api_meta/meta_readMetadata.htm) Metadata API.
66

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sfdx-plugin-source-read",
3-
"description": "sfdx plugin to read Metadata via CRUD Metadata API",
3+
"description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API",
44
"version": "0.0.0-development",
55
"author": "Matthias Rolke @amtrack",
66
"bugs": "https://github.com/amtrack/sfdx-plugin-source-read/issues",

src/commands/force/source/read.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { convertToXml, parseCommaSeparatedValues } from "../../../utils.js";
1616
export class SourceReadCommand extends SfCommand<any> {
1717
public static readonly summary = "Read Metadata using the CRUD Metadata API";
1818
public static readonly description =
19-
"Read Metadata using the CRUD Metadata API";
19+
"Read Metadata e.g. full Profiles using the CRUD Metadata API";
2020

2121
public static readonly examples = [
2222
`$ <%= config.bin %> <%= command.id %> -m "Profile:Admin"`,

0 commit comments

Comments
 (0)