Skip to content

Commit

Permalink
docs: mention full profiles in package and command description
Browse files Browse the repository at this point in the history
  • Loading branch information
amtrack committed Dec 20, 2024
1 parent 59cd22d commit d397d11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sfdx-plugin-source-read

> sfdx/sf plugin to read Metadata via CRUD Metadata API
> sfdx/sf plugin to read Metadata e.g. full Profiles via CRUD Metadata API
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.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sfdx-plugin-source-read",
"description": "sfdx plugin to read Metadata via CRUD Metadata API",
"description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API",
"version": "0.0.0-development",
"author": "Matthias Rolke @amtrack",
"bugs": "https://github.com/amtrack/sfdx-plugin-source-read/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/force/source/read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { convertToXml, parseCommaSeparatedValues } from "../../../utils.js";
export class SourceReadCommand extends SfCommand<any> {
public static readonly summary = "Read Metadata using the CRUD Metadata API";
public static readonly description =
"Read Metadata using the CRUD Metadata API";
"Read Metadata e.g. full Profiles using the CRUD Metadata API";

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

0 comments on commit d397d11

Please sign in to comment.