Skip to content
This repository was archived by the owner on Mar 10, 2024. It is now read-only.

[pull] master from forcedotcom:master #70

Merged
merged 3 commits into from
Sep 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [4.15.5](https://github.com/forcedotcom/SFDX-Data-Move-Utility/compare/v4.15.4...v4.15.5) (2022-09-14)

### [4.15.4](https://github.com/forcedotcom/SFDX-Data-Move-Utility/compare/v4.15.3...v4.15.4) (2022-09-14)

### [4.15.3](https://github.com/forcedotcom/SFDX-Data-Move-Utility/compare/v4.15.2...v4.15.3) (2022-09-13)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sfdmu",
"description": "The Salesforce Data Loader SFDX Plugin (SFDMU) will help you to populate your org (scratch / dev / sandbox / production) with data imported from another org or CSV files. It supports all important CRUD operations (Insert/Update/Upsert/Delete) also for multiple related sObjects.",
"version": "4.15.4",
"version": "4.15.5",
"author": "Haim Knokh",
"bugs": "https://github.com/forcedotcom/SFDX-Data-Move-Utility/issues",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/modules/components/common_components/statics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const CONSTANTS = {
'User',
'Group',
'DandBCompany',
//'ContentVersion'// Content version has deprecated using the SFDMU core in favor to the ExportFiles Add-On Module
'ContentVersion'// Content version has deprecated using the SFDMU core in favor to the ExportFiles Add-On Module
],

SUPPORTED_OBJECTS_FOR_OPERATION: new Map<string, Array<string>>([
Expand Down
3 changes: 2 additions & 1 deletion src/modules/models/script_models/script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ export default class Script implements IAppScript, ISfdmuRunScript {
}

get isPersonAccountEnabled(): boolean {
return this.sourceOrg.isPersonAccountEnabled && this.targetOrg.isPersonAccountEnabled;
return (this.sourceOrg.isPersonAccountEnabled || this.sourceOrg.isFileMedia)
&& (this.targetOrg.isPersonAccountEnabled || this.targetOrg.isFileMedia);
}

get bulkApiVersionNumber(): number {
Expand Down