@salesforce/plugin-deploy-retrieve 3.24.2 → 3.24.3
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/LICENSE.txt +1 -1
- package/README.md +53 -23
- package/lib/commands/project/convert/mdapi.js +1 -1
- package/lib/commands/project/convert/source-behavior.js +1 -1
- package/lib/commands/project/convert/source.js +1 -1
- package/lib/commands/project/delete/source.js +1 -1
- package/lib/commands/project/delete/tracking.js +1 -1
- package/lib/commands/project/deploy/cancel.js +1 -1
- package/lib/commands/project/deploy/preview.js +1 -1
- package/lib/commands/project/deploy/quick.js +1 -1
- package/lib/commands/project/deploy/report.js +1 -1
- package/lib/commands/project/deploy/resume.js +1 -1
- package/lib/commands/project/deploy/start.js +1 -1
- package/lib/commands/project/deploy/validate.js +1 -1
- package/lib/commands/project/generate/manifest.js +1 -1
- package/lib/commands/project/list/ignored.js +1 -1
- package/lib/commands/project/reset/tracking.js +1 -1
- package/lib/commands/project/retrieve/preview.js +1 -1
- package/lib/commands/project/retrieve/start.js +1 -1
- package/lib/configMeta.js +1 -1
- package/lib/formatters/asyncDeployCancelResultFormatter.js +1 -1
- package/lib/formatters/asyncDeployResultFormatter.js +1 -1
- package/lib/formatters/deleteResultFormatter.js +1 -1
- package/lib/formatters/deployCancelResultFormatter.js +1 -1
- package/lib/formatters/deployReportResultFormatter.js +1 -1
- package/lib/formatters/deployResultFormatter.js +1 -1
- package/lib/formatters/metadataConvertResultFormatter.js +1 -1
- package/lib/formatters/metadataRetrieveResultFormatter.js +1 -1
- package/lib/formatters/retrieveResultFormatter.js +1 -1
- package/lib/formatters/sourceConvertResultFormatter.js +1 -1
- package/lib/formatters/testResultsFormatter.js +1 -1
- package/lib/hooks/diagnostics.js +1 -1
- package/lib/index.js +1 -1
- package/lib/utils/conflicts.js +1 -1
- package/lib/utils/convertBehavior.js +1 -1
- package/lib/utils/coverage.js +1 -1
- package/lib/utils/deploy.js +1 -1
- package/lib/utils/deployCache.js +1 -1
- package/lib/utils/deployStages.js +1 -1
- package/lib/utils/errorCodes.js +1 -1
- package/lib/utils/flags.js +1 -1
- package/lib/utils/manifestCache.js +1 -1
- package/lib/utils/metadataTypes.js +1 -1
- package/lib/utils/output.js +1 -1
- package/lib/utils/previewOutput.js +1 -1
- package/lib/utils/project.js +1 -1
- package/lib/utils/promiseQueue.js +1 -1
- package/lib/utils/types.js +1 -1
- package/messages/delete.source.md +3 -1
- package/messages/deploy.metadata.md +2 -2
- package/messages/deploy.metadata.validate.md +3 -1
- package/oclif.manifest.json +1044 -1044
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-deploy-retrieve",
|
|
3
3
|
"description": "deploy and retrieve commands for sf",
|
|
4
|
-
"version": "3.24.
|
|
4
|
+
"version": "3.24.3",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"@salesforce/kit": "^3.2.4",
|
|
14
14
|
"@salesforce/plugin-info": "^3.4.93",
|
|
15
15
|
"@salesforce/sf-plugins-core": "^12.2.5",
|
|
16
|
-
"@salesforce/source-deploy-retrieve": "^12.
|
|
17
|
-
"@salesforce/source-tracking": "^7.
|
|
16
|
+
"@salesforce/source-deploy-retrieve": "^12.31.1",
|
|
17
|
+
"@salesforce/source-tracking": "^7.8.0",
|
|
18
18
|
"@salesforce/ts-types": "^2.0.12",
|
|
19
19
|
"ansis": "^3.17.0",
|
|
20
20
|
"terminal-link": "^3.0.0"
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
"exports": "./lib/index.js",
|
|
256
256
|
"type": "module",
|
|
257
257
|
"sfdx": {
|
|
258
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.24.
|
|
259
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.24.
|
|
258
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.24.3.crt",
|
|
259
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-deploy-retrieve/3.24.3.sig"
|
|
260
260
|
}
|
|
261
261
|
}
|