@salesforce/core-bundle 6.5.5

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.
@@ -0,0 +1,160 @@
1
+ # unknownConfigKey
2
+
3
+ Unknown config name: %s.
4
+
5
+ # deprecatedConfigKey
6
+
7
+ Deprecated config name: %s. Please use %s instead.
8
+
9
+ # invalidWrite
10
+
11
+ The writeSync method is not allowed on SfdxConfig. Use the async write method instead.
12
+
13
+ # invalidConfigValue
14
+
15
+ Invalid config value: %s.
16
+
17
+ # invalidInstanceUrl
18
+
19
+ Specify a valid Salesforce instance URL.
20
+
21
+ # invalidApiVersion
22
+
23
+ Specify a valid Salesforce API version, for example, 42.0.
24
+
25
+ # invalidCustomOrgMetadataTemplates
26
+
27
+ Specify a valid repository URL or directory for the custom org metadata templates.
28
+
29
+ # invalidIsvDebuggerSid
30
+
31
+ Specify a valid Debugger SID.
32
+
33
+ # invalidIsvDebuggerUrl
34
+
35
+ Specify a valid Debugger URL.
36
+
37
+ # invalidNumberConfigValue
38
+
39
+ Specify a valid positive integer, for example, 150000.
40
+
41
+ # invalidBooleanConfigValue
42
+
43
+ The config value can only be set to true or false.
44
+
45
+ # invalidProjectWorkspace
46
+
47
+ This directory does not contain a valid Salesforce DX project.
48
+
49
+ # schemaValidationError
50
+
51
+ The config file "%s" is not schema valid.
52
+ Due to: %s
53
+
54
+ # schemaValidationError.actions
55
+
56
+ - Fix the invalid entries at %s.
57
+
58
+ # missingDefaultPath
59
+
60
+ In sfdx-project.json, be sure to specify which package directory (path) is the default. Example: `[{ "path": "packageDirectory1", "default": true }, { "path": "packageDirectory2" }]`
61
+
62
+ # missingPackageDirectory
63
+
64
+ The path "%s", specified in sfdx-project.json, does not exist. Be sure this directory is included in your project root.
65
+
66
+ # invalidPackageDirectory
67
+
68
+ The path "%s", specified in sfdx-project.json, must be indicated as a relative path to the project root.
69
+
70
+ # multipleDefaultPaths
71
+
72
+ In sfdx-project.json, indicate only one package directory (path) as the default.
73
+
74
+ # singleNonDefaultPackage
75
+
76
+ The sfdx-project.json file must include one, and only one, default package directory (path). Because your sfdx-project.json file contains only one package directory, it must be the default. Remove the `"default": false` key and try again.
77
+
78
+ # target-org
79
+
80
+ Username or alias of the org that all commands run against by default. (sf only)
81
+
82
+ # target-dev-hub
83
+
84
+ Username or alias of your default Dev Hub org. (sf only)
85
+
86
+ # defaultUsername
87
+
88
+ Username or alias of the org that all commands run against by default. (sfdx only)
89
+
90
+ # defaultDevHubUsername
91
+
92
+ Username or alias of your default Dev Hub org. (sfdx only)
93
+
94
+ # isvDebuggerSid
95
+
96
+ ISV debugger SID (sfdx only)
97
+
98
+ # isvDebuggerUrl
99
+
100
+ ISV debugger URL (sfdx only)
101
+
102
+ # org-isv-debugger-sid
103
+
104
+ ISV debugger SID.
105
+
106
+ # org-isv-debugger-url
107
+
108
+ ISV debugger URL.
109
+
110
+ # apiVersion
111
+
112
+ API version of your project. Default: API version of your Dev Hub org. (sfdx only)
113
+
114
+ # org-api-version
115
+
116
+ API version of your project. Default: API version of your Dev Hub org.
117
+
118
+ # disableTelemetry
119
+
120
+ Disables the collection of usage and user environment information, etc. Default: false. (sfdx only)
121
+
122
+ # disable-telemetry
123
+
124
+ Disables the collection of usage and user environment information, etc. Default: false.
125
+
126
+ # maxQueryLimit
127
+
128
+ Maximum number of Salesforce records returned by a CLI command. Default: 10,000. (sfdx only)
129
+
130
+ # org-max-query-limit
131
+
132
+ Maximum number of Salesforce records returned by a CLI command. Default: 10,000.
133
+
134
+ # restDeploy
135
+
136
+ Whether deployments use the Metadata REST API (true) or SOAP API (false, default value). (sfdx only)
137
+
138
+ # instanceUrl
139
+
140
+ URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com. (sfdx only)
141
+
142
+ # org-instance-url
143
+
144
+ URL of the Salesforce instance hosting your org. Default: https://login.salesforce.com.
145
+
146
+ # customOrgMetadataTemplates
147
+
148
+ A valid repository URL or directory for the custom org metadata templates.
149
+
150
+ # org-custom-metadata-templates
151
+
152
+ A valid repository URL or directory for the custom org metadata templates.
153
+
154
+ # org-capitalize-record-types
155
+
156
+ Whether record types are capitalized on scratch org creation.
157
+
158
+ # invalidId
159
+
160
+ The given id %s is not a valid 15 or 18 character Salesforce ID.
@@ -0,0 +1,30 @@
1
+ # incorrectAPIVersionError
2
+
3
+ Invalid API version %s. Expecting format "[1-9][0-9].0", i.e. 42.0
4
+
5
+ # domainNotFoundError
6
+
7
+ The org cannot be found
8
+
9
+ # domainNotFoundError.actions
10
+
11
+ - Verify that the org still exists,
12
+ - If your org is newly created, wait a minute and run your command again,
13
+ - If you deployed or updated the org's My Domain, logout from the CLI and authenticate again,
14
+ - If you are running in a CI environment with a DNS that blocks external IPs, try setting SFDX_DISABLE_DNS_CHECK=true
15
+
16
+ # noInstanceUrlError
17
+
18
+ Connection has no instanceUrl.
19
+
20
+ # noInstanceUrlError.actions
21
+
22
+ Make sure the instanceUrl is set in your command or config.
23
+
24
+ # noApiVersionsError
25
+
26
+ Org failed to respond with its list of API versions. This is usually the result of domain changes like activating MyDomain or Enhanced Domains
27
+
28
+ # noApiVersionsError.actions
29
+
30
+ Re-authenticate to the org.
@@ -0,0 +1,20 @@
1
+ {
2
+ "JsonParseError": "Parse error in file %s on line %s\n%s\n",
3
+ "AuthInfoCreationError": "Must pass a username and/or OAuth options when creating an AuthInfo instance.",
4
+ "AuthInfoOverwriteError": "Cannot create an AuthInfo instance that will overwrite existing auth data.",
5
+ "AuthInfoOverwriteErrorAction": "Create the AuthInfo instance using existing auth data by just passing the username. E.g., AuthInfo.create({ username: 'my@user.org' });",
6
+ "AuthCodeExchangeError": "Error authenticating with auth code due to: %s",
7
+ "AuthCodeUsernameRetrievalError": "Could not retrieve the username after successful auth code exchange.\nDue to: %s",
8
+ "JWTAuthError": "Error authenticating with JWT config due to: %s",
9
+ "RefreshTokenAuthError": "Error authenticating with the refresh token due to: %s",
10
+ "OrgDataNotAvailableError": "An attempt to refresh the authentication token failed with a 'Data Not Found Error'. The org identified by username %s does not appear to exist. Likely cause is that the org was deleted by another user or has expired.",
11
+ "OrgDataNotAvailableErrorAction1": "Run `sfdx force:org:list --clean` to remove stale org authentications.",
12
+ "OrgDataNotAvailableErrorAction2": "Use `sfdx force:config:set` to update the defaultusername.",
13
+ "OrgDataNotAvailableErrorAction3": "Use `sfdx force:org:create` to create a new org.",
14
+ "OrgDataNotAvailableErrorAction4": "Use `sfdx force:auth` to authenticate an existing org.",
15
+ "NamedOrgNotFound": "No authorization information found for %s %s.",
16
+ "NoAliasesFound": "Nothing to set.",
17
+ "InvalidFormat": "Setting aliases must be in the format <key>=<value> but found: [%s].",
18
+ "NoAuthInfoFound": "No authorization information can be found.",
19
+ "InvalidJsonCasing": "All JSON input must have heads down camelcase keys. E.g., { sfdcLoginUrl: \"https://login.salesforce.com\" }\nFound \"%s\" at %s"
20
+ }
@@ -0,0 +1,67 @@
1
+ # authInfoCreationError
2
+
3
+ Must pass a username and/or OAuth options when creating an AuthInfo instance.
4
+
5
+ # authInfoOverwriteError
6
+
7
+ Cannot create an AuthInfo instance that will overwrite existing auth data.
8
+
9
+ # authInfoOverwriteError.actions
10
+
11
+ - Create the AuthInfo instance using existing auth data by just passing the username. E.g., `AuthInfo.create({ username: 'my@user.org' });`.
12
+
13
+ # authCodeExchangeError
14
+
15
+ Error authenticating with auth code due to: %s
16
+
17
+ # authCodeUsernameRetrievalError
18
+
19
+ Could not retrieve the username after successful auth code exchange.
20
+
21
+ Due to: %s
22
+
23
+ # jwtAuthError
24
+
25
+ Error authenticating with JWT config due to: %s
26
+
27
+ # jwtAuthErrors
28
+
29
+ Error authenticating with JWT.
30
+ Errors encountered:
31
+ %s
32
+
33
+ # refreshTokenAuthError
34
+
35
+ Error authenticating with the refresh token due to: %s
36
+
37
+ # orgDataNotAvailableError
38
+
39
+ An attempt to refresh the authentication token failed with a 'Data Not Found Error'. The org identified by username %s does not appear to exist. Likely cause is that the org was deleted by another user or has expired.
40
+
41
+ # orgDataNotAvailableError.actions
42
+
43
+ - Run `sfdx force:org:list --clean` to remove stale org authentications.
44
+ - Use `sfdx force:config:set` to update the defaultusername.
45
+ - Use `sfdx force:org:create` to create a new org.
46
+ - Use `sfdx auth` to authenticate an existing org.
47
+
48
+ # namedOrgNotFound
49
+
50
+ No authorization information found for %s.
51
+
52
+ # noAliasesFound
53
+
54
+ Nothing to set.
55
+
56
+ # invalidFormat
57
+
58
+ Setting aliases must be in the format <key>=<value> but found: [%s].
59
+
60
+ # invalidJsonCasing
61
+
62
+ All JSON input must have heads down camelcase keys. E.g., `{ sfdcLoginUrl: "https://login.salesforce.com" }`
63
+ Found "%s" at %s
64
+
65
+ # missingClientId
66
+
67
+ Client ID is required for JWT authentication.
@@ -0,0 +1,85 @@
1
+ # invalidEncryptedFormatError
2
+
3
+ The encrypted data is not properly formatted.
4
+
5
+ # invalidEncryptedFormatError.actions
6
+
7
+ - If attempting to create a scratch org then re-authorize. Otherwise create a new scratch org.
8
+
9
+ # authDecryptError
10
+
11
+ Failed to decipher auth data. reason: %s.
12
+
13
+ # unsupportedOperatingSystemError
14
+
15
+ Unsupported Operating System: %s
16
+
17
+ # missingCredentialProgramError
18
+
19
+ Unable to find required security software: %s
20
+
21
+ # credentialProgramAccessError
22
+
23
+ Unable to execute security software: %s
24
+
25
+ # passwordRetryError
26
+
27
+ Failed to get the password after %i retries.
28
+
29
+ # passwordRequiredError
30
+
31
+ A password is required.
32
+
33
+ # keyChainServiceRequiredError
34
+
35
+ Unable to get or set a keychain value without a service name.
36
+
37
+ # keyChainAccountRequiredError
38
+
39
+ Unable to get or set a keychain value without an account name.
40
+
41
+ # keyChainUserCanceledError
42
+
43
+ User canceled authentication.
44
+
45
+ # keychainPasswordCreationError
46
+
47
+ Failed to create a password in the keychain.
48
+
49
+ # genericKeychainServiceError
50
+
51
+ The service and account specified in %s do not match the version of the toolbelt.
52
+
53
+ # genericKeychainServiceError.actions
54
+
55
+ - Check your toolbelt version and re-auth.
56
+
57
+ # genericKeychainInvalidPermsError
58
+
59
+ Invalid file permissions for secret file
60
+
61
+ # genericKeychainInvalidPermsError.actions
62
+
63
+ - Ensure the file %s has the file permission octal value of %s.
64
+
65
+ # passwordNotFoundError
66
+
67
+ Could not find password.
68
+ %s
69
+
70
+ # passwordNotFoundError.actions
71
+
72
+ - Ensure a valid password is returned with the following command: [%s]
73
+
74
+ # setCredentialError
75
+
76
+ Command failed with response:
77
+ %s
78
+
79
+ # setCredentialError.actions
80
+
81
+ - Determine why this command failed to set an encryption key for user %s: [%s].
82
+
83
+ # macKeychainOutOfSync
84
+
85
+ We’ve encountered an error with the Mac keychain being out of sync with your `sfdx` credentials. To fix the problem, sync your credentials by authenticating into your org again using the auth commands.
@@ -0,0 +1,317 @@
1
+ # forceOpenUrl
2
+
3
+ Web page that opens in your browser when you connect to an org. For example, to open Lightning Experience, set to "lightning".
4
+
5
+ # forceShowSpinner
6
+
7
+ Set to true to show a spinner animation on the command line when running asynchronous CLI commands. Default is false.
8
+
9
+ # forceSpinnerDelay
10
+
11
+ Speed of the spinner in milliseconds. Default is 60.
12
+
13
+ # httpProxy
14
+
15
+ HTTP URL and port of the proxy server when using Salesforce CLI behind a corporate firewall or web proxy.
16
+
17
+ # httpsProxy
18
+
19
+ HTTPS URL and port of the proxy server when using Salesforce CLI behind a corporate firewall or web proxy.
20
+
21
+ # nodeExtraCaCerts
22
+
23
+ Fully qualified path to your self-signed certificate. Will be installed after you run "sfdx update".
24
+
25
+ # nodeTlsRejectUnauthorized
26
+
27
+ Set to 0 to allow Node.js to use the self-signed certificate in the certificate chain.
28
+
29
+ # sfdxAccessToken
30
+
31
+ Specifies an access token when using the auth:accesstoken:store command.
32
+
33
+ # sfdxApiVersion
34
+
35
+ The API version for a specific project or all projects. Default value is the API version of your Dev Hub. Overrides the apiVersion config value.
36
+
37
+ # sfdxAudienceUrl
38
+
39
+ URL that overrides the aud (audience) field used for JWT authentication so that it matches the expected value of the authorization server URL for the org you’re logging into.
40
+
41
+ # sfdxCodeCoverageRequirement
42
+
43
+ Code coverage percentages that are displayed in green when you run force:apex:test:\* with the --codecoverage parameter.
44
+
45
+ # sfdxContentType
46
+
47
+ Set to JSON so that all CLI commands output results in JSON format.
48
+
49
+ # sfdxDefaultdevhubusername
50
+
51
+ Username or alias of your default Dev Hub org. Overrides the defaultdevhubusername configuration value.
52
+
53
+ # sfdxDefaultusername
54
+
55
+ Username or alias of your default org. Overrides the defaultusername configuration value.
56
+
57
+ # sfdxDisableAutoupdate
58
+
59
+ Set to true to disable the auto-update feature of Salesforce CLI. Default value is false.
60
+
61
+ # sfdxAutoupdateDisable
62
+
63
+ Set to true to disable the auto-update feature of Salesforce CLI. Default value is false.
64
+
65
+ # sfdxDisableSourceMemberPolling
66
+
67
+ Set to true to disable polling of your org’s SourceMember object when you run the force:source:push|pull commands. Default value is false.
68
+
69
+ # sfdxDisableTelemetry
70
+
71
+ Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configration variable.
72
+
73
+ # sfdxDnsTimeout
74
+
75
+ Number of seconds that the force:org:\* commands wait for a response when checking whether an org is connected. Default value is 3.
76
+
77
+ # sfdxDomainRetry
78
+
79
+ Time, in seconds, that Salesforce CLI waits for the Lightning Experience custom domain to resolve and become available in a scratch org. Default value is 240.
80
+
81
+ # sfdxImprovedCodeCoverage
82
+
83
+ Set to true to scope Apex test results to the classes entered during a test run when running force:apex:test:\*.
84
+
85
+ # sfdxInstanceUrl
86
+
87
+ URL of the Salesforce instance that is hosting your org. Default value is https://login.salesforce.com. Overrides the instanceUrl configuration value.
88
+
89
+ # sfdxJsonToStdout
90
+
91
+ Set to true to send messages resulting from failed Salesforce CLI commands to stdout instead of stderr.
92
+
93
+ # sfdxDisableLogFile
94
+
95
+ Set to true to disable log file writing
96
+
97
+ # sfdxLogLevel
98
+
99
+ Level of messages that the CLI writes to the log file. Valid values are trace, debug, info, warn, error, fatal. Default value is warn.
100
+
101
+ # sfdxLogRotationCount
102
+
103
+ The default rotation period for logs. Example '1d' will rotate logs daily (at midnight).
104
+
105
+ # sfdxLogRotationPeriod
106
+
107
+ The number of backup rotated log files to keep. Example: '3' will have the base sf.log file, and the past 3 (period) log files.
108
+
109
+ # sfdxMaxQueryLimit
110
+
111
+ Maximum number of Salesforce records returned by a CLI command. Default value is 10,000. Overrides the maxQueryLimit configuration value.
112
+
113
+ # sfdxMdapiTempDir
114
+
115
+ Directory that contains files (in metadata format) when running certain Salesforce CLI commands, such as force:source:\*.
116
+
117
+ # sfdxNpmRegistry
118
+
119
+ URL to a private npm server, where all packages that you publish are private.
120
+
121
+ # sfdxPrecompileEnable
122
+
123
+ Set to true to enable Apex pre-compile before the tests are run with the force:apex:test:run command. Default is false.
124
+
125
+ # sfdxProjectAutoupdateDisableForPackageCreate
126
+
127
+ Set to true to disable automatic updates to sfdx-project.json when running force:package:create.
128
+
129
+ # sfdxProjectAutoupdateDisableForPackageVersionCreate
130
+
131
+ Set to true to disable automatic updates to sfdx-project.json when running force:package:version:create.
132
+
133
+ # sfdxRestDeploy
134
+
135
+ Set to true to make Salesforce CLI use the Metadata REST API for deployments. By default, the CLI uses SOAP.
136
+
137
+ # sfdxSourceMemberPollingTimeout
138
+
139
+ Number of seconds you want the force:source:push command to keep polling the SourceMember object before the command times out.
140
+
141
+ # sfdxUseGenericUnixKeychain
142
+
143
+ (Linux and macOS only) Set to true if you want to use the generic UNIX keychain instead of the Linux libsecret library or macOS keychain.
144
+
145
+ # sfdxUseProgressBar
146
+
147
+ Set to false to disable the progress bar when running force:mdapi:deploy, force:source:deploy, or force:source:push.
148
+
149
+ # sfdxLazyLoadModules
150
+
151
+ Set to true to enable lazy loading of sfdx modules
152
+
153
+ # sfdxS3Host
154
+
155
+ URL to S3 host
156
+
157
+ # sfdxUpdateInstructions
158
+
159
+ Text that describes how to update sfdx
160
+
161
+ # sfdxInstaller
162
+
163
+ Boolean indicating that the installer is running
164
+
165
+ # sfdxEnv
166
+
167
+ Describes if sfdx is in "demo" mode
168
+
169
+ # sfTargetOrg
170
+
171
+ Username or alias of your default org. Overrides the target-org configuration variable.
172
+
173
+ # sfTargetDevHub
174
+
175
+ Username or alias of your default Dev Hub org. Overrides the target-dev-hub configuration variable.
176
+
177
+ # sfAccessToken
178
+
179
+ Specifies an access token when using a login command that uses access tokens.
180
+
181
+ # sfOrgApiVersion
182
+
183
+ API version for a specific project or all projects. Default value is the API version of your Dev Hub. Overrides the apiVersion configuration variable.
184
+
185
+ # sfAudienceUrl
186
+
187
+ URL that overrides the aud (audience) field used for JWT authentication so that it matches the expected value of the authorization server URL for the org you’re logging into.
188
+
189
+ # sfCodeCoverageRequirement
190
+
191
+ Code coverage percentages that are displayed in green when you run the Apex test CLIcommands with the --code-coverage flag.
192
+
193
+ # sfContentType
194
+
195
+ Set to JSON so that all CLI commands output results in JSON format.
196
+
197
+ # sfDisableAutoupdate
198
+
199
+ Set to true to disable the auto-update feature of Salesforce CLI. Default value is false.
200
+
201
+ # sfAutoupdateDisable
202
+
203
+ Set to true to disable the auto-update feature of Salesforce CLI. Default value is false.
204
+
205
+ # sfDisableSourceMemberPolling
206
+
207
+ Set to true to disable polling of your org’s SourceMember object when you run the commands to push and pull source. Default value is false.
208
+
209
+ # sfDisableTelemetry
210
+
211
+ Set to true to disable Salesforce CLI from collecting usage information, user environment information, and crash reports. Default value is false. Overrides the disableTelemetry configration variable.
212
+
213
+ # sfDnsTimeout
214
+
215
+ Number of seconds that the env commands wait for a response when checking whether an org is connected. Default value is 3.
216
+
217
+ # sfDomainRetry
218
+
219
+ Time, in seconds, that Salesforce CLI waits for the Lightning Experience custom domain to resolve and become available in a scratch org. Default value is 240.
220
+
221
+ # sfImprovedCodeCoverage
222
+
223
+ Set to true to scope Apex test results to the classes entered during a test run when running the Apex test commands.
224
+
225
+ # sfOrgInstanceUrl
226
+
227
+ URL of the Salesforce instance that is hosting your org. Default value is https://login.salesforce.com. Overrides the instanceUrl configuration variable.
228
+
229
+ # sfJsonToStdout
230
+
231
+ Set to true to send messages resulting from failed Salesforce CLI commands to stdout instead of stderr.
232
+
233
+ # sfDisableLogFile
234
+
235
+ Set to true to disable log file writing
236
+
237
+ # sfLogLevel
238
+
239
+ Level of messages that the CLI writes to the log file. Valid values are trace, debug, info, warn, error, fatal. Default value is warn.
240
+
241
+ # sfLogRotationCount
242
+
243
+ The default rotation period for logs. Example '1d' will rotate logs daily (at midnight).
244
+
245
+ # sfLogRotationPeriod
246
+
247
+ The number of backup rotated log files to keep. Example: '3' will have the base sf.log file, and the past 3 (period) log files.
248
+
249
+ # sfOrgMaxQueryLimit
250
+
251
+ Maximum number of Salesforce records returned by a CLI command. Default value is 10,000. Overrides the maxQueryLimit configuration variable.
252
+
253
+ # sfMdapiTempDir
254
+
255
+ Directory that contains files (in metadata format) when running certain Salesforce CLI commands.
256
+
257
+ # sfNpmRegistry
258
+
259
+ URL to a private npm server, where all packages that you publish are private.
260
+
261
+ # sfPrecompileEnable
262
+
263
+ Set to true to enable Apex pre-compile before the tests are run with the Apex test run command. Default is false.
264
+
265
+ # sfProjectAutoupdateDisableForPackageCreate
266
+
267
+ Set to true to disable automatic updates to sfdx-project.json when running the package create command.
268
+
269
+ # sfProjectAutoupdateDisableForPackageVersionCreate
270
+
271
+ Set to true to disable automatic updates to sfdx-project.json when running the package version create command.
272
+
273
+ # sfSourceMemberPollingTimeout
274
+
275
+ Number of seconds you want the source push command to keep polling the SourceMember object before the command times out.
276
+
277
+ # sfUseGenericUnixKeychain
278
+
279
+ (Linux and macOS only) Set to true if you want to use the generic UNIX keychain instead of the Linux libsecret library or macOS keychain.
280
+
281
+ # sfUseProgressBar
282
+
283
+ Set to false to disable the progress bar when running the metadata deploy command.
284
+
285
+ # sfLazyLoadModules
286
+
287
+ Set to true to enable lazy loading of sf modules
288
+
289
+ # sfS3Host
290
+
291
+ URL to S3 host
292
+
293
+ # sfUpdateInstructions
294
+
295
+ Text that describes how to update sf
296
+
297
+ # sfInstaller
298
+
299
+ Boolean indicating that the installer is running
300
+
301
+ # sfEnv
302
+
303
+ Describes if sf is in "demo" mode
304
+
305
+ # deprecatedEnv
306
+
307
+ Deprecated environment variable: %s. Please use %s instead.
308
+
309
+ # deprecatedEnvDisagreement
310
+
311
+ Deprecated environment variable: %s. Please use %s instead.
312
+
313
+ Your environment has both variables populated, and with different values. The value from %s will be used.
314
+
315
+ # sfCapitalizeRecordTypes
316
+
317
+ Whether record types are capitalized on scratch org creation.