A Salesforce CLI plugin containing commands to configure State and Country/Territory Picklists and other org settings.
npm install @jayree/sfdx-plugin-orgA Salesforce CLI plugin containing commands to configure State and Country/Territory Picklists and other org settings.





``bash`
sfdx plugins:install @jayree/sfdx-plugin-org
* sfdx jayree flow get coverage
* sfdx jayree org configure
* sfdx jayree org configure country
* sfdx jayree org configure state
* sfdx jayree org get settings
* sfdx jayree org stream
Check the flow test coverage of an Org.
`
USAGE
$ sfdx jayree flow get coverage -o
FLAGS
-o, --target-org=
configuration variable is already set.
--api-version=
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
ALIASES
$ sfdx jayree flowtestcoverage
EXAMPLES
$ sfdx jayree:flowtestcoverage
=== Flow Test Coverage
Coverage: 82%
...
`
_See code: src/commands/jayree/flow/get/coverage.ts_
Make configuration changes that are not covered by the metadata API.
`
USAGE
$ sfdx jayree org configure -o
[--concurrent]
FLAGS
-o, --target-org=
configuration variable is already set.
-t, --tasks=
active will be executed.
--api-version=
--concurrent Execute tasks in parallel.
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
EXAMPLES
$ sfdx jayree:org:configure
$ sfdx jayree:org:configure -u me@my.org
$ sfdx jayree:org:configure --tasks="Asset Settings","Activity Settings"
$ sfdx jayree:org:configure --concurrent --tasks="Asset Settings","Activity Settings"
`
_See code: src/commands/jayree/org/configure/index.ts_
update country integration values in the State/Country Picklists
`
USAGE
$ sfdx jayree org configure country -o
FLAGS
-o, --target-org=
configuration variable is already set.
--api-version=
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
`
_See code: src/commands/jayree/org/configure/country.ts_
import (create/update) states into the State/Country Picklists
`
USAGE
$ sfdx jayree org configure state -o
[--category
FLAGS
-o, --target-org=
configuration variable is already set.
--api-version=
--category=
--concurrent=
--country-code=
--language=
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
`
_See code: src/commands/jayree/org/configure/state.ts_
Write the current settings from an Org to a scratch org def file.
`
USAGE
$ sfdx jayree org get settings -o
FLAGS
-f, --file=
-o, --target-org=
configuration variable is already set.
-w, --writetoprojectscratchdeffile Write output to project-scratch-def.json file.
--api-version=
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
ALIASES
$ sfdx jayree org settings
EXAMPLES
$ sfdx jayree:org:settings
$ sfdx jayree:org:settings -u me@my.org
$ sfdx jayree:org:settings -u MyTestOrg1 -w
`
_See code: src/commands/jayree/org/get/settings.ts_
Listen to streaming api and platform events.
`
USAGE
$ sfdx jayree org stream -o
FLAGS
-c, --channel=
-o, --target-org=
configuration variable is already set.
-r, --replay-id=
[default: -1] Receive new events that are broadcast after the command subscribes. [-2]
Receive all event, including past events that are within the retention window and new
events.
--api-version=
GLOBAL FLAGS
--flags-dir=
--json Format output as json.
ALIASES
$ sfdx jayree org streaming
EXAMPLES
$ sfdx jayree org stream --channel=/event/eventName__e
...
``
_See code: src/commands/jayree/org/stream.ts_