Skip to content

Commit 7a23811

Browse files
fix: update messages (#976)
1 parent 5ed1ae8 commit 7a23811

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

messages/tree.export.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ Directory in which to generate the JSON files; default is current directory.
4646

4747
# PlanJsonWarning
4848

49-
After Nov 10, 2024, the JSON output for `--plan` will no longer include the `saveRefs` and `resolveRefs` properties.
49+
Starting on Nov 10, 2024, the JSON output for `--plan` will no longer include the `saveRefs` and `resolveRefs` properties.
5050

5151
# LegacyDeprecation
5252

53-
After Nov 10, 2024, this command will no longer be available. Use `data export tree`.
53+
Starting on Nov 10, 2024, this command will no longer be available. Use `data export tree` instead.

messages/tree.import.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Plan definition file to insert multiple data files.
2222

2323
# flags.plan.description
2424

25-
Unlike the `--files` flag, the files listed in the plan definition file **can** contain more then 200 records. These will be automatically batched to comply with that limit.
25+
Unlike when you use the `--files` flag, the files listed in the plan definition file **can** contain more then 200 records. When the CLI executes the import, it automatically batches the records to comply with the 200 record limit set by the API.
2626

27-
The file order matters--records with lookups to records in another file should be listed AFTER that file Example: you're loading Account and Contact records, and the contacts have references to those Accounts. The Accounts file should come before the Contacts file.
27+
The order in which you list the files in the plan definition file matters. Specifically, records with lookups to records in another file should be listed AFTER that file. For example, let's say you're loading Account and Contact records, and the contacts have references to those accounts. Be sure you list the Accounts file before the Contacts file.
2828

2929
The plan definition file has the following schema:
3030

src/commands/data/import/tree.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ export default class Import extends SfCommand<ImportResult[]> {
3737
plan: Flags.file({
3838
char: 'p',
3939
summary: messages.getMessage('flags.plan.summary'),
40+
description: messages.getMessage('flags.plan.description'),
4041
exactlyOne: ['files', 'plan'],
4142
exists: true,
4243
}),

0 commit comments

Comments
 (0)