-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use DMLOptions to bypass duplicate rule exceptions #1498
Closed
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
cfe546b
Use DMLOptions to bypass duplicate rule exceptions
chininchu a95d789
json files have been reverted
chininchu bd2f1fb
added the AllOrNothing flag
chininchu 31ec88c
modified
chininchu 86b3c3e
- Implement allOrNothing flag in DMLOptions instance
chininchu 0c63f39
High Ratio Custom Object for Rollup Testing
acrosman 1a84fd0
Rename Custom object file
acrosman 3861c98
Add Standard Object High Ratio Test File
acrosman 8adaff7
Create snowfakeryschema
Nickers3 3f335d4
Delete datasets/qa/snowfakeryschema
Nickers3 e188b64
Add files via upload
Nickers3 058f62a
Delete datasets/qa/SampleStandardObjectLowRatio.txt
Nickers3 5f836fb
Create snowfakerylowratio
Nickers3 e9f3070
Rename snowfakerylowratio to snowfakerylowratio.yml
Nickers3 757c979
Remove extra friends headers
acrosman c04cb9e
Adding 1 big opp
acrosman d134e99
Added Fields used to Test DLRS QA Rollups
Nickers3 1918523
Test for adding DLRS Rollups into QA repo.
Nickers3 d6b0aa1
Pulling DLRS QA Rollups into QA unpackaged portion of repo to allow f…
Nickers3 5e3d275
Adding Object Based DLRS Apex Class and Apex Triggers into QA Unpacka…
Nickers3 5aaf3b0
Pull DLRS Updates post testing
Nickers3 390e2bb
Add Page Layout changes with new fields and splitting out DRLS Test F…
Nickers3 96922ac
Ignore Layout and Profile changes
Nickers3 3659a17
Snowfakery Add
NickersUMN 3a799f2
Update snowfakerylowratio.yml
NickersUMN 20e4e0e
Added field description and help text to reference DLRS rollups that …
Nickers3 cc414ad
Update API versions to v61.0
aheber 85de930
Massage and convert MDAPI format to DX format
aheber 50b05bc
update cumulusci to correct structure
aheber 60191e3
Merge remote changes and resolve conflicts for DMLOptions implementation
chininchu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,25 @@ | ||
{ | ||
"compilerOptions": { | ||
"experimentalDecorators": true | ||
}, | ||
"include": ["**/*", "../../../.sfdx/typings/lwc/**/*.d.ts"], | ||
"paths": { | ||
"c/*": ["*"] | ||
}, | ||
"typeAcquisition": { | ||
"include": ["jest"] | ||
} | ||
"compilerOptions": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file is still showing modified in your PR. Please revert this change. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be aligned with what's on the main branch. |
||
"experimentalDecorators": true, | ||
"baseUrl": ".", | ||
"paths": { | ||
"c/*": [ | ||
"*" | ||
] | ||
} | ||
}, | ||
"include": [ | ||
"**/*", | ||
"../../../.sfdx/typings/lwc/**/*.d.ts" | ||
], | ||
"paths": { | ||
"c/*": [ | ||
"*" | ||
] | ||
}, | ||
"typeAcquisition": { | ||
"include": [ | ||
"jest" | ||
] | ||
} | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you remove this extra comment?