@salesforce/plugin-settings 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/oclif.manifest.json +1 -1
- package/package.json +9 -9
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.
|
|
1
|
+
{"version":"1.0.9","commands":{"config:get":{"id":"config:get","summary":"Get the value of a configuration variable.","description":"Run \"sf config list\" to see all the configuration variables you've set. Global configuration variable are always displayed; local ones are displayed if you run the command in a project directory. Run \"sf config set\" to set a configuration variable.","strict":false,"pluginName":"@salesforce/plugin-settings","pluginAlias":"@salesforce/plugin-settings","pluginType":"core","aliases":[],"examples":["Get the value of the \"target-org\" configuration variable.\n<%= config.bin %> <%= command.id %> target-org","Get multiple configuration variables and display whether they're set locally or globally:\n<%= config.bin %> <%= command.id %> target-org api-version --verbose"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"verbose":{"name":"verbose","type":"boolean","summary":"Display whether the configuration variables are set locally or globally.","allowNo":false}},"args":[],"configurationVariablesSection":{"header":"CONFIGURATION VARIABLES","body":[{"name":"apiVersion","description":"API version of your project. Default: API version of your Dev Hub org. (sfdx only)"},{"name":"disableTelemetry","description":"Disables the collection of usage and user environment information, etc. Default: false. (sfdx only)"},{"name":"instanceUrl","description":"URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only)"},{"name":"maxQueryLimit","description":"Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only)"},{"name":"restDeploy","description":"Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only)"},{"name":"target-org","description":"Username or alias of the org that all commands run against by default. (sf only)"},{"name":"target-dev-hub","description":"Username or alias of your default Dev Hub org. (sf only)"}]}},"config:list":{"id":"config:list","summary":"List the configuration variables that you've previously set.","description":"Global configuration variables apply to any directory and are always displayed. If you run this command from a project directory, local configuration variables are also displayed.","strict":true,"pluginName":"@salesforce/plugin-settings","pluginAlias":"@salesforce/plugin-settings","pluginType":"core","aliases":[],"examples":["List both global configuration variables and those local to your project:\n$ <%= config.bin %> <%= command.id %>"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false}},"args":[]},"config:set":{"id":"config:set","summary":"Set one or more configuration variables, such as your default org.","description":"Use configuration variables to set CLI defaults, such as your default org or the API version you want the CLI to use. For example, if you set the \"target-org\" configuration variable, you don't need to specify it as a \"sf deploy metadata\" flag if you're deploying to your default org.\n\nLocal configuration variables apply only to your current project. Global variables, specified with the --global flag, apply in any directory.\n\nThe resolution order if you've set a flag value in multiple ways is as follows:\n\n 1. Flag value specified at the command line.\n 2. Local (project-level) configuration variable.\n 3. Global configuration variable.\n\nRun \"sf config list\" to see the configuration variables you've already set and their level (local or global).","strict":false,"pluginName":"@salesforce/plugin-settings","pluginAlias":"@salesforce/plugin-settings","pluginType":"core","aliases":[],"examples":["Set the local target-org configuration variable to an org username:\n<%= config.bin %> <%= command.id %> target-org=me@my.org","Set the local target-org configuration variable to an alias:\n<%= config.bin %> <%= command.id %> target-org=my-scratch-org","Set the global target-org configuration variable:\n<%= config.bin %> <%= command.id %> --global target-org=my-scratch-org"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"global":{"name":"global","type":"boolean","char":"g","summary":"Set the configuration variables globally, so they can be used from any directory.","allowNo":false}},"args":[],"configurationVariablesSection":{"header":"CONFIGURATION VARIABLES","body":[{"name":"apiVersion","description":"API version of your project. Default: API version of your Dev Hub org. (sfdx only)"},{"name":"disableTelemetry","description":"Disables the collection of usage and user environment information, etc. Default: false. (sfdx only)"},{"name":"instanceUrl","description":"URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only)"},{"name":"maxQueryLimit","description":"Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only)"},{"name":"restDeploy","description":"Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only)"},{"name":"target-org","description":"Username or alias of the org that all commands run against by default. (sf only)"},{"name":"target-dev-hub","description":"Username or alias of your default Dev Hub org. (sf only)"}]}},"config:unset":{"id":"config:unset","summary":"Unset local or global configuration variables.","description":"Local configuration variables apply only to your current project. Global configuration variables apply in any directory.","strict":false,"pluginName":"@salesforce/plugin-settings","pluginAlias":"@salesforce/plugin-settings","pluginType":"core","aliases":[],"examples":["Unset the local \"target-org\" configuration variable:\n<%= config.bin %> <%= command.id %> target-org","Unset multiple configuration variables globally:\n<%= config.bin %> <%= command.id %> target-org api-version --global"],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","helpGroup":"GLOBAL","allowNo":false},"global":{"name":"global","type":"boolean","char":"g","summary":"Unset the configuration variables globally, so they can no longer be used from any directory.","allowNo":false}},"args":[],"configurationVariablesSection":{"header":"CONFIGURATION VARIABLES","body":[{"name":"apiVersion","description":"API version of your project. Default: API version of your Dev Hub org. (sfdx only)"},{"name":"disableTelemetry","description":"Disables the collection of usage and user environment information, etc. Default: false. (sfdx only)"},{"name":"instanceUrl","description":"URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only)"},{"name":"maxQueryLimit","description":"Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only)"},{"name":"restDeploy","description":"Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only)"},{"name":"target-org","description":"Username or alias of the org that all commands run against by default. (sf only)"},{"name":"target-dev-hub","description":"Username or alias of your default Dev Hub org. (sf only)"}]}}}}
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-settings",
|
|
3
3
|
"description": "configure the Salesforce CLI",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.9",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@oclif/core": "^1.16.5",
|
|
9
9
|
"@salesforce/core": "^3.30.8",
|
|
10
|
-
"@salesforce/sf-plugins-core": "^1.
|
|
10
|
+
"@salesforce/sf-plugins-core": "^1.15.2",
|
|
11
11
|
"tslib": "^2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@oclif/plugin-command-snapshot": "^3.2.
|
|
15
|
-
"@oclif/test": "^2.2.
|
|
16
|
-
"@salesforce/cli-plugins-testkit": "^3.2.
|
|
14
|
+
"@oclif/plugin-command-snapshot": "^3.2.3",
|
|
15
|
+
"@oclif/test": "^2.2.3",
|
|
16
|
+
"@salesforce/cli-plugins-testkit": "^3.2.1",
|
|
17
17
|
"@salesforce/dev-config": "^3.1.0",
|
|
18
18
|
"@salesforce/dev-scripts": "^3.1.0",
|
|
19
19
|
"@salesforce/kit": "^1.6.1",
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"@salesforce/ts-types": "^1.5.20",
|
|
24
24
|
"@types/fs-extra": "^9.0.13",
|
|
25
25
|
"@types/shelljs": "^0.8.11",
|
|
26
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.39.0",
|
|
27
27
|
"@typescript-eslint/parser": "^5.38.1",
|
|
28
28
|
"chai": "^4.3.6",
|
|
29
|
-
"eslint": "^8.
|
|
29
|
+
"eslint": "^8.25.0",
|
|
30
30
|
"eslint-config-prettier": "^8.5.0",
|
|
31
31
|
"eslint-config-salesforce": "^1.1.0",
|
|
32
32
|
"eslint-config-salesforce-license": "^0.1.6",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
"access": "public"
|
|
118
118
|
},
|
|
119
119
|
"sfdx": {
|
|
120
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.0.
|
|
121
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.0.
|
|
120
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.0.9.crt",
|
|
121
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-settings/1.0.9.sig"
|
|
122
122
|
}
|
|
123
123
|
}
|