sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
19 lines • 479 B
JSON
{
"sfdxHardisLabel": "Anonymize Contacts Emails",
"sfdxHardisDescription": "Can be used to export Contacts then reimport them in the same org to anonymize email addresses",
"objects": [
{
"query": "SELECT Id, Name, Email FROM Contact",
"operation": "Update",
"externalId": "Id",
"mockFields": [
{
"name": "Email",
"pattern": "email"
}
],
"updateWithMockData": true
}
],
"allOrNone": true
}