├── .commitlintrc.json ├── .eslintignore ├── .eslintrc.cjs ├── .git2gus └── config.json ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── create-github-release.yml │ ├── devScripts.yml │ ├── failureNotifications.yml │ ├── notify-slack-on-pr-open.yml │ ├── onRelease.yml │ ├── perfScaleNut.yml │ ├── registryCheck.yml │ ├── registryCheckPreview.yml │ ├── releaseWithCoreBundle.yml │ ├── supportedMetadataUpdate.yml │ ├── test.yml │ ├── testWithCoreBundle.yml │ └── validate-pr.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .mocharc.json ├── .npmignore ├── .nycrc ├── .prettierignore ├── .prettierrc.json ├── .sfdevrc.json ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── snippets.code-snippets ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HANDBOOK.md ├── LICENSE.txt ├── METADATA_SUPPORT.md ├── README.md ├── SECURITY.md ├── contributing ├── coding-guidelines.md ├── commit-guidelines.md ├── developing.md └── metadata.md ├── examples ├── README.md ├── component-resolution │ ├── README.md │ ├── index.ts │ └── package.json ├── deploy │ ├── README.md │ ├── index.ts │ └── package.json ├── package-creation │ ├── index.ts │ └── package.json └── retrieve │ ├── README.md │ ├── index.ts │ └── package.json ├── messages └── sdr.md ├── package.json ├── scripts ├── esbuild.config.js ├── scanTs.js ├── testEsbuild.js └── update-registry │ ├── describe.json │ ├── preview.ts │ ├── shared │ ├── types.ts │ └── updateRegistry.ts │ ├── update-supported-metadata.ts │ ├── updateRegistryFromCoreMetadata.ts │ └── updateRegistryFromOrg.ts ├── src ├── Presets.md ├── client │ ├── deployMessages.ts │ ├── diagnosticUtil.ts │ ├── index.ts │ ├── metadataApiDeploy.ts │ ├── metadataApiRetrieve.ts │ ├── metadataTransfer.ts │ ├── retrieveExtract.ts │ └── types.ts ├── collections │ ├── componentSet.ts │ ├── componentSetBuilder.ts │ ├── decodeableMap.ts │ ├── index.ts │ ├── lazyCollection.ts │ └── types.ts ├── common │ ├── constants.ts │ ├── index.ts │ └── types.ts ├── convert │ ├── convertContext │ │ ├── convertContext.ts │ │ ├── decomposedExternalServiceRegistrationFinalizer.ts │ │ ├── decomposedLabelsFinalizer.ts │ │ ├── decomposedPermissionSetFinalizer.ts │ │ ├── decompositionFinalizer.ts │ │ ├── nonDecompositionFinalizer.ts │ │ ├── recompositionFinalizer.ts │ │ └── transactionFinalizer.ts │ ├── index.ts │ ├── metadataConverter.ts │ ├── replacements.ts │ ├── streams.ts │ ├── transformers │ │ ├── baseMetadataTransformer.ts │ │ ├── decomposeExternalServiceRegistrationTransformer.ts │ │ ├── decomposeLabelsTransformer.ts │ │ ├── decomposedMetadataTransformer.ts │ │ ├── decomposedPermissionSetTransformer.ts │ │ ├── defaultMetadataTransformer.ts │ │ ├── metadataTransformerFactory.ts │ │ ├── nonDecomposedMetadataTransformer.ts │ │ ├── staticResourceMetadataTransformer.ts │ │ └── types.ts │ └── types.ts ├── index.ts ├── registry │ ├── coverage.ts │ ├── index.ts │ ├── levenshtein.ts │ ├── metadataRegistry.json │ ├── nonSupportedTypes.ts │ ├── presets │ │ ├── decomposeCustomLabelsBeta.json │ │ ├── decomposeCustomLabelsBeta2.json │ │ ├── decomposeExternalServiceRegistrationBeta.json │ │ ├── decomposePermissionSetBeta.json │ │ ├── decomposePermissionSetBeta2.json │ │ ├── decomposeSharingRulesBeta.json │ │ ├── decomposeWorkflowBeta.json │ │ └── presetMap.ts │ ├── registry.ts │ ├── registryAccess.ts │ ├── standardvalueset.ts │ ├── stdValueSetRegistry.json │ ├── types.ts │ └── variants.ts ├── resolve │ ├── adapters │ │ ├── baseSourceAdapter.ts │ │ ├── bundleSourceAdapter.ts │ │ ├── decomposedSourceAdapter.ts │ │ ├── defaultSourceAdapter.ts │ │ ├── digitalExperienceSourceAdapter.ts │ │ ├── index.ts │ │ ├── matchingContentSourceAdapter.ts │ │ ├── mixedContentSourceAdapter.ts │ │ ├── partialDecomposedAdapter.ts │ │ └── sourceAdapterFactory.ts │ ├── connectionResolver.ts │ ├── forceIgnore.ts │ ├── index.ts │ ├── manifestResolver.ts │ ├── metadataResolver.ts │ ├── pseudoTypes │ │ └── agentResolver.ts │ ├── sourceComponent.ts │ ├── treeContainers.ts │ └── types.ts └── utils │ ├── collections.ts │ ├── decomposed.ts │ ├── filePathGenerator.ts │ ├── fileSystemHandler.ts │ ├── index.ts │ ├── metadata.ts │ └── path.ts ├── test ├── .eslintrc.cjs ├── client │ ├── diagnosticUtil.test.ts │ ├── metadataApiDeploy.test.ts │ ├── metadataApiRetrieve.test.ts │ └── metadataTransfer.test.ts ├── collections │ ├── componentSet.test.ts │ ├── componentSetBuilder.test.ts │ ├── decodeableMap.test.ts │ └── lazyCollection.test.ts ├── convert │ ├── convertContext │ │ ├── convertContext.test.ts │ │ ├── decomposition.test.ts │ │ ├── nonDecomposition.test.ts │ │ └── recomposition.test.ts │ ├── metadataConverter.test.ts │ ├── replacements.test.ts │ ├── streams.test.ts │ └── transformers │ │ ├── decomposedExternalServiceRegistration.test.ts │ │ ├── decomposedLabelsTransformer.test.ts │ │ ├── decomposedMetadataTransformer.test.ts │ │ ├── decomposedPermissionSetTransformer.test.ts │ │ ├── defaultMetadataTransformer.test.ts │ │ ├── metadataTransformerFactory.test.ts │ │ ├── nonDecomposedMetadataTransformer.test.ts │ │ └── staticResourceMetadataTransformer.test.ts ├── mock │ ├── client │ │ ├── index.ts │ │ └── transferOperations.ts │ ├── convert │ │ └── readables.ts │ ├── index.ts │ ├── manifestConstants.ts │ └── type-constants │ │ ├── apexClassConstant.ts │ │ ├── auraBundleConstant.ts │ │ ├── customObjectConstant.ts │ │ ├── customObjectConstantEmptyObjectMeta.ts │ │ ├── customObjectTranslationConstant.ts │ │ ├── customlabelsConstant.ts │ │ ├── decomposeExternalServiceRegistrationConstants.ts │ │ ├── decomposedCustomLabelsConstant.ts │ │ ├── decomposedPermissionSetConstant.ts │ │ ├── digitalExperienceBundleConstants.ts │ │ ├── documentConstants.ts │ │ ├── documentFolderConstant.ts │ │ ├── experiencePropertyTypeBundleConstants.ts │ │ ├── index.ts │ │ ├── lwcBundleConstant.ts │ │ ├── reportConstant.ts │ │ ├── staticresourceComponentConstant.ts │ │ ├── staticresourceConstant.ts │ │ └── territoryConstant.ts ├── nuts │ ├── agents │ │ ├── agentResolver.test.ts │ │ ├── agentsProject │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── bots │ │ │ │ │ ├── Copilot_for_Salesforce │ │ │ │ │ │ ├── Copilot_for_Salesforce.bot-meta.xml │ │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ │ ├── My_Macys │ │ │ │ │ │ ├── My_Macys.bot-meta.xml │ │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ │ └── The_Campus_Assistant │ │ │ │ │ │ ├── The_Campus_Assistant.bot-meta.xml │ │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ │ ├── genAiPlanners │ │ │ │ │ ├── EmployeeCopilotPlanner.genAiPlanner-meta.xml │ │ │ │ │ ├── My_Macys.genAiPlanner-meta.xml │ │ │ │ │ └── The_Campus_Assistant.genAiPlanner-meta.xml │ │ │ │ │ └── genAiPlugins │ │ │ │ │ ├── p_16jQP0000000PG9_Climbing_Routes_Information.genAiPlugin-meta.xml │ │ │ │ │ ├── p_16jQP0000000PG9_Gym_Hours_and_Schedule.genAiPlugin-meta.xml │ │ │ │ │ └── p_16jQP0000000PG9_Membership_Plans.genAiPlugin-meta.xml │ │ │ └── sfdx-project.json │ │ └── agentsProject64 │ │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── bots │ │ │ │ ├── Copilot_for_Salesforce │ │ │ │ │ ├── Copilot_for_Salesforce.bot-meta.xml │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ ├── My_Macys │ │ │ │ │ ├── My_Macys.bot-meta.xml │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ └── The_Campus_Assistant │ │ │ │ │ ├── The_Campus_Assistant.bot-meta.xml │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ ├── genAiPlannerBundles │ │ │ │ ├── EmployeeCopilotPlanner │ │ │ │ │ └── EmployeeCopilotPlanner.genAiPlannerBundle │ │ │ │ ├── My_Macys │ │ │ │ │ └── My_Macys.genAiPlannerBundle │ │ │ │ └── The_Campus_Assistant │ │ │ │ │ └── The_Campus_Assistant.genAiPlannerBundle │ │ │ │ └── genAiPlugins │ │ │ │ ├── p_16jQP0000000PG9_Climbing_Routes_Information.genAiPlugin-meta.xml │ │ │ │ ├── p_16jQP0000000PG9_Gym_Hours_and_Schedule.genAiPlugin-meta.xml │ │ │ │ └── p_16jQP0000000PG9_Membership_Plans.genAiPlugin-meta.xml │ │ │ └── sfdx-project.json │ ├── local │ │ └── replacements │ │ │ ├── extractZip.ts │ │ │ ├── replacements.nut.ts │ │ │ ├── replacementsLabels.nut.ts │ │ │ ├── replacementsOutsideProject.nut.ts │ │ │ ├── testProj │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── classes │ │ │ │ │ ├── replaceStuff.cls │ │ │ │ │ └── replaceStuff.cls-meta.xml │ │ │ │ │ ├── objects │ │ │ │ │ └── TestObj__c │ │ │ │ │ │ ├── TestObj__c.object-meta.xml │ │ │ │ │ │ └── fields │ │ │ │ │ │ └── FieldA__c.field-meta.xml │ │ │ │ │ └── staticresources │ │ │ │ │ ├── ImageTest.resource-meta.xml │ │ │ │ │ ├── ImageTest │ │ │ │ │ ├── test-image.png │ │ │ │ │ └── test-image.resource-meta.xml │ │ │ │ │ ├── Test.resource-meta.xml │ │ │ │ │ └── Test │ │ │ │ │ ├── folder │ │ │ │ │ └── test2.css │ │ │ │ │ └── test.css │ │ │ ├── label.txt │ │ │ ├── replacements.txt │ │ │ └── sfdx-project.json │ │ │ └── testProjWithLabels │ │ │ ├── config │ │ │ └── project-scratch-def.json │ │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── classes │ │ │ │ ├── replaceStuff.cls │ │ │ │ └── replaceStuff.cls-meta.xml │ │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ │ │ ├── objects │ │ │ │ └── TestObj__c │ │ │ │ │ ├── TestObj__c.object-meta.xml │ │ │ │ │ └── fields │ │ │ │ │ └── FieldA__c.field-meta.xml │ │ │ │ └── staticresources │ │ │ │ ├── Test.resource-meta.xml │ │ │ │ └── Test │ │ │ │ ├── folder │ │ │ │ └── test2.css │ │ │ │ └── test.css │ │ │ ├── label.txt │ │ │ ├── replacements.txt │ │ │ └── sfdx-project.json │ ├── perfResults │ │ ├── README.md │ │ ├── x64-darwin-16xIntel-Core-i9-9980HK-CPU-2-40GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-darwin-16xIntel-Xeon(R)-W-3223-CPU--3-50GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon(R)-Platinum-8171M-CPU--2-60GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon-CPU-E5-2673-v3-2-40GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon-CPU-E5-2673-v4-2-30GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon-Platinum-8171M-CPU-2-60GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon-Platinum-8272CL-CPU-2-60GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ ├── x64-linux-2xIntel-Xeon-Platinum-8370C-CPU-2-80GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ │ └── x64-linux-4xIntel-Xeon(R)-Platinum-8375C-CPU--2-90GHz │ │ │ ├── eda.json │ │ │ ├── lotsOfClasses.json │ │ │ └── lotsOfClassesOneDir.json │ ├── scale │ │ ├── eda.nut.ts │ │ ├── lotsOfClasses.nut.ts │ │ ├── lotsOfClassesOneDir.nut.ts │ │ ├── perfUtils.ts │ │ └── tsconfig.json │ └── suggestType │ │ ├── suggestType.nut.ts │ │ └── testProj │ │ ├── config │ │ └── project-scratch-def.json │ │ ├── force-app │ │ └── main │ │ │ └── default │ │ │ ├── classes │ │ │ ├── DummyClass.clss │ │ │ ├── MyEmailHandler.cls │ │ │ └── MyEmailHandler.cls-meta.xml │ │ │ ├── emailservices │ │ │ └── EmailServiceName.xml-meta.xml │ │ │ ├── enablementMeasureDefinitions │ │ │ └── measure.enablementMeasureDefinition │ │ │ ├── labels │ │ │ └── CustomLabels.labels.xml │ │ │ ├── layouts │ │ │ └── MyTestObject__c-MyTestObject Layout.Layout-meta.xml │ │ │ ├── objects │ │ │ └── MyTestObject__c │ │ │ │ └── MyTestObject__c.objct-meta.xml │ │ │ └── tabs │ │ │ └── Settings.tabsss-meta.xml │ │ ├── package-manifest-2 │ │ └── package-non-default.xml │ │ ├── package-manifest │ │ └── package.xml │ │ └── sfdx-project.json ├── registry │ ├── presetTesting.ts │ ├── registryAccess.test.ts │ ├── registryCompleteness.test.ts │ └── registryValidation.test.ts ├── resolve │ ├── adapters │ │ ├── baseSourceAdapter.test.ts │ │ ├── bundleSourceAdapter.test.ts │ │ ├── decomposedSourceAdapter.test.ts │ │ ├── defaultSourceAdapter.test.ts │ │ ├── digitalExperienceSourceAdapter.test.ts │ │ ├── matchingContentSourceAdapter.test.ts │ │ ├── mixedContentSourceAdapter.test.ts │ │ ├── partialDecomposedAdapter.test.ts │ │ └── sourceAdapterFactory.test.ts │ ├── connectionResolver.test.ts │ ├── forceIgnore.test.ts │ ├── manifestResolver.test.ts │ ├── metadataResolver.test.ts │ ├── registryTestUtil.ts │ ├── sourceComponent.test.ts │ └── treeContainers.test.ts ├── snapshot │ ├── README.md │ ├── helper │ │ └── conversions.ts │ └── sampleProjects │ │ ├── appTemplates │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── appTemplates │ │ │ │ │ └── test_template │ │ │ │ │ │ ├── layout.json │ │ │ │ │ │ └── template-info.json │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── appTemplates │ │ │ │ └── test_template │ │ │ │ ├── layout.json │ │ │ │ └── template-info.json │ │ ├── originalMdapi │ │ │ └── appTemplates │ │ │ │ └── test_template │ │ │ │ ├── layout.json │ │ │ │ └── template-info.json │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── bots │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── bots │ │ │ │ │ └── Astro_Bot.bot │ │ │ │ ├── liveChatButtons │ │ │ │ │ └── bot1ChatButton1.liveChatButton │ │ │ │ ├── package.xml │ │ │ │ ├── settings │ │ │ │ │ ├── Bot.settings │ │ │ │ │ └── LiveAgent.settings │ │ │ │ └── skills │ │ │ │ │ └── TestSkill.skill │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── bots │ │ │ │ └── Astro_Bot │ │ │ │ │ ├── Astro_Bot.bot-meta.xml │ │ │ │ │ └── v1.botVersion-meta.xml │ │ │ │ ├── liveChatButtons │ │ │ │ └── bot1ChatButton1.liveChatButton-meta.xml │ │ │ │ ├── settings │ │ │ │ ├── Bot.settings-meta.xml │ │ │ │ └── LiveAgent.settings-meta.xml │ │ │ │ └── skills │ │ │ │ └── TestSkill.skill-meta.xml │ │ ├── originalMdapi │ │ │ ├── bots │ │ │ │ └── Astro_Bot.bot │ │ │ ├── liveChatButtons │ │ │ │ └── bot1ChatButton1.liveChatButton │ │ │ ├── package.xml │ │ │ ├── settings │ │ │ │ ├── Bot.settings │ │ │ │ └── LiveAgent.settings │ │ │ └── skills │ │ │ │ └── TestSkill.skill │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── customLabels-multiple │ │ ├── __snapshots__ │ │ │ └── verify-source-convert.expected │ │ │ │ └── testOutput │ │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels │ │ │ │ └── package.xml │ │ ├── originalSource │ │ │ ├── first-app │ │ │ │ └── labels │ │ │ │ │ └── first-app-CustomLabels.labels-meta.xml │ │ │ ├── second-app │ │ │ │ └── labels │ │ │ │ │ └── second-app-CustomLabels.labels-meta.xml │ │ │ └── third-app │ │ │ │ └── labels │ │ │ │ └── third-app-CustomLabels.labels-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── customLabels-simple │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── labels │ │ │ │ │ └── CustomLabels.labels │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ ├── originalMdapi │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels │ │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── customObjects-and-children │ │ ├── __snapshots__ │ │ │ ├── verify-md-files-deploy.expected │ │ │ │ └── deployOutput │ │ │ │ │ └── mdapi │ │ │ │ │ ├── objects │ │ │ │ │ └── Broker__c.object │ │ │ │ │ └── package.xml │ │ │ ├── verify-md-files-retrieve.expected │ │ │ │ └── retrieveOutput │ │ │ │ │ └── mdapi │ │ │ │ │ ├── objects │ │ │ │ │ └── Broker__c.object │ │ │ │ │ └── package.xml │ │ │ ├── verify-md-files.expected │ │ │ │ ├── objects │ │ │ │ │ ├── Broker__c.object │ │ │ │ │ └── Property__c.object │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── objects │ │ │ │ ├── Broker__c │ │ │ │ ├── Broker__c.object-meta.xml │ │ │ │ ├── compactLayouts │ │ │ │ │ └── Broker_Compact.compactLayout-meta.xml │ │ │ │ ├── fields │ │ │ │ │ ├── Broker_Id__c.field-meta.xml │ │ │ │ │ ├── Email__c.field-meta.xml │ │ │ │ │ ├── Mobile_Phone__c.field-meta.xml │ │ │ │ │ ├── Phone__c.field-meta.xml │ │ │ │ │ ├── Picture_IMG__c.field-meta.xml │ │ │ │ │ ├── Picture__c.field-meta.xml │ │ │ │ │ └── Title__c.field-meta.xml │ │ │ │ └── listViews │ │ │ │ │ └── All.listView-meta.xml │ │ │ │ └── Property__c │ │ │ │ ├── Property__c.object-meta.xml │ │ │ │ ├── compactLayouts │ │ │ │ └── Property_Compact_Layout.compactLayout-meta.xml │ │ │ │ ├── fields │ │ │ │ ├── Address__c.field-meta.xml │ │ │ │ ├── Assessed_Value__c.field-meta.xml │ │ │ │ ├── Baths__c.field-meta.xml │ │ │ │ ├── Beds__c.field-meta.xml │ │ │ │ ├── Broker__c.field-meta.xml │ │ │ │ ├── City__c.field-meta.xml │ │ │ │ ├── Date_Agreement__c.field-meta.xml │ │ │ │ ├── Date_Closed__c.field-meta.xml │ │ │ │ ├── Date_Contracted__c.field-meta.xml │ │ │ │ ├── Date_Listed__c.field-meta.xml │ │ │ │ ├── Date_Pre_Market__c.field-meta.xml │ │ │ │ ├── Days_On_Market__c.field-meta.xml │ │ │ │ ├── Description__c.field-meta.xml │ │ │ │ ├── Location__c.field-meta.xml │ │ │ │ ├── Picture_IMG__c.field-meta.xml │ │ │ │ ├── Picture__c.field-meta.xml │ │ │ │ ├── Price_Sold__c.field-meta.xml │ │ │ │ ├── Price__c.field-meta.xml │ │ │ │ ├── Record_Link__c.field-meta.xml │ │ │ │ ├── State__c.field-meta.xml │ │ │ │ ├── Status__c.field-meta.xml │ │ │ │ ├── Tags__c.field-meta.xml │ │ │ │ ├── Thumbnail_IMG__c.field-meta.xml │ │ │ │ ├── Thumbnail__c.field-meta.xml │ │ │ │ └── Zip__c.field-meta.xml │ │ │ │ └── listViews │ │ │ │ └── All.listView-meta.xml │ │ ├── originalMdapi │ │ │ ├── objects │ │ │ │ ├── Broker__c.object │ │ │ │ └── Property__c.object │ │ │ └── package.xml │ │ ├── originalMdapi2 │ │ │ ├── objects │ │ │ │ └── Broker__c.object │ │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── customTranslationProject │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── layouts │ │ │ │ │ └── customObject__c-customObject Layout.layout │ │ │ │ ├── objectTranslations │ │ │ │ │ └── customObject__c-es.objectTranslation │ │ │ │ ├── objects │ │ │ │ │ └── customObject__c.object │ │ │ │ ├── package.xml │ │ │ │ ├── profiles │ │ │ │ │ └── Admin.profile │ │ │ │ └── translations │ │ │ │ │ └── es.translation │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── layouts │ │ │ │ └── customObject__c-customObject Layout.layout-meta.xml │ │ │ │ ├── objectTranslations │ │ │ │ └── customObject__c-es │ │ │ │ │ ├── customField__c.fieldTranslation-meta.xml │ │ │ │ │ └── customObject__c-es.objectTranslation-meta.xml │ │ │ │ ├── objects │ │ │ │ └── customObject__c │ │ │ │ │ ├── customObject__c.object-meta.xml │ │ │ │ │ └── fields │ │ │ │ │ └── customField__c.field-meta.xml │ │ │ │ ├── profiles │ │ │ │ └── Admin.profile-meta.xml │ │ │ │ └── translations │ │ │ │ └── es.translation-meta.xml │ │ ├── originalMdapi │ │ │ ├── layouts │ │ │ │ └── customObject__c-customObject Layout.layout │ │ │ ├── objectTranslations │ │ │ │ └── customObject__c-es.objectTranslation │ │ │ ├── objects │ │ │ │ └── customObject__c.object │ │ │ ├── package.xml │ │ │ ├── profiles │ │ │ │ └── Admin.profile │ │ │ └── translations │ │ │ │ └── es.translation │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── destructiveCompSets │ │ ├── __snapshots__ │ │ │ ├── 1-post-destructive-and-1-deployment.expected │ │ │ │ └── testOutput │ │ │ │ │ └── post1 │ │ │ │ │ ├── classes │ │ │ │ │ ├── OneClass.cls │ │ │ │ │ └── OneClass.cls-meta.xml │ │ │ │ │ ├── destructiveChangesPost.xml │ │ │ │ │ └── package.xml │ │ │ ├── 1-post-destructive-and-no-deployment.expected │ │ │ │ └── testOutput │ │ │ │ │ └── post1-solo │ │ │ │ │ ├── destructiveChangesPost.xml │ │ │ │ │ └── package.xml │ │ │ ├── 1-pre-destructive-and-1-deployment.expected │ │ │ │ └── testOutput │ │ │ │ │ └── pre1 │ │ │ │ │ ├── classes │ │ │ │ │ ├── OneClass.cls │ │ │ │ │ └── OneClass.cls-meta.xml │ │ │ │ │ ├── destructiveChangesPre.xml │ │ │ │ │ └── package.xml │ │ │ ├── 2-post-destructive-and-2-deployments.expected │ │ │ │ └── testOutput │ │ │ │ │ └── post2 │ │ │ │ │ ├── classes │ │ │ │ │ ├── OneClass.cls │ │ │ │ │ ├── OneClass.cls-meta.xml │ │ │ │ │ ├── TwoClass.cls │ │ │ │ │ └── TwoClass.cls-meta.xml │ │ │ │ │ ├── destructiveChangesPost.xml │ │ │ │ │ └── package.xml │ │ │ └── 2-pre-destructive-and-2-deployments.expected │ │ │ │ └── testOutput │ │ │ │ └── pre2 │ │ │ │ ├── classes │ │ │ │ ├── OneClass.cls │ │ │ │ ├── OneClass.cls-meta.xml │ │ │ │ ├── TwoClass.cls │ │ │ │ └── TwoClass.cls-meta.xml │ │ │ │ ├── destructiveChangesPre.xml │ │ │ │ └── package.xml │ │ ├── originalSource │ │ │ └── classes │ │ │ │ ├── BlueClass.cls │ │ │ │ ├── BlueClass.cls-meta.xml │ │ │ │ ├── OneClass.cls │ │ │ │ ├── OneClass.cls-meta.xml │ │ │ │ ├── RedClass.cls │ │ │ │ ├── RedClass.cls-meta.xml │ │ │ │ ├── TwoClass.cls │ │ │ │ └── TwoClass.cls-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── digitalExperienceBundle │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── classes │ │ │ │ │ ├── CommunitiesLandingController.cls │ │ │ │ │ └── CommunitiesLandingController.cls-meta.xml │ │ │ │ ├── digitalExperienceConfigs │ │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperienceConfig │ │ │ │ │ └── Capricorn_Coffee_B1.digitalExperienceConfig │ │ │ │ ├── digitalExperiences │ │ │ │ │ └── site │ │ │ │ │ │ ├── Capricorn_Coffee_A1 │ │ │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperience-meta.xml │ │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ │ │ └── languages │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Error │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Login │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Register │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ │ │ └── Capricorn_Coffee_A1 │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── forgotPassword │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── home │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ │ └── fr.json │ │ │ │ │ │ │ ├── login │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── newsDetail │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── register │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ │ └── tooManyRequests │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ │ └── tablet │ │ │ │ │ │ │ └── tablet.json │ │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ │ ├── Capricorn_Coffee_B1.digitalExperience-meta.xml │ │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ │ └── languages │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Error │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Login │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Register │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── error │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── forgotPassword │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ └── fr.json │ │ │ │ │ │ ├── login │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── newsDetail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── register │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── tooManyRequests │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ ├── networks │ │ │ │ │ ├── Capricorn_Coffee_A.network │ │ │ │ │ └── Capricorn_Coffee_B.network │ │ │ │ ├── package.xml │ │ │ │ ├── pages │ │ │ │ │ ├── CommunitiesLanding.page │ │ │ │ │ └── CommunitiesLanding.page-meta.xml │ │ │ │ └── sites │ │ │ │ │ ├── Capricorn_Coffee_A.site │ │ │ │ │ └── Capricorn_Coffee_B.site │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── classes │ │ │ │ ├── CommunitiesLandingController.cls │ │ │ │ └── CommunitiesLandingController.cls-meta.xml │ │ │ │ ├── digitalExperienceConfigs │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperienceConfig-meta.xml │ │ │ │ └── Capricorn_Coffee_B1.digitalExperienceConfig-meta.xml │ │ │ │ ├── digitalExperiences │ │ │ │ └── site │ │ │ │ │ ├── Capricorn_Coffee_A1 │ │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperience-meta.xml │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ │ └── languages │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Error │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Login │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Register │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ │ └── Capricorn_Coffee_A1 │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── error │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── forgotPassword │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ └── fr.json │ │ │ │ │ │ ├── login │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── newsDetail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── register │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── tooManyRequests │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ └── tablet │ │ │ │ │ │ └── tablet.json │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ ├── Capricorn_Coffee_B1.digitalExperience-meta.xml │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ └── languages │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Error │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Login │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Register │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── error │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── forgotPassword │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── home │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── content.json │ │ │ │ │ └── fr.json │ │ │ │ │ ├── login │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── newsDetail │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── register │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ └── tooManyRequests │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ ├── networks │ │ │ │ ├── Capricorn_Coffee_A.network-meta.xml │ │ │ │ └── Capricorn_Coffee_B.network-meta.xml │ │ │ │ ├── pages │ │ │ │ ├── CommunitiesLanding.page │ │ │ │ └── CommunitiesLanding.page-meta.xml │ │ │ │ └── sites │ │ │ │ ├── Capricorn_Coffee_A.site-meta.xml │ │ │ │ └── Capricorn_Coffee_B.site-meta.xml │ │ ├── originalMdapi │ │ │ ├── classes │ │ │ │ ├── CommunitiesLandingController.cls │ │ │ │ └── CommunitiesLandingController.cls-meta.xml │ │ │ ├── digitalExperienceConfigs │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperienceConfig │ │ │ │ └── Capricorn_Coffee_B1.digitalExperienceConfig │ │ │ ├── digitalExperiences │ │ │ │ └── site │ │ │ │ │ ├── Capricorn_Coffee_A1 │ │ │ │ │ ├── Capricorn_Coffee_A1.digitalExperience-meta.xml │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ │ └── languages │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Error │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Home │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Login │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Register │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ │ └── Capricorn_Coffee_A1 │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ │ └── content.json │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── error │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── forgotPassword │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ └── fr.json │ │ │ │ │ │ ├── login │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── newsDetail │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── register │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ │ └── tooManyRequests │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ └── tablet │ │ │ │ │ │ └── tablet.json │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ ├── Capricorn_Coffee_B1.digitalExperience-meta.xml │ │ │ │ │ ├── sfdc_cms__appPage │ │ │ │ │ └── mainAppPage │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__brandingSet │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__languageSettings │ │ │ │ │ └── languages │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__route │ │ │ │ │ ├── Check_Password │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Error │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Forgot_Password │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Login │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── News_Detail__c │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Register │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── Service_Not_Available │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── Too_Many_Requests │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__site │ │ │ │ │ └── Capricorn_Coffee_B1 │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__theme │ │ │ │ │ └── Build_Your_Own_LWR │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ ├── sfdc_cms__themeLayout │ │ │ │ │ ├── scopedHeaderAndFooter │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── snaThemeLayout │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.json │ │ │ │ │ └── sfdc_cms__view │ │ │ │ │ ├── checkPasswordResetEmail │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── error │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── forgotPassword │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── home │ │ │ │ │ ├── _meta.json │ │ │ │ │ ├── content.json │ │ │ │ │ └── fr.json │ │ │ │ │ ├── login │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── newsDetail │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── register │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ ├── serviceNotAvailable │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ │ │ └── tooManyRequests │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ ├── networks │ │ │ │ ├── Capricorn_Coffee_A.network │ │ │ │ └── Capricorn_Coffee_B.network │ │ │ ├── package.xml │ │ │ ├── pages │ │ │ │ ├── CommunitiesLanding.page │ │ │ │ └── CommunitiesLanding.page-meta.xml │ │ │ └── sites │ │ │ │ ├── Capricorn_Coffee_A.site │ │ │ │ └── Capricorn_Coffee_B.site │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── forceignore │ │ ├── .forceignore │ │ ├── __snapshots__ │ │ │ └── ignores-source-format-path.expected │ │ │ │ └── testOutput │ │ │ │ └── source-format │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── classes │ │ │ │ ├── OneClass.cls │ │ │ │ └── OneClass.cls-meta.xml │ │ ├── originalMdapi │ │ │ ├── classes │ │ │ │ ├── OneClass.cls │ │ │ │ └── OneClass.cls-meta.xml │ │ │ ├── package.xml │ │ │ └── profiles │ │ │ │ └── Admin.profile │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── genAiFunctions │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── genAiFunctions │ │ │ │ │ └── CustomKnowledgeAction_1738700253695 │ │ │ │ │ │ ├── CustomKnowledgeAction_1738700253695.genAiFunction-meta.xml │ │ │ │ │ │ ├── input │ │ │ │ │ │ └── schema.json │ │ │ │ │ │ └── output │ │ │ │ │ │ └── schema.json │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── genAiFunctions │ │ │ │ └── CustomKnowledgeAction_1738700253695 │ │ │ │ ├── CustomKnowledgeAction_1738700253695.genAiFunction-meta.xml │ │ │ │ ├── input │ │ │ │ └── schema.json │ │ │ │ └── output │ │ │ │ └── schema.json │ │ ├── originalMdapi │ │ │ └── genAiFunctions │ │ │ │ └── CustomKnowledgeAction_1738700253695 │ │ │ │ ├── CustomKnowledgeAction_1738700253695.genAiFunction-meta.xml │ │ │ │ ├── input │ │ │ │ └── schema.json │ │ │ │ └── output │ │ │ │ └── schema.json │ │ ├── sfdx-project.json │ │ └── snapshot.test.ts │ │ ├── legacySuffixSupport │ │ ├── __snapshots__ │ │ │ └── verify-md-files.expected │ │ │ │ ├── objects │ │ │ │ └── LogEntryArchive__b.object │ │ │ │ └── package.xml │ │ ├── force-app │ │ │ └── objects │ │ │ │ └── objects │ │ │ │ └── LogEntryArchive__b │ │ │ │ ├── LogEntryArchive__b.object-meta.xml │ │ │ │ ├── fields │ │ │ │ ├── Timestamp__c.field-meta.xml │ │ │ │ ├── TransactionEntryNumber__c.field-meta.xml │ │ │ │ └── TransactionId__c.field-meta.xml │ │ │ │ └── indexes │ │ │ │ └── LogEntryArchiveIndex.indexe-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── mpdWithLabels │ │ ├── __snapshots__ │ │ │ ├── verify-foo-bar-app.expected │ │ │ │ └── foo-bar │ │ │ │ │ └── app │ │ │ │ │ ├── classes │ │ │ │ │ ├── FooBar.cls │ │ │ │ │ ├── FooBar.cls-meta.xml │ │ │ │ │ ├── FooBarTest.cls │ │ │ │ │ └── FooBarTest.cls-meta.xml │ │ │ │ │ └── lwc │ │ │ │ │ └── mycomponent │ │ │ │ │ ├── mycomponent.html │ │ │ │ │ ├── mycomponent.js │ │ │ │ │ └── mycomponent.js-meta.xml │ │ │ ├── verify-force-app.expected │ │ │ │ └── force-app │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── apex │ │ │ │ │ ├── MyTest.cls │ │ │ │ │ ├── MyTest.cls-meta.xml │ │ │ │ │ ├── force.cls │ │ │ │ │ └── force.cls-meta.xml │ │ │ │ │ ├── labels │ │ │ │ │ └── CustomLabels.labels-meta.xml │ │ │ │ │ ├── objects │ │ │ │ │ ├── Account │ │ │ │ │ │ └── fields │ │ │ │ │ │ │ └── asdf__c.field-meta.xml │ │ │ │ │ └── MyObj__c │ │ │ │ │ │ └── MyObj__c.object-meta.xml │ │ │ │ │ └── tabs │ │ │ │ │ └── MyObj__c.tab-meta.xml │ │ │ ├── verify-md-files-after-recomposing.expected │ │ │ │ ├── classes │ │ │ │ │ ├── FooBar.cls │ │ │ │ │ ├── FooBar.cls-meta.xml │ │ │ │ │ ├── FooBarTest.cls │ │ │ │ │ ├── FooBarTest.cls-meta.xml │ │ │ │ │ ├── MyAppTest.cls │ │ │ │ │ ├── MyAppTest.cls-meta.xml │ │ │ │ │ ├── MyTest.cls │ │ │ │ │ ├── MyTest.cls-meta.xml │ │ │ │ │ ├── force.cls │ │ │ │ │ ├── force.cls-meta.xml │ │ │ │ │ ├── my.cls │ │ │ │ │ └── my.cls-meta.xml │ │ │ │ ├── labels │ │ │ │ │ └── CustomLabels.labels │ │ │ │ ├── lwc │ │ │ │ │ └── mycomponent │ │ │ │ │ │ ├── mycomponent.html │ │ │ │ │ │ ├── mycomponent.js │ │ │ │ │ │ └── mycomponent.js-meta.xml │ │ │ │ ├── objects │ │ │ │ │ ├── Account.object │ │ │ │ │ ├── Case.object │ │ │ │ │ └── MyObj__c.object │ │ │ │ ├── package.xml │ │ │ │ └── tabs │ │ │ │ │ └── MyObj__c.tab │ │ │ └── verify-my-app.expected │ │ │ │ └── my-app │ │ │ │ ├── apex │ │ │ │ ├── MyAppTest.cls │ │ │ │ ├── MyAppTest.cls-meta.xml │ │ │ │ ├── my.cls │ │ │ │ └── my.cls-meta.xml │ │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ │ │ └── objects │ │ │ │ ├── Case │ │ │ │ └── fields │ │ │ │ │ └── myfield__c.field-meta.xml │ │ │ │ └── MyObj__c │ │ │ │ └── fields │ │ │ │ └── MyField__c.field-meta.xml │ │ ├── foo-bar │ │ │ └── app │ │ │ │ ├── classes │ │ │ │ ├── FooBar.cls │ │ │ │ ├── FooBar.cls-meta.xml │ │ │ │ ├── FooBarTest.cls │ │ │ │ └── FooBarTest.cls-meta.xml │ │ │ │ └── lwc │ │ │ │ └── mycomponent │ │ │ │ ├── mycomponent.html │ │ │ │ ├── mycomponent.js │ │ │ │ └── mycomponent.js-meta.xml │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── apex │ │ │ │ ├── MyTest.cls │ │ │ │ ├── MyTest.cls-meta.xml │ │ │ │ ├── force.cls │ │ │ │ └── force.cls-meta.xml │ │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ │ │ ├── objects │ │ │ │ ├── Account │ │ │ │ │ └── fields │ │ │ │ │ │ └── asdf__c.field-meta.xml │ │ │ │ └── MyObj__c │ │ │ │ │ └── MyObj__c.object-meta.xml │ │ │ │ └── tabs │ │ │ │ └── MyObj__c.tab-meta.xml │ │ ├── my-app │ │ │ ├── apex │ │ │ │ ├── MyAppTest.cls │ │ │ │ ├── MyAppTest.cls-meta.xml │ │ │ │ ├── my.cls │ │ │ │ └── my.cls-meta.xml │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ │ └── objects │ │ │ │ ├── Case │ │ │ │ └── fields │ │ │ │ │ └── myfield__c.field-meta.xml │ │ │ │ └── MyObj__c │ │ │ │ └── fields │ │ │ │ └── MyField__c.field-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── nestedFolders │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── email │ │ │ │ │ ├── Top_Level_Folder-meta.xml │ │ │ │ │ ├── Top_Level_Folder │ │ │ │ │ │ ├── Template_in_folder.email │ │ │ │ │ │ └── Template_in_folder.email-meta.xml │ │ │ │ │ └── unfiled$public │ │ │ │ │ │ ├── Top_level_email.email │ │ │ │ │ │ └── Top_level_email.email-meta.xml │ │ │ │ ├── package.xml │ │ │ │ └── reports │ │ │ │ │ ├── TopFolder-meta.xml │ │ │ │ │ ├── TopFolder │ │ │ │ │ ├── ChildFolder-meta.xml │ │ │ │ │ ├── ChildFolder │ │ │ │ │ │ └── Report_in_Child_Folder_qz4.report │ │ │ │ │ └── Copy_of_Top_level_report_DOj.report │ │ │ │ │ └── unfiled$public │ │ │ │ │ └── Top_level_report_cZJ.report │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── email │ │ │ │ ├── Top_Level_Folder.emailFolder-meta.xml │ │ │ │ ├── Top_Level_Folder │ │ │ │ │ ├── Template_in_folder.email │ │ │ │ │ └── Template_in_folder.email-meta.xml │ │ │ │ └── unfiled$public │ │ │ │ │ ├── Top_level_email.email │ │ │ │ │ └── Top_level_email.email-meta.xml │ │ │ │ └── reports │ │ │ │ ├── TopFolder.reportFolder-meta.xml │ │ │ │ ├── TopFolder │ │ │ │ ├── ChildFolder.reportFolder-meta.xml │ │ │ │ ├── ChildFolder │ │ │ │ │ └── Report_in_Child_Folder_qz4.report-meta.xml │ │ │ │ └── Copy_of_Top_level_report_DOj.report-meta.xml │ │ │ │ └── unfiled$public │ │ │ │ └── Top_level_report_cZJ.report-meta.xml │ │ ├── originalMdapi │ │ │ ├── email │ │ │ │ ├── Top_Level_Folder-meta.xml │ │ │ │ ├── Top_Level_Folder │ │ │ │ │ ├── Template_in_folder.email │ │ │ │ │ └── Template_in_folder.email-meta.xml │ │ │ │ └── unfiled$public │ │ │ │ │ ├── Top_level_email.email │ │ │ │ │ └── Top_level_email.email-meta.xml │ │ │ ├── package.xml │ │ │ └── reports │ │ │ │ ├── TopFolder-meta.xml │ │ │ │ ├── TopFolder │ │ │ │ ├── ChildFolder-meta.xml │ │ │ │ ├── ChildFolder │ │ │ │ │ └── Report_in_Child_Folder_qz4.report │ │ │ │ └── Copy_of_Top_level_report_DOj.report │ │ │ │ └── unfiled$public │ │ │ │ └── Top_level_report_cZJ.report │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-PermSet │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ └── permissionsets │ │ │ │ │ └── dreamhouse.permissionset │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── permissionsets │ │ │ │ ├── dreamhouse.permissionset-meta.xml │ │ │ │ └── dreamhouse │ │ │ │ ├── applicationVisibilities │ │ │ │ └── Dreamhouse.applicationVisibility-meta.xml │ │ │ │ ├── classAccesses │ │ │ │ ├── PagedResult.classAccess-meta.xml │ │ │ │ ├── PropertyController.classAccess-meta.xml │ │ │ │ └── SampleDataController.classAccess-meta.xml │ │ │ │ ├── dreamhouse.permissionset-meta.xml │ │ │ │ ├── fieldPermissions │ │ │ │ ├── Broker__c.Broker_Id__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Email__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Mobile_Phone__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Phone__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Picture_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Picture__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Title__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Address__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Assessed_Value__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Baths__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Beds__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Broker__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.City__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Agreement__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Closed__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Contracted__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Listed__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Pre_Market__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Days_On_Market__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Description__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Location__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Name.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Picture_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Picture__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Price_Sold__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Price__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Record_Link__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.State__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Status__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Tags__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Thumbnail_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Thumbnail__c.fieldPermission-meta.xml │ │ │ │ └── Property__c.Zip__c.fieldPermission-meta.xml │ │ │ │ ├── objectPermissions │ │ │ │ ├── Broker__c.objectPermission-meta.xml │ │ │ │ └── Property__c.objectPermission-meta.xml │ │ │ │ └── tabSettings │ │ │ │ ├── Broker__c.tabSetting-meta.xml │ │ │ │ ├── Property_Explorer.tabSetting-meta.xml │ │ │ │ ├── Property_Finder.tabSetting-meta.xml │ │ │ │ ├── Property__c.tabSetting-meta.xml │ │ │ │ └── Settings.tabSetting-meta.xml │ │ ├── originalMdapi │ │ │ ├── package.xml │ │ │ └── permissionsets │ │ │ │ └── dreamhouse.permissionset │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-decomposeLabels │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── labels │ │ │ │ │ └── CustomLabels.labels │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── labels │ │ │ │ ├── DeleteMe.label-meta.xml │ │ │ │ ├── KeepMe1.label-meta.xml │ │ │ │ └── KeepMe2.label-meta.xml │ │ ├── originalMdapi │ │ │ ├── labels │ │ │ │ └── CustomLabels.labels │ │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-decomposedESR │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── externalServiceRegistrations │ │ │ │ │ ├── OpenAPIChallenge.externalServiceRegistration │ │ │ │ │ └── OpenAPIChallengeJson.externalServiceRegistration │ │ │ │ └── package.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── externalServiceRegistrations │ │ │ │ ├── OpenAPIChallenge.externalServiceRegistration-meta.xml │ │ │ │ ├── OpenAPIChallenge.yaml │ │ │ │ ├── OpenAPIChallengeJson.externalServiceRegistration-meta.xml │ │ │ │ └── OpenAPIChallengeJson.yaml │ │ ├── originalMdapi │ │ │ ├── externalServiceRegistrations │ │ │ │ ├── OpenAPIChallenge.externalServiceRegistration │ │ │ │ └── OpenAPIChallengeJson.externalServiceRegistration │ │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-decomposedPS2 │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── customPermissions │ │ │ │ │ ├── MYCP.customPermission │ │ │ │ │ └── MYCP2.customPermission │ │ │ │ ├── package.xml │ │ │ │ └── permissionsets │ │ │ │ │ ├── dreamhouse.permissionset │ │ │ │ │ ├── ebikes.permissionset │ │ │ │ │ ├── noObjectSettings.permissionset │ │ │ │ │ └── withCustomPermission.permissionset │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── customPermissions │ │ │ │ ├── MYCP.customPermission-meta.xml │ │ │ │ └── MYCP2.customPermission-meta.xml │ │ │ │ └── permissionsets │ │ │ │ ├── dreamhouse │ │ │ │ ├── dreamhouse.classAccess-meta.xml │ │ │ │ ├── dreamhouse.permissionset-meta.xml │ │ │ │ ├── dreamhouse.userPermission-meta.xml │ │ │ │ └── objectSettings │ │ │ │ │ ├── Account.objectSettings-meta.xml │ │ │ │ │ ├── AppAnalyticsQueryRequest.objectSettings-meta.xml │ │ │ │ │ ├── Asset.objectSettings-meta.xml │ │ │ │ │ ├── AssetAction.objectSettings-meta.xml │ │ │ │ │ └── Broker__c.objectSettings-meta.xml │ │ │ │ ├── ebikes │ │ │ │ ├── ebikes.permissionset-meta.xml │ │ │ │ └── objectSettings │ │ │ │ │ ├── Account.objectSettings-meta.xml │ │ │ │ │ ├── Case.objectSettings-meta.xml │ │ │ │ │ ├── Order.objectSettings-meta.xml │ │ │ │ │ ├── Order_Item__c.objectSettings-meta.xml │ │ │ │ │ ├── Order__c.objectSettings-meta.xml │ │ │ │ │ ├── Product_Explorer.objectSettings-meta.xml │ │ │ │ │ ├── Product_Family__c.objectSettings-meta.xml │ │ │ │ │ └── Product__c.objectSettings-meta.xml │ │ │ │ ├── noObjectSettings │ │ │ │ ├── noObjectSettings.classAccess-meta.xml │ │ │ │ ├── noObjectSettings.permissionset-meta.xml │ │ │ │ └── noObjectSettings.userPermission-meta.xml │ │ │ │ └── withCustomPermission │ │ │ │ ├── withCustomPermission.applicationVisibility-meta.xml │ │ │ │ ├── withCustomPermission.classAccess-meta.xml │ │ │ │ ├── withCustomPermission.customPermissions-meta.xml │ │ │ │ └── withCustomPermission.permissionset-meta.xml │ │ ├── originalMdapi │ │ │ ├── customPermissions │ │ │ │ ├── MYCP.customPermission │ │ │ │ └── MYCP2.customPermission │ │ │ ├── package.xml │ │ │ └── permissionsets │ │ │ │ ├── dreamhouse.permissionset │ │ │ │ ├── ebikes.permissionset │ │ │ │ ├── noObjectSettings.permissionset │ │ │ │ └── withCustomPermission.permissionset │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-sharingRules │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── groups │ │ │ │ │ ├── Group1.group │ │ │ │ │ ├── Group2.group │ │ │ │ │ └── Internal_Users_Public_Group.group │ │ │ │ ├── package.xml │ │ │ │ ├── roles │ │ │ │ │ ├── role1.role │ │ │ │ │ ├── role1_sub_role.role │ │ │ │ │ └── ur1507245197985.role │ │ │ │ ├── sharingRules │ │ │ │ │ └── account.sharingRules │ │ │ │ └── territories │ │ │ │ │ └── Territory_1.territory │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── groups │ │ │ │ ├── Group1.group-meta.xml │ │ │ │ ├── Group2.group-meta.xml │ │ │ │ └── Internal_Users_Public_Group.group-meta.xml │ │ │ │ ├── roles │ │ │ │ ├── role1.role-meta.xml │ │ │ │ ├── role1_sub_role.role-meta.xml │ │ │ │ └── ur1507245197985.role-meta.xml │ │ │ │ ├── sharingRules │ │ │ │ ├── account.sharingRules-meta.xml │ │ │ │ └── account │ │ │ │ │ ├── account.sharingRules-meta.xml │ │ │ │ │ ├── sharingCriteriaRules │ │ │ │ │ ├── AcctCBS2_toTerritories.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── AcctCBS2_toTerritory.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── AcctCBS_toAllCustPortal.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── AcctCBS_toAllInternal.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── AcctCBS_toAllPartner.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── AcctCBS_toTerr.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── Acct_CBS_boolean.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_group.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_groups.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_mgrSubs.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_mgrs.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_portal.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_portalAndSubs.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_role.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_roleAndsubsPortal.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_roleandsubs.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_roles.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_rolesAndsubsPortal.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── criteria_terrAndSubs.sharingCriteriaRule-meta.xml │ │ │ │ │ └── criteria_terrsAndSubs.sharingCriteriaRule-meta.xml │ │ │ │ │ ├── sharingOwnerRules │ │ │ │ │ ├── AcctOwner_toCustPortal_fromInternal.sharingOwnerRule-meta.xml │ │ │ │ │ ├── AcctOwner_toInteral_fromPartner.sharingOwnerRule-meta.xml │ │ │ │ │ ├── AcctOwner_toPartner_fromCustomerPortal.sharingOwnerRule-meta.xml │ │ │ │ │ ├── OwnerGroups.sharingOwnerRule-meta.xml │ │ │ │ │ ├── OwnerGroups2.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_FromTerrAndSub_ToTerr.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_FromTerrsAndSub_ToTerrs.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_ToTerrsAndSub_FromTerrs.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_fromPortalSubs_toPortal.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_fromTerrToTerrAndSub.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_fromportalRole_toAndSubs.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_managerSubordinates.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_mgrs.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_role.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_roles.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_rolesIntAndPortal.sharingOwnerRule-meta.xml │ │ │ │ │ ├── owner_rolesIntAndPortal2.sharingOwnerRule-meta.xml │ │ │ │ │ └── owner_rolesIntSubs.sharingOwnerRule-meta.xml │ │ │ │ │ └── sharingTerritoryRules │ │ │ │ │ ├── AcctTerr1_toAllInternal.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── AcctTerr1s_toAllInternal.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── AcctTerr_toAllCustPortal.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── AcctTerr_toAllPartner.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── Terr_Group.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── Terr_Groups.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terrAndSubs_mgrSubs.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_mgrs.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_portalAndSubs.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_portalRole.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_role.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_roleAndSubPortal.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_roleAndSubs.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_roles.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_rolesAndSubPortal.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_terr.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_terrAndSub.sharingTerritoryRule-meta.xml │ │ │ │ │ ├── terr_terrs.sharingTerritoryRule-meta.xml │ │ │ │ │ └── terr_terrsAndSub.sharingTerritoryRule-meta.xml │ │ │ │ └── territories │ │ │ │ └── Territory_1.territory-meta.xml │ │ ├── originalMdapi │ │ │ ├── groups │ │ │ │ ├── Group1.group │ │ │ │ ├── Group2.group │ │ │ │ └── Internal_Users_Public_Group.group │ │ │ ├── package.xml │ │ │ ├── roles │ │ │ │ ├── role1.role │ │ │ │ ├── role1_sub_role.role │ │ │ │ └── ur1507245197985.role │ │ │ ├── sharingRules │ │ │ │ └── account.sharingRules │ │ │ └── territories │ │ │ │ └── Territory_1.territory │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-workflow-mpd │ │ ├── README.md │ │ ├── __snapshots__ │ │ │ └── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ └── workflows │ │ │ │ └── Case.workflow │ │ ├── another-package │ │ │ └── workflows │ │ │ │ └── Case │ │ │ │ ├── Case.workflow-meta.xml │ │ │ │ └── workflowFieldUpdates │ │ │ │ └── ChangePriorityToLow.workflowFieldUpdate-meta.xml │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── workflows │ │ │ │ └── Case │ │ │ │ ├── Case.workflow-meta.xml │ │ │ │ └── workflowFieldUpdates │ │ │ │ ├── ChangePriorityToHigh.workflowFieldUpdate-meta.xml │ │ │ │ └── ChangePriorityToMedium.workflowFieldUpdate-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── preset-workflow │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── email │ │ │ │ │ └── emailtest │ │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ ├── objects │ │ │ │ │ └── Account.object │ │ │ │ ├── package.xml │ │ │ │ └── workflows │ │ │ │ │ └── Account.workflow │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ ├── objects │ │ │ │ └── Account │ │ │ │ │ ├── Account.object-meta.xml │ │ │ │ │ └── fields │ │ │ │ │ ├── AccountNumber.field-meta.xml │ │ │ │ │ └── AccountSource.field-meta.xml │ │ │ │ └── workflows │ │ │ │ └── Account │ │ │ │ ├── Account.workflow-meta.xml │ │ │ │ ├── workflowAlerts │ │ │ │ └── emailalert1.workflowAlert-meta.xml │ │ │ │ ├── workflowFieldUpdates │ │ │ │ └── fieldupdate1.workflowFieldUpdate-meta.xml │ │ │ │ ├── workflowOutboundMessages │ │ │ │ └── outboundmsg1.workflowOutboundMessage-meta.xml │ │ │ │ └── workflowTasks │ │ │ │ └── task_1.workflowTask-meta.xml │ │ ├── originalMdapi │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ ├── objects │ │ │ │ └── Account.object │ │ │ ├── package.xml │ │ │ └── workflows │ │ │ │ └── Account.workflow │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── sharingRules │ │ ├── __snapshots__ │ │ │ ├── verify-md-files-SCR.expected │ │ │ │ ├── package.xml │ │ │ │ └── sharingRules │ │ │ │ │ └── account.sharingRules │ │ │ ├── verify-md-files-SR.expected │ │ │ │ ├── package.xml │ │ │ │ └── sharingRules │ │ │ │ │ └── account.sharingRules │ │ │ ├── verify-md-files.expected │ │ │ │ ├── groups │ │ │ │ │ ├── Group1.group │ │ │ │ │ ├── Group2.group │ │ │ │ │ └── Internal_Users_Public_Group.group │ │ │ │ ├── package.xml │ │ │ │ ├── roles │ │ │ │ │ ├── role1.role │ │ │ │ │ ├── role1_sub_role.role │ │ │ │ │ └── ur1507245197985.role │ │ │ │ ├── sharingRules │ │ │ │ │ └── account.sharingRules │ │ │ │ └── territories │ │ │ │ │ └── Territory_1.territory │ │ │ ├── verify-source-files-SCR.expected │ │ │ │ └── force-app │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ └── sharingRules │ │ │ │ │ └── account.sharingRules-meta.xml │ │ │ ├── verify-source-files-SR.expected │ │ │ │ └── force-app │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ └── sharingRules │ │ │ │ │ └── account.sharingRules-meta.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── groups │ │ │ │ ├── Group1.group-meta.xml │ │ │ │ ├── Group2.group-meta.xml │ │ │ │ └── Internal_Users_Public_Group.group-meta.xml │ │ │ │ ├── roles │ │ │ │ ├── role1.role-meta.xml │ │ │ │ ├── role1_sub_role.role-meta.xml │ │ │ │ └── ur1507245197985.role-meta.xml │ │ │ │ ├── sharingRules │ │ │ │ └── account.sharingRules-meta.xml │ │ │ │ └── territories │ │ │ │ └── Territory_1.territory-meta.xml │ │ ├── originalMdapi │ │ │ ├── groups │ │ │ │ ├── Group1.group │ │ │ │ ├── Group2.group │ │ │ │ └── Internal_Users_Public_Group.group │ │ │ ├── package.xml │ │ │ ├── roles │ │ │ │ ├── role1.role │ │ │ │ ├── role1_sub_role.role │ │ │ │ └── ur1507245197985.role │ │ │ ├── sharingRules │ │ │ │ └── account.sharingRules │ │ │ └── territories │ │ │ │ └── Territory_1.territory │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── singleCustomFieldRetrieve │ │ ├── __snapshots__ │ │ │ ├── verify-force-app.expected │ │ │ │ └── force-app │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── layouts │ │ │ │ │ └── Broker__c-Broker Layout.layout-meta.xml │ │ │ │ │ └── objects │ │ │ │ │ └── Broker__c │ │ │ │ │ ├── Broker__c.object-meta.xml │ │ │ │ │ └── fields │ │ │ │ │ ├── Broker_Id__c.field-meta.xml │ │ │ │ │ ├── Email__c.field-meta.xml │ │ │ │ │ └── testing__c.field-meta.xml │ │ │ ├── will-not-overwrite-object-meta-xml-in-package-retrieval.expected │ │ │ │ └── TestPackage │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── layouts │ │ │ │ │ └── test__c-test Layout.layout-meta.xml │ │ │ │ │ └── objects │ │ │ │ │ └── test__c │ │ │ │ │ ├── fields │ │ │ │ │ ├── completion__c.field-meta.xml │ │ │ │ │ └── status__c.field-meta.xml │ │ │ │ │ └── test__c.object-meta.xml │ │ │ ├── will-not-overwrite-object-meta-xml.expected │ │ │ │ └── force-app │ │ │ │ │ └── main │ │ │ │ │ └── default │ │ │ │ │ ├── layouts │ │ │ │ │ └── Broker__c-Broker Layout.layout-meta.xml │ │ │ │ │ └── objects │ │ │ │ │ └── Broker__c │ │ │ │ │ ├── Broker__c.object-meta.xml │ │ │ │ │ └── fields │ │ │ │ │ ├── Broker_Id__c.field-meta.xml │ │ │ │ │ ├── Email__c.field-meta.xml │ │ │ │ │ └── testing__c.field-meta.xml │ │ │ └── will-retrieve-using-Retrieve.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── layouts │ │ │ │ └── Broker__c-Broker Layout.layout-meta.xml │ │ │ │ └── objects │ │ │ │ └── Broker__c │ │ │ │ ├── Broker__c.object-meta.xml │ │ │ │ └── fields │ │ │ │ ├── Broker_Id__c.field-meta.xml │ │ │ │ ├── Email__c.field-meta.xml │ │ │ │ └── testing__c.field-meta.xml │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── objects │ │ │ │ └── Broker__c │ │ │ │ ├── Broker__c.object-meta.xml │ │ │ │ └── fields │ │ │ │ └── Broker_Id__c.field-meta.xml │ │ ├── mdapiOutput │ │ │ ├── objects │ │ │ │ └── Broker__c.object │ │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── staticResource │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ └── staticresources │ │ │ │ │ ├── sample_data_brokers.resource │ │ │ │ │ ├── sample_data_brokers.resource-meta.xml │ │ │ │ │ ├── sample_data_contacts.resource │ │ │ │ │ ├── sample_data_contacts.resource-meta.xml │ │ │ │ │ ├── sample_data_properties.resource │ │ │ │ │ └── sample_data_properties.resource-meta.xml │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── staticresources │ │ │ │ ├── leafletjs │ │ │ │ ├── images │ │ │ │ │ ├── layers-2x.png │ │ │ │ │ ├── layers.png │ │ │ │ │ ├── marker-icon-2x.png │ │ │ │ │ ├── marker-icon.png │ │ │ │ │ └── marker-shadow.png │ │ │ │ ├── leaflet.css │ │ │ │ └── leaflet.js │ │ │ │ ├── sample_data_brokers.json │ │ │ │ ├── sample_data_brokers.resource-meta.xml │ │ │ │ ├── sample_data_contacts.json │ │ │ │ ├── sample_data_contacts.resource-meta.xml │ │ │ │ ├── sample_data_properties.json │ │ │ │ └── sample_data_properties.resource-meta.xml │ │ ├── originalMdapi │ │ │ ├── package.xml │ │ │ └── staticresources │ │ │ │ ├── leafletjs.resource │ │ │ │ ├── leafletjs.resource-meta.xml │ │ │ │ ├── sample_data_brokers.resource │ │ │ │ ├── sample_data_brokers.resource-meta.xml │ │ │ │ ├── sample_data_contacts.resource │ │ │ │ ├── sample_data_contacts.resource-meta.xml │ │ │ │ ├── sample_data_properties.resource │ │ │ │ └── sample_data_properties.resource-meta.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── territory │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ ├── territory2Models │ │ │ │ │ └── SCW_Territory_Model │ │ │ │ │ │ ├── SCW_Territory_Model.territory2Model │ │ │ │ │ │ ├── rules │ │ │ │ │ │ └── Fishing_Stores.territory2Rule │ │ │ │ │ │ └── territories │ │ │ │ │ │ ├── Austin.territory2 │ │ │ │ │ │ ├── Texas.territory2 │ │ │ │ │ │ └── USA.territory2 │ │ │ │ └── territory2Types │ │ │ │ │ ├── City.territory2Type │ │ │ │ │ ├── Country.territory2Type │ │ │ │ │ └── State.territory2Type │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── territory2Models │ │ │ │ └── SCW_Territory_Model │ │ │ │ │ ├── SCW_Territory_Model.territory2Model-meta.xml │ │ │ │ │ ├── rules │ │ │ │ │ └── Fishing_Stores.territory2Rule-meta.xml │ │ │ │ │ └── territories │ │ │ │ │ ├── Austin.territory2-meta.xml │ │ │ │ │ ├── Texas.territory2-meta.xml │ │ │ │ │ └── USA.territory2-meta.xml │ │ │ │ └── territory2Types │ │ │ │ ├── City.territory2Type-meta.xml │ │ │ │ ├── Country.territory2Type-meta.xml │ │ │ │ └── State.territory2Type-meta.xml │ │ ├── originalMdapi │ │ │ ├── package.xml │ │ │ ├── territory2Models │ │ │ │ └── SCW_Territory_Model │ │ │ │ │ ├── SCW_Territory_Model.territory2Model │ │ │ │ │ ├── rules │ │ │ │ │ └── Fishing_Stores.territory2Rule │ │ │ │ │ └── territories │ │ │ │ │ ├── Austin.territory2 │ │ │ │ │ ├── Texas.territory2 │ │ │ │ │ └── USA.territory2 │ │ │ └── territory2Types │ │ │ │ ├── City.territory2Type │ │ │ │ ├── Country.territory2Type │ │ │ │ └── State.territory2Type │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── variant-raw-PermSet │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ └── permissionsets │ │ │ │ │ └── dreamhouse.permissionset │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── permissionsets │ │ │ │ └── dreamhouse │ │ │ │ ├── dreamhouse.permissionset-meta.xml │ │ │ │ ├── fieldPermissions │ │ │ │ ├── Broker__c.Broker_Id__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Email__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Mobile_Phone__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Phone__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Picture_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Picture__c.fieldPermission-meta.xml │ │ │ │ ├── Broker__c.Title__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Address__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Assessed_Value__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Baths__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Beds__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Broker__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.City__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Agreement__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Closed__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Contracted__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Listed__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Date_Pre_Market__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Days_On_Market__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Description__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Location__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Name.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Picture_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Picture__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Price_Sold__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Price__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Record_Link__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.State__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Status__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Tags__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Thumbnail_IMG__c.fieldPermission-meta.xml │ │ │ │ ├── Property__c.Thumbnail__c.fieldPermission-meta.xml │ │ │ │ └── Property__c.Zip__c.fieldPermission-meta.xml │ │ │ │ ├── objectPermissions │ │ │ │ ├── Broker__c.objectPermission-meta.xml │ │ │ │ └── Property__c.objectPermission-meta.xml │ │ │ │ └── tabSettings │ │ │ │ ├── Broker__c.tabSetting-meta.xml │ │ │ │ ├── Property_Explorer.tabSetting-meta.xml │ │ │ │ ├── Property_Finder.tabSetting-meta.xml │ │ │ │ ├── Property__c.tabSetting-meta.xml │ │ │ │ └── Settings.tabSetting-meta.xml │ │ ├── originalMdapi │ │ │ ├── package.xml │ │ │ └── permissionsets │ │ │ │ └── dreamhouse.permissionset │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── variant-workflow │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── email │ │ │ │ │ └── emailtest │ │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ ├── package.xml │ │ │ │ └── workflows │ │ │ │ │ └── Account.workflow │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ └── workflows │ │ │ │ └── Account │ │ │ │ ├── Account.workflow-meta.xml │ │ │ │ ├── workflowAlerts │ │ │ │ └── emailalert1.workflowAlert-meta.xml │ │ │ │ ├── workflowFieldUpdates │ │ │ │ └── fieldupdate1.workflowFieldUpdate-meta.xml │ │ │ │ ├── workflowOutboundMessages │ │ │ │ └── outboundmsg1.workflowOutboundMessage-meta.xml │ │ │ │ └── workflowTasks │ │ │ │ └── task_1.workflowTask-meta.xml │ │ ├── originalMdapi │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ ├── package.xml │ │ │ └── workflows │ │ │ │ └── Account.workflow │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── waveTemplateBundle │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── package.xml │ │ │ │ └── waveTemplates │ │ │ │ │ ├── OpsPandaWaveApp_v43 │ │ │ │ │ ├── app-to-template-rules.json │ │ │ │ │ ├── dashboards │ │ │ │ │ │ ├── OpsPanda_Actuals_to_Quota.json │ │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ │ ├── dataflow │ │ │ │ │ │ ├── OpsPandaWaveApp.json │ │ │ │ │ │ └── OpsPandaWaveAppDataflow.json │ │ │ │ │ ├── dataset_files │ │ │ │ │ │ └── Opportunities_Closed_Won_XMD.json │ │ │ │ │ ├── external_files │ │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.csv │ │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan_XMD.json │ │ │ │ │ ├── folder.json │ │ │ │ │ ├── template-info.json │ │ │ │ │ ├── template-to-app-rules.json │ │ │ │ │ ├── ui.json │ │ │ │ │ └── variables.json │ │ │ │ │ └── WaveXMD │ │ │ │ │ ├── app-to-template-rules.json │ │ │ │ │ ├── external_files │ │ │ │ │ ├── Regional_Sales_Info.csv │ │ │ │ │ ├── Regional_Sales_Info.json │ │ │ │ │ └── Regional_Sales_Info_XMD.json │ │ │ │ │ ├── folder.json │ │ │ │ │ ├── lenses │ │ │ │ │ └── Lens_With_Xmd.json │ │ │ │ │ ├── releaseNotes.html │ │ │ │ │ ├── template-info.json │ │ │ │ │ ├── template-to-app-rules.json │ │ │ │ │ ├── ui.json │ │ │ │ │ └── variables.json │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── waveTemplates │ │ │ │ ├── OpsPandaWaveApp_v43 │ │ │ │ ├── app-to-template-rules.json │ │ │ │ ├── dashboards │ │ │ │ │ ├── OpsPanda_Actuals_to_Quota.json │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ ├── dataflow │ │ │ │ │ ├── OpsPandaWaveApp.json │ │ │ │ │ └── OpsPandaWaveAppDataflow.json │ │ │ │ ├── dataset_files │ │ │ │ │ └── Opportunities_Closed_Won_XMD.json │ │ │ │ ├── external_files │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.csv │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan_XMD.json │ │ │ │ ├── folder.json │ │ │ │ ├── template-info.json │ │ │ │ ├── template-to-app-rules.json │ │ │ │ ├── ui.json │ │ │ │ └── variables.json │ │ │ │ └── WaveXMD │ │ │ │ ├── app-to-template-rules.json │ │ │ │ ├── external_files │ │ │ │ ├── Regional_Sales_Info.csv │ │ │ │ ├── Regional_Sales_Info.json │ │ │ │ └── Regional_Sales_Info_XMD.json │ │ │ │ ├── folder.json │ │ │ │ ├── lenses │ │ │ │ └── Lens_With_Xmd.json │ │ │ │ ├── releaseNotes.html │ │ │ │ ├── template-info.json │ │ │ │ ├── template-to-app-rules.json │ │ │ │ ├── ui.json │ │ │ │ └── variables.json │ │ ├── originalMdapi │ │ │ ├── package.xml │ │ │ └── waveTemplates │ │ │ │ ├── OpsPandaWaveApp_v43 │ │ │ │ ├── app-to-template-rules.json │ │ │ │ ├── dashboards │ │ │ │ │ ├── OpsPanda_Actuals_to_Quota.json │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ ├── dataflow │ │ │ │ │ ├── OpsPandaWaveApp.json │ │ │ │ │ └── OpsPandaWaveAppDataflow.json │ │ │ │ ├── dataset_files │ │ │ │ │ └── Opportunities_Closed_Won_XMD.json │ │ │ │ ├── external_files │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.csv │ │ │ │ │ ├── OpsPanda_Sales_Capacity_Plan.json │ │ │ │ │ └── OpsPanda_Sales_Capacity_Plan_XMD.json │ │ │ │ ├── folder.json │ │ │ │ ├── template-info.json │ │ │ │ ├── template-to-app-rules.json │ │ │ │ ├── ui.json │ │ │ │ └── variables.json │ │ │ │ └── WaveXMD │ │ │ │ ├── app-to-template-rules.json │ │ │ │ ├── external_files │ │ │ │ ├── Regional_Sales_Info.csv │ │ │ │ ├── Regional_Sales_Info.json │ │ │ │ └── Regional_Sales_Info_XMD.json │ │ │ │ ├── folder.json │ │ │ │ ├── lenses │ │ │ │ └── Lens_With_Xmd.json │ │ │ │ ├── releaseNotes.html │ │ │ │ ├── template-info.json │ │ │ │ ├── template-to-app-rules.json │ │ │ │ ├── ui.json │ │ │ │ └── variables.json │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ ├── workflow │ │ ├── __snapshots__ │ │ │ ├── verify-md-files.expected │ │ │ │ ├── email │ │ │ │ │ └── emailtest │ │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ ├── package.xml │ │ │ │ └── workflows │ │ │ │ │ └── Account.workflow │ │ │ └── verify-source-files.expected │ │ │ │ └── force-app │ │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ │ └── workflows │ │ │ │ └── Account.workflow-meta.xml │ │ ├── originalMdapi │ │ │ ├── email │ │ │ │ └── emailtest │ │ │ │ │ ├── MarketingProductInquiryResponse.email │ │ │ │ │ └── MarketingProductInquiryResponse.email-meta.xml │ │ │ ├── package.xml │ │ │ └── workflows │ │ │ │ └── Account.workflow │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts │ │ └── xmlComments │ │ ├── __snapshots__ │ │ ├── verify-md-files.expected │ │ │ ├── objectTranslations │ │ │ │ └── Contact-en_US.objectTranslation │ │ │ ├── objects │ │ │ │ └── Contact.object │ │ │ └── package.xml │ │ └── verify-source-files.expected │ │ │ └── force-app │ │ │ └── main │ │ │ └── default │ │ │ ├── objectTranslations │ │ │ └── Contact-en_US │ │ │ │ ├── Contact-en_US.objectTranslation-meta.xml │ │ │ │ └── Example__c.fieldTranslation-meta.xml │ │ │ └── objects │ │ │ └── Contact │ │ │ ├── Contact.object-meta.xml │ │ │ └── fields │ │ │ ├── AccountId.field-meta.xml │ │ │ ├── AssistantName.field-meta.xml │ │ │ ├── AssistantPhone.field-meta.xml │ │ │ ├── Birthdate.field-meta.xml │ │ │ ├── CleanStatus.field-meta.xml │ │ │ ├── Department.field-meta.xml │ │ │ ├── Description.field-meta.xml │ │ │ ├── DoNotCall.field-meta.xml │ │ │ ├── Email.field-meta.xml │ │ │ ├── Example__c.field-meta.xml │ │ │ ├── Fax.field-meta.xml │ │ │ ├── GenderIdentity.field-meta.xml │ │ │ ├── HasOptedOutOfEmail.field-meta.xml │ │ │ ├── HasOptedOutOfFax.field-meta.xml │ │ │ ├── HomePhone.field-meta.xml │ │ │ ├── IndividualId.field-meta.xml │ │ │ ├── Jigsaw.field-meta.xml │ │ │ ├── LastCURequestDate.field-meta.xml │ │ │ ├── LastCUUpdateDate.field-meta.xml │ │ │ ├── LeadSource.field-meta.xml │ │ │ ├── MailingAddress.field-meta.xml │ │ │ ├── MobilePhone.field-meta.xml │ │ │ ├── Name.field-meta.xml │ │ │ ├── OtherAddress.field-meta.xml │ │ │ ├── OtherPhone.field-meta.xml │ │ │ ├── OwnerId.field-meta.xml │ │ │ ├── Phone.field-meta.xml │ │ │ ├── Pronouns.field-meta.xml │ │ │ ├── ReportsToId.field-meta.xml │ │ │ └── Title.field-meta.xml │ │ ├── originalMdapi │ │ ├── objectTranslations │ │ │ └── Contact-en_US.objectTranslation │ │ ├── objects │ │ │ └── Contact.object │ │ └── package.xml │ │ ├── sfdx-project.json │ │ └── snapshots.test.ts ├── tsconfig.json └── utils │ ├── filePathGenerator.test.ts │ ├── fileSystemHandler.ts │ ├── getMissingTypes.ts │ ├── metadata.ts │ └── path.test.ts ├── tsconfig.json ├── typedoc.json └── yarn.lock /.commitlintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@commitlint/config-conventional"] 3 | } -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | **/__snapshots__/ -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2020, salesforce.com, inc. 3 | * All rights reserved. 4 | * Licensed under the BSD 3-Clause license. 5 | * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause 6 | */ 7 | module.exports = { 8 | extends: ['eslint-config-salesforce-typescript', 'eslint-config-salesforce-license', 'plugin:sf-plugin/library'], 9 | }; 10 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | #ECCN: Open Source 2 | #GUSINFO:Open Source,Open Source Workflow 3 | 4 | # For more info on this file syntax: 5 | # https://help.github.com/en/articles/about-code-owners 6 | 7 | # These owners will be the default owners for everything in 8 | # the repo. 9 | 10 | * @forcedotcom/platform-cli 11 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### What does this PR do? 2 | 3 | ### What issues does this PR fix or reference? 4 | 5 | #, @@ 6 | 7 | ### Functionality Before 8 | 9 | 10 | 11 | ### Functionality After 12 | 13 | 14 | -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- 1 | name: automerge 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: '42 2,5,8,11 * * *' 6 | 7 | jobs: 8 | automerge: 9 | uses: salesforcecli/github-workflows/.github/workflows/automerge.yml@main 10 | with: 11 | mergeMethod: squash 12 | secrets: inherit 13 | -------------------------------------------------------------------------------- /.github/workflows/devScripts.yml: -------------------------------------------------------------------------------- 1 | name: devScripts 2 | on: 3 | workflow_dispatch: 4 | schedule: 5 | - cron: '50 6 * * 0' 6 | 7 | jobs: 8 | update: 9 | uses: salesforcecli/github-workflows/.github/workflows/devScriptsUpdate.yml@main 10 | secrets: inherit 11 | -------------------------------------------------------------------------------- /.github/workflows/testWithCoreBundle.yml: -------------------------------------------------------------------------------- 1 | name: Test With Core Bundle 2 | on: 3 | push: 4 | branches-ignore: [main] 5 | 6 | jobs: 7 | build-and-test: 8 | uses: forcedotcom/bundle-publish-scripts/.github/workflows/validateBuildWithCoreBundle.yml@main 9 | secrets: inherit 10 | -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- 1 | name: pr-validation 2 | 3 | on: 4 | pull_request: 5 | types: [opened, reopened, edited] 6 | # only applies to PRs that want to merge to main 7 | branches: [main] 8 | 9 | jobs: 10 | pr-validation: 11 | uses: salesforcecli/github-workflows/.github/workflows/validatePR.yml@main 12 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint && yarn pretty-quick --staged 5 | node ./scripts/scanTs.js 6 | -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | echo "husky pre-push again" 4 | yarn build && yarn test 5 | -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- 1 | { 2 | "exclude": "test/registry/registryCompleteness.test.ts", 3 | "extensions": [".ts", ".js", ".json"], 4 | "recursive": true, 5 | "reporter": "spec", 6 | "require": "ts-node/register,source-map-support/register,mocha-snap", 7 | "timeout": 20000, 8 | "watch-extensions": "ts", 9 | "watch-files": ["src", "test"] 10 | } 11 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # Dev config folders 2 | /.circleci 3 | /.vscode 4 | /src 5 | /test 6 | /scripts 7 | /contributing 8 | /lib/test 9 | 10 | # Configuration files 11 | .eslintrc.json 12 | .prettierrc 13 | tsconfig.json 14 | 15 | # Ignore artifacts 16 | *.tgz -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "nyc": { 3 | "extends": "@salesforce/dev-config/nyc" 4 | } 5 | } -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | **/__snapshots__/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@salesforce/prettier-config" 2 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | ## Security 2 | 3 | Please report any security issue to [security@salesforce.com](mailto:security@salesforce.com) 4 | as soon as it is discovered. This library limits its runtime dependencies in 5 | order to reduce the total cost of ownership as much as can be, but all consumers 6 | should remain vigilant and have their security stakeholders review all third-party 7 | products (3PP) like this one and their dependencies. 8 | -------------------------------------------------------------------------------- /examples/component-resolution/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deploy", 3 | "version": "1.0.0", 4 | "description": "Code samples for resolving components with the library", 5 | "main": "index.js", 6 | "dependencies": { 7 | "@salesforce/source-deploy-retrieve": "^2.1.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /examples/deploy/README.md: -------------------------------------------------------------------------------- 1 | # Deploying Components 2 | 3 | This module provides code samples for deploying metadata components. 4 | 5 | Deploying components requires resolving source-backed components (see [component resolution](../component-resolution/README.md)). -------------------------------------------------------------------------------- /examples/deploy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deploy", 3 | "version": "1.0.0", 4 | "description": "Code samples for deploying with the library", 5 | "main": "index.js", 6 | "dependencies": { 7 | "@salesforce/source-deploy-retrieve": "^2.1.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /examples/package-creation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "deploy", 3 | "version": "1.0.0", 4 | "description": "Code samples for package creation with the library", 5 | "main": "index.js", 6 | "dependencies": { 7 | "@salesforce/source-deploy-retrieve": "^2.1.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /examples/retrieve/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "retrieve", 3 | "version": "1.0.0", 4 | "description": "Code samples for retrieving with the library", 5 | "main": "index.js", 6 | "dependencies": { 7 | "@salesforce/source-deploy-retrieve": "^2.1.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/nuts/agents/agentsProject/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agentsProject", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /test/nuts/agents/agentsProject64/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "agentsProject", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/config/project-scratch-def.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "shane.mclaughlin company", 3 | "edition": "Developer", 4 | "features": ["EnableSetPasswordInApi"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "mobileSettings": { 10 | "enableS1EncryptedStoragePref2": false 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/classes/replaceStuff.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 55.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/ImageTest.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/zip 5 | added from sfdx plugin 6 | ImageTest 7 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/ImageTest/test-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/nuts/local/replacements/testProj/force-app/main/default/staticresources/ImageTest/test-image.png -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/ImageTest/test-image.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | image/png 5 | Test placeholder 6 | 7 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/Test.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/zip 5 | added from sfdx plugin 6 | Test 7 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/Test/folder/test2.css: -------------------------------------------------------------------------------- 1 | /* This is a placeholder */ 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/force-app/main/default/staticresources/Test/test.css: -------------------------------------------------------------------------------- 1 | /* This is a placeholder */ 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/label.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProj/replacements.txt: -------------------------------------------------------------------------------- 1 | this is a longer comment that's going to replace something in a metadata file 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/config/project-scratch-def.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "shane.mclaughlin company", 3 | "edition": "Developer", 4 | "features": ["EnableSetPasswordInApi"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "mobileSettings": { 10 | "enableS1EncryptedStoragePref2": false 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/force-app/main/default/classes/replaceStuff.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 55.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/force-app/main/default/staticresources/Test.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/zip 5 | added from sfdx plugin 6 | Test 7 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/force-app/main/default/staticresources/Test/folder/test2.css: -------------------------------------------------------------------------------- 1 | /* This is a placeholder */ 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/force-app/main/default/staticresources/Test/test.css: -------------------------------------------------------------------------------- 1 | /* This is a placeholder */ 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/label.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/nuts/local/replacements/testProjWithLabels/replacements.txt: -------------------------------------------------------------------------------- 1 | this is a longer comment that's going to replace something in a metadata file 2 | -------------------------------------------------------------------------------- /test/nuts/scale/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@salesforce/dev-config/tsconfig-test", 3 | "include": ["./**/*.ts"], 4 | "compilerOptions": { 5 | "skipLibCheck": true, 6 | "lib": ["ES2022"], 7 | "target": "ES2022" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/config/project-scratch-def.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "ewillhoit company", 3 | "edition": "Developer", 4 | "features": ["EnableSetPasswordInApi"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "mobileSettings": { 10 | "enableS1EncryptedStoragePref2": false 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/force-app/main/default/classes/DummyClass.clss: -------------------------------------------------------------------------------- 1 | global class DummyClass { 2 | result.success = true; 3 | return result; 4 | } 5 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/force-app/main/default/classes/MyEmailHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 57.0 4 | Active 5 | MyEmailHandler.clz 6 | 7 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/force-app/main/default/enablementMeasureDefinitions/measure.enablementMeasureDefinition: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/force-app/main/default/tabs/Settings.tabsss-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Created by Lightning App Builder 4 | Settings 5 | 6 | Custom19: Wrench 7 | 8 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/package-manifest-2/package-non-default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | label_one 5 | CustomLabel 6 | 7 | 55.0 8 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/package-manifest/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | label_one 5 | CustomLabel 6 | 7 | 55.0 8 | -------------------------------------------------------------------------------- /test/nuts/suggestType/testProj/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "testProj", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "57.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/__snapshots__/verify-md-files.expected/appTemplates/test_template/layout.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/__snapshots__/verify-md-files.expected/appTemplates/test_template/template-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "templateType": "App", 3 | "label": "my test template", 4 | "name": "test_template", 5 | "namespace": null, 6 | "assetVersion": 63.0, 7 | "maxAppCount": null, 8 | "layoutDefinition": "layout.json", 9 | "tags": {}, 10 | "chainDefinitions": [] 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/__snapshots__/verify-md-files.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | force-app 5 | AppFrameworkTemplateBundle 6 | 7 | 62.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/__snapshots__/verify-source-files.expected/force-app/main/default/appTemplates/test_template/layout.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/__snapshots__/verify-source-files.expected/force-app/main/default/appTemplates/test_template/template-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "templateType": "App", 3 | "label": "my test template", 4 | "name": "test_template", 5 | "namespace": null, 6 | "assetVersion": 63.0, 7 | "maxAppCount": null, 8 | "layoutDefinition": "layout.json", 9 | "tags": {}, 10 | "chainDefinitions": [] 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/originalMdapi/appTemplates/test_template/layout.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/originalMdapi/appTemplates/test_template/template-info.json: -------------------------------------------------------------------------------- 1 | { 2 | "templateType": "App", 3 | "label": "my test template", 4 | "name": "test_template", 5 | "namespace": null, 6 | "assetVersion": 63.0, 7 | "maxAppCount": null, 8 | "layoutDefinition": "layout.json", 9 | "tags": {}, 10 | "chainDefinitions": [] 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/appTemplates/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "name": "appTemplatesTestProject", 9 | "namespace": "", 10 | "sourceApiVersion": "62.0" 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-md-files.expected/settings/Bot.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-md-files.expected/settings/LiveAgent.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-md-files.expected/skills/TestSkill.skill: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-source-files.expected/force-app/main/default/settings/Bot.settings-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-source-files.expected/force-app/main/default/settings/LiveAgent.settings-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/__snapshots__/verify-source-files.expected/force-app/main/default/skills/TestSkill.skill-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/originalMdapi/settings/Bot.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/originalMdapi/settings/LiveAgent.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/originalMdapi/skills/TestSkill.skill: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/bots/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customLabels-multiple/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "customLabelsMultipleProject", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "core" 8 | }, 9 | { 10 | "path": "app1" 11 | }, 12 | { 13 | "path": "app2" 14 | } 15 | ], 16 | "sourceApiVersion": "59.0" 17 | } 18 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customLabels-simple/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customObjects-and-children/__snapshots__/verify-md-files-deploy.expected/deployOutput/mdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Broker__c.Title__c 5 | CustomField 6 | 7 | 59.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customObjects-and-children/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Broker__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Everything 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customObjects-and-children/originalMdapi2/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Broker__c.Title__c 5 | CustomField 6 | 7 | 63.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customObjects-and-children/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customTranslationProject/__snapshots__/verify-source-files.expected/force-app/main/default/objectTranslations/customObject__c-es/customField__c.fieldTranslation-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | customField__c 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/customTranslationProject/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "COT/COFT", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "51.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-1-deployment.expected/testOutput/post1/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-1-deployment.expected/testOutput/post1/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-1-deployment.expected/testOutput/post1/destructiveChangesPost.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RedClass 5 | ApexClass 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-1-deployment.expected/testOutput/post1/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneClass 5 | ApexClass 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-no-deployment.expected/testOutput/post1-solo/destructiveChangesPost.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RedClass 5 | ApexClass 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-post-destructive-and-no-deployment.expected/testOutput/post1-solo/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 52.0 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-pre-destructive-and-1-deployment.expected/testOutput/pre1/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-pre-destructive-and-1-deployment.expected/testOutput/pre1/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-pre-destructive-and-1-deployment.expected/testOutput/pre1/destructiveChangesPre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | RedClass 5 | ApexClass 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/1-pre-destructive-and-1-deployment.expected/testOutput/pre1/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneClass 5 | ApexClass 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-post-destructive-and-2-deployments.expected/testOutput/post2/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-post-destructive-and-2-deployments.expected/testOutput/post2/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-post-destructive-and-2-deployments.expected/testOutput/post2/classes/TwoClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class TwoClass { 2 | public TwoClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-post-destructive-and-2-deployments.expected/testOutput/post2/classes/TwoClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-post-destructive-and-2-deployments.expected/testOutput/post2/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneClass 5 | TwoClass 6 | ApexClass 7 | 8 | 52.0 9 | 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-pre-destructive-and-2-deployments.expected/testOutput/pre2/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-pre-destructive-and-2-deployments.expected/testOutput/pre2/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-pre-destructive-and-2-deployments.expected/testOutput/pre2/classes/TwoClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class TwoClass { 2 | public TwoClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/__snapshots__/2-pre-destructive-and-2-deployments.expected/testOutput/pre2/classes/TwoClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/BlueClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class BlueClass { 2 | public BlueClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/BlueClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/RedClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class RedClass { 2 | public RedClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/RedClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/TwoClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class TwoClass { 2 | public TwoClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/originalSource/classes/TwoClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/destructiveCompSets/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "destructiveCompSetsProject", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/Capricorn_Coffee_A1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | meta space a 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Error", 4 | "contentBody": { 5 | "activeViewId": "error", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "error", 9 | "urlPrefix": "error" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Home", 4 | "contentBody": { 5 | "activeViewId": "home", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "home", 9 | "urlPrefix": "" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_A1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_A", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/Capricorn_Coffee_B1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | meta space b 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Error", 4 | "contentBody": { 5 | "activeViewId": "error", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "error", 9 | "urlPrefix": "error" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Home", 4 | "contentBody": { 5 | "activeViewId": "home", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "home", 9 | "urlPrefix": "" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_B1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_B", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-md-files.expected/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_A1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_A", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_B1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_B", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/__snapshots__/verify-source-files.expected/force-app/main/default/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 46.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/Capricorn_Coffee_A1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | meta space a 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Error", 4 | "contentBody": { 5 | "activeViewId": "error", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "error", 9 | "urlPrefix": "error" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Home", 4 | "contentBody": { 5 | "activeViewId": "home", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "home", 9 | "urlPrefix": "" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Login", 4 | "contentBody": { 5 | "activeViewId": "login", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "login-main", 9 | "urlPrefix": "login" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Register", 4 | "contentBody": { 5 | "activeViewId": "register", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "self-register", 9 | "urlPrefix": "SelfRegister" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_A1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_A", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/Capricorn_Coffee_B1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | meta space b 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "mainAppPage", 3 | "type": "sfdc_cms__appPage", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__brandingSet", 4 | "path": "brandingSets" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "languages", 3 | "type": "sfdc_cms__languageSettings", 4 | "path": "_settings" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Check_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Error", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Error", 4 | "contentBody": { 5 | "activeViewId": "error", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "error", 9 | "urlPrefix": "error" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Forgot_Password", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Home", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Home", 4 | "contentBody": { 5 | "activeViewId": "home", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "home", 9 | "urlPrefix": "" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Login", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Login", 4 | "contentBody": { 5 | "activeViewId": "login", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "login-main", 9 | "urlPrefix": "login" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "News_Detail__c", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Register", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__route", 3 | "title": "Register", 4 | "contentBody": { 5 | "activeViewId": "register", 6 | "configurationTags": [], 7 | "pageAccess": "UseParent", 8 | "routeType": "self-register", 9 | "urlPrefix": "SelfRegister" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Service_Not_Available", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Too_Many_Requests", 3 | "type": "sfdc_cms__route", 4 | "path": "routes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Capricorn_Coffee_B1", 3 | "type": "sfdc_cms__site", 4 | "path": "" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/content.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "sfdc_cms__site", 3 | "title": "Capricorn_Coffee_B", 4 | "contentBody": { 5 | "authenticationType": "AUTHENTICATED" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "Build_Your_Own_LWR", 3 | "type": "sfdc_cms__theme", 4 | "path": "themes" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "scopedHeaderAndFooter", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "snaThemeLayout", 3 | "type": "sfdc_cms__themeLayout", 4 | "path": "themeLayouts" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "checkPasswordResetEmail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "error", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "forgotPassword", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "home", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "login", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "newsDetail", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "register", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "serviceNotAvailable", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "apiName": "tooManyRequests", 3 | "type": "sfdc_cms__view", 4 | "path": "views" 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 57.0 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/originalMdapi/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- 1 | 7 | 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/digitalExperienceBundle/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "digitalExperienceBundleProject", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "57.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/.forceignore: -------------------------------------------------------------------------------- 1 | **/*.profile 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/__snapshots__/ignores-source-format-path.expected/testOutput/source-format/main/default/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/__snapshots__/ignores-source-format-path.expected/testOutput/source-format/main/default/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/originalMdapi/classes/OneClass.cls: -------------------------------------------------------------------------------- 1 | public with sharing class OneClass { 2 | public OneClass() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/originalMdapi/classes/OneClass.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 59.0 4 | Active 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/originalMdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OneClass 5 | ApexClass 6 | 7 | 8 | Admin 9 | Profile 10 | 11 | 60.0 12 | 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/originalMdapi/profiles/Admin.profile: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Salesforce 5 | 6 | true 7 | AIViewInsightObjects 8 | 9 | 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/forceignore/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "forceignore", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/genAiFunctions/__snapshots__/verify-md-files.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | force-app 5 | GenAiFunction 6 | 7 | 59.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/genAiFunctions/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/legacySuffixSupport/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/classes/FooBar.cls: -------------------------------------------------------------------------------- 1 | public with sharing class FooBar { 2 | public FooBar() { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/classes/FooBar.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/classes/FooBarTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/lwc/mycomponent/mycomponent.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/lwc/mycomponent/mycomponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class Mycomponent extends LightningElement {} 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-foo-bar-app.expected/foo-bar/app/lwc/mycomponent/mycomponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | false 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-force-app.expected/force-app/main/default/apex/MyTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-force-app.expected/force-app/main/default/apex/force.cls: -------------------------------------------------------------------------------- 1 | public with sharing class force { 2 | public force() { 3 | // ss- test ss s s 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-force-app.expected/force-app/main/default/apex/force.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-force-app.expected/force-app/main/default/tabs/MyObj__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom9: Lightning 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/FooBar.cls: -------------------------------------------------------------------------------- 1 | public with sharing class FooBar { 2 | public FooBar() { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/FooBar.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/FooBarTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/MyAppTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/MyTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/force.cls: -------------------------------------------------------------------------------- 1 | public with sharing class force { 2 | public force() { 3 | // ss- test ss s s 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/force.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/my.cls: -------------------------------------------------------------------------------- 1 | public with sharing class my { 2 | public my() { 3 | // - ssss 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/classes/my.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/lwc/mycomponent/mycomponent.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/lwc/mycomponent/mycomponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class Mycomponent extends LightningElement {} 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/lwc/mycomponent/mycomponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | false 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-md-files-after-recomposing.expected/tabs/MyObj__c.tab: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom9: Lightning 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-my-app.expected/my-app/apex/MyAppTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-my-app.expected/my-app/apex/my.cls: -------------------------------------------------------------------------------- 1 | public with sharing class my { 2 | public my() { 3 | // - ssss 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/__snapshots__/verify-my-app.expected/my-app/apex/my.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/classes/FooBar.cls: -------------------------------------------------------------------------------- 1 | public with sharing class FooBar { 2 | public FooBar() { 3 | 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/classes/FooBar.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/classes/FooBarTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/lwc/mycomponent/mycomponent.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/lwc/mycomponent/mycomponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement } from 'lwc'; 2 | 3 | export default class Mycomponent extends LightningElement {} 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/foo-bar/app/lwc/mycomponent/mycomponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50.0 4 | false 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/force-app/main/default/apex/MyTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/force-app/main/default/apex/force.cls: -------------------------------------------------------------------------------- 1 | public with sharing class force { 2 | public force() { 3 | // ss- test ss s s 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/force-app/main/default/apex/force.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/force-app/main/default/tabs/MyObj__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom9: Lightning 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/my-app/apex/MyAppTest.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/my-app/apex/my.cls: -------------------------------------------------------------------------------- 1 | public with sharing class my { 2 | public my() { 3 | // - ssss 4 | } 5 | } -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/my-app/apex/my.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/mpdWithLabels/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | }, 7 | { 8 | "path": "my-app" 9 | }, 10 | { 11 | "path": "foo-bar/app" 12 | } 13 | ], 14 | "namespace": "", 15 | "sourceApiVersion": "50.0" 16 | } 17 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/email/Top_Level_Folder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | Top Level Folder 5 | ReadWrite 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/email/Top_Level_Folder/Template_in_folder.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/email/Top_Level_Folder/Template_in_folder.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/email/unfiled$public/Top_level_email.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/email/unfiled$public/Top_level_email.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-md-files.expected/reports/TopFolder/ChildFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Child Folder 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/email/Top_Level_Folder.emailFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | Top Level Folder 5 | ReadWrite 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/email/Top_Level_Folder/Template_in_folder.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/email/Top_Level_Folder/Template_in_folder.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/email/unfiled$public/Top_level_email.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/email/unfiled$public/Top_level_email.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/__snapshots__/verify-source-files.expected/force-app/main/default/reports/TopFolder/ChildFolder.reportFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Child Folder 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/originalMdapi/email/Top_Level_Folder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | Top Level Folder 5 | ReadWrite 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/originalMdapi/email/Top_Level_Folder/Template_in_folder.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/originalMdapi/email/Top_Level_Folder/Template_in_folder.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/originalMdapi/email/unfiled$public/Top_level_email.email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/nestedFolders/originalMdapi/email/unfiled$public/Top_level_email.email -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/originalMdapi/reports/TopFolder/ChildFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Child Folder 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/nestedFolders/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "nestedFolders", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-md-files.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dreamhouse 5 | PermissionSet 6 | 7 | 60.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/applicationVisibilities/Dreamhouse.applicationVisibility-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Dreamhouse 4 | true 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/classAccesses/PagedResult.classAccess-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PagedResult 4 | true 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/classAccesses/PropertyController.classAccess-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PropertyController 4 | true 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/classAccesses/SampleDataController.classAccess-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | SampleDataController 4 | true 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/dreamhouse.permissionset-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Broker__c.Email__c.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Broker__c.Email__c 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Broker__c.Phone__c.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Broker__c.Phone__c 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Broker__c.Title__c.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Broker__c.Title__c 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Property__c.Name.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Property__c.Name 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Property__c.Zip__c.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Property__c.Zip__c 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Broker__c.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Broker__c 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property_Explorer.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property_Explorer 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property_Finder.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property_Finder 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property__c.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property__c 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Settings.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Settings 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/originalMdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dreamhouse 5 | PermissionSet 6 | 7 | 59.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-PermSet/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "variantTest", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sourceBehaviorOptions": ["decomposePermissionSetBeta"], 11 | "sfdcLoginUrl": "https://login.salesforce.com", 12 | "sourceApiVersion": "60.0" 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposeLabels/__snapshots__/verify-source-files.expected/force-app/main/default/labels/DeleteMe.label-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DeleteMe 4 | en_US 5 | true 6 | DeleteMe 7 | Test 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposeLabels/__snapshots__/verify-source-files.expected/force-app/main/default/labels/KeepMe1.label-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | KeepMe1 4 | en_US 5 | true 6 | KeepMe1 7 | Test 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposeLabels/__snapshots__/verify-source-files.expected/force-app/main/default/labels/KeepMe2.label-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | KeepMe2 4 | en_US 5 | true 6 | KeepMe2 7 | Test 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposeLabels/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "variantTest", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "60.0", 12 | "sourceBehaviorOptions": ["decomposeCustomLabelsBeta2"] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedESR/originalMdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | * 5 | ExternalServiceRegistration 6 | 7 | 61.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedESR/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "decomposedPermissionSetBeta2", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sourceBehaviorOptions": ["decomposeExternalServiceRegistrationBeta"], 11 | "sfdcLoginUrl": "https://login.salesforce.com", 12 | "sourceApiVersion": "60.0" 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/__snapshots__/verify-md-files.expected/customPermissions/MYCP2.customPermission: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/__snapshots__/verify-source-files.expected/force-app/main/default/customPermissions/MYCP2.customPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/ebikes/ebikes.permissionset-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/ebikes/objectSettings/Product_Explorer.objectSettings-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Product_Explorer 5 | Visible 6 | 7 | 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/withCustomPermission/withCustomPermission.permissionset-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/originalMdapi/customPermissions/MYCP2.customPermission: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-decomposedPS2/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "decomposedPermissionSetBeta2", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sourceBehaviorOptions": ["decomposePermissionSetBeta2"], 11 | "sfdcLoginUrl": "https://login.salesforce.com", 12 | "sourceApiVersion": "60.0" 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-md-files.expected/groups/Group1.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-md-files.expected/groups/Group2.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-md-files.expected/groups/Internal_Users_Public_Group.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Group1.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Group2.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Internal_Users_Public_Group.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/sharingRules/account/account.sharingRules-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/originalMdapi/groups/Group1.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/originalMdapi/groups/Group2.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/originalMdapi/groups/Internal_Users_Public_Group.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-sharingRules/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sharingRules-decomposed", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0", 12 | "sourceBehaviorOptions": ["decomposeSharingRulesBeta"] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow-mpd/README.md: -------------------------------------------------------------------------------- 1 | This is the `decomposedWorkflow` equivalent of which uses 2 | 3 | These files didn't deploy properly using any CLI version, so I had to manually put them in their appropriate files/folders. 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow-mpd/another-package/workflows/Case/Case.workflow-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow-mpd/force-app/main/default/workflows/Case/Case.workflow-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow-mpd/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "namespace": "", 3 | "packageDirectories": [ 4 | { 5 | "default": true, 6 | "path": "force-app" 7 | }, 8 | { 9 | "path": "another-package" 10 | } 11 | ], 12 | "sfdcLoginUrl": "https://login.salesforce.com", 13 | "sourceApiVersion": "60.0", 14 | "sourceBehaviorOptions": ["decomposeWorkflowBeta"] 15 | } 16 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/__snapshots__/verify-md-files.expected/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Account/fields/AccountNumber.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AccountNumber 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Account/fields/AccountSource.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AccountSource 4 | false 5 | Picklist 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/workflows/Account/Account.workflow-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/originalMdapi/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/preset-workflow/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "workflowVariantTest", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "60.0", 12 | "sourceBehaviorOptions": ["decomposeWorkflowBeta"] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-md-files-SCR.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | account.AcctCBS_toAllInternal 5 | SharingCriteriaRule 6 | 7 | 52.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-md-files.expected/groups/Group1.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-md-files.expected/groups/Group2.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-md-files.expected/groups/Internal_Users_Public_Group.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Group1.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Group2.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/__snapshots__/verify-source-files.expected/force-app/main/default/groups/Internal_Users_Public_Group.group-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/originalMdapi/groups/Group1.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Group1 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/originalMdapi/groups/Group2.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | Group2 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/originalMdapi/groups/Internal_Users_Public_Group.group: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Internal Users Public Group 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/originalMdapi/roles/role1.role: -------------------------------------------------------------------------------- 1 | 2 | 3 | Edit 4 | Edit 5 | false 6 | role1 7 | Edit 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/sharingRules/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sharingRules", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/singleCustomFieldRetrieve/mdapiOutput/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Broker__c.Email__c 5 | CustomField 6 | 7 | 59.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/singleCustomFieldRetrieve/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/leafletjs.resource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/source-deploy-retrieve/d0196bc54f4b198d4b83b97f125f5c3ed20401d8/test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/leafletjs.resource -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/leafletjs.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/zip 5 | JS library that renders maps 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/sample_data_brokers.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/json 5 | Sample data used to initialize Broker__c records 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/sample_data_contacts.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/json 5 | Sample data used to initialize Contact records 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/originalMdapi/staticresources/sample_data_properties.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | application/json 5 | Sample data used to initialize Property__c records 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/staticResource/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-md-files.expected/territory2Models/SCW_Territory_Model/SCW_Territory_Model.territory2Model: -------------------------------------------------------------------------------- 1 | 2 | 3 | SCW Territory Model 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-md-files.expected/territory2Types/City.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | City 4 | 10 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-md-files.expected/territory2Types/Country.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | Country 4 | 1 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-md-files.expected/territory2Types/State.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | State 4 | 5 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-source-files.expected/force-app/main/default/territory2Models/SCW_Territory_Model/SCW_Territory_Model.territory2Model-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | SCW Territory Model 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-source-files.expected/force-app/main/default/territory2Types/City.territory2Type-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | City 4 | 10 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-source-files.expected/force-app/main/default/territory2Types/Country.territory2Type-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Country 4 | 1 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/__snapshots__/verify-source-files.expected/force-app/main/default/territory2Types/State.territory2Type-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | State 4 | 5 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/originalMdapi/territory2Models/SCW_Territory_Model/SCW_Territory_Model.territory2Model: -------------------------------------------------------------------------------- 1 | 2 | 3 | SCW Territory Model 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/originalMdapi/territory2Types/City.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | City 4 | 10 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/originalMdapi/territory2Types/Country.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | Country 4 | 1 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/originalMdapi/territory2Types/State.territory2Type: -------------------------------------------------------------------------------- 1 | 2 | 3 | State 4 | 5 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/territory/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "territoryProject", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-md-files.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dreamhouse 5 | PermissionSet 6 | 7 | 60.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/fieldPermissions/Property__c.Name.fieldPermission-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Property__c.Name 5 | true 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Broker__c.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Broker__c 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property_Explorer.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property_Explorer 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property_Finder.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property_Finder 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Property__c.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Property__c 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/__snapshots__/verify-source-files.expected/force-app/main/default/permissionsets/dreamhouse/tabSettings/Settings.tabSetting-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Settings 4 | Visible 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-raw-PermSet/originalMdapi/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dreamhouse 5 | PermissionSet 6 | 7 | 59.0 8 | 9 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-workflow/__snapshots__/verify-md-files.expected/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-workflow/__snapshots__/verify-source-files.expected/force-app/main/default/workflows/Account/Account.workflow-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/variant-workflow/originalMdapi/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | OpsPandaWaveApp_v43 5 | WaveXMD 6 | WaveTemplateBundle 7 | 8 | 59.0 9 | 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/OpsPandaWaveApp_v43/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/OpsPandaWaveApp_v43/dataset_files/Opportunities_Closed_Won_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/OpsPandaWaveApp_v43/external_files/OpsPanda_Sales_Capacity_Plan_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/OpsPandaWaveApp_v43/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": null, 3 | "featuredAssets": {}, 4 | "label": null, 5 | "name": null, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/OpsPandaWaveApp_v43/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "title": "Do you want to create the minimum viable app?", 5 | "variables": [ 6 | { 7 | "name": "simplePath" 8 | } 9 | ] 10 | } 11 | ], 12 | "displayMessages": [] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/external_files/Regional_Sales_Info.csv: -------------------------------------------------------------------------------- 1 | Billing Country,Sum of Amount 2 | USA,89564410 3 | Canada,88837515 -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/external_files/Regional_Sales_Info_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WaveXMD", 3 | "label": "WaveXMD", 4 | "description": null, 5 | "featuredAssets": {}, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/releaseNotes.html: -------------------------------------------------------------------------------- 1 |

Release Notes for Template

2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/template-to-app-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-md-files.expected/waveTemplates/WaveXMD/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [], 3 | "displayMessages": [] 4 | } 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/OpsPandaWaveApp_v43/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/OpsPandaWaveApp_v43/dataset_files/Opportunities_Closed_Won_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/OpsPandaWaveApp_v43/external_files/OpsPanda_Sales_Capacity_Plan_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/OpsPandaWaveApp_v43/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": null, 3 | "featuredAssets": {}, 4 | "label": null, 5 | "name": null, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/OpsPandaWaveApp_v43/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "title": "Do you want to create the minimum viable app?", 5 | "variables": [ 6 | { 7 | "name": "simplePath" 8 | } 9 | ] 10 | } 11 | ], 12 | "displayMessages": [] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/external_files/Regional_Sales_Info.csv: -------------------------------------------------------------------------------- 1 | Billing Country,Sum of Amount 2 | USA,89564410 3 | Canada,88837515 -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/external_files/Regional_Sales_Info_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WaveXMD", 3 | "label": "WaveXMD", 4 | "description": null, 5 | "featuredAssets": {}, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/releaseNotes.html: -------------------------------------------------------------------------------- 1 |

Release Notes for Template

2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/template-to-app-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/__snapshots__/verify-source-files.expected/force-app/main/default/waveTemplates/WaveXMD/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [], 3 | "displayMessages": [] 4 | } 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/OpsPandaWaveApp_v43/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/OpsPandaWaveApp_v43/dataset_files/Opportunities_Closed_Won_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/OpsPandaWaveApp_v43/external_files/OpsPanda_Sales_Capacity_Plan_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/OpsPandaWaveApp_v43/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "description": null, 3 | "featuredAssets": {}, 4 | "label": null, 5 | "name": null, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/OpsPandaWaveApp_v43/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [ 3 | { 4 | "title": "Do you want to create the minimum viable app?", 5 | "variables": [ 6 | { 7 | "name": "simplePath" 8 | } 9 | ] 10 | } 11 | ], 12 | "displayMessages": [] 13 | } 14 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/app-to-template-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/external_files/Regional_Sales_Info.csv: -------------------------------------------------------------------------------- 1 | Billing Country,Sum of Amount 2 | USA,89564410 3 | Canada,88837515 -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/external_files/Regional_Sales_Info_XMD.json: -------------------------------------------------------------------------------- 1 | { 2 | "showDetailsDefaultFields": [], 3 | "dates": [], 4 | "dimensions": [], 5 | "derivedDimensions": [], 6 | "measures": [], 7 | "derivedMeasures": [], 8 | "organizations": [] 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/folder.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "WaveXMD", 3 | "label": "WaveXMD", 4 | "description": null, 5 | "featuredAssets": {}, 6 | "shares": [] 7 | } 8 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/releaseNotes.html: -------------------------------------------------------------------------------- 1 |

Release Notes for Template

2 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/template-to-app-rules.json: -------------------------------------------------------------------------------- 1 | { 2 | "constants": [], 3 | "macros": [], 4 | "rules": [] 5 | } 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/originalMdapi/waveTemplates/WaveXMD/ui.json: -------------------------------------------------------------------------------- 1 | { 2 | "pages": [], 3 | "displayMessages": [] 4 | } 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/waveTemplateBundle/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/workflow/__snapshots__/verify-md-files.expected/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/workflow/__snapshots__/verify-source-files.expected/force-app/main/default/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/workflow/originalMdapi/email/emailtest/MarketingProductInquiryResponse.email: -------------------------------------------------------------------------------- 1 | Dear {!Lead.Name}, 2 | 3 | Thank you for your inquiry about GenWatt's products. 4 | 5 | A representative will contact you shortly. 6 | 7 | Thanks, 8 | The GenWatt Team -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/workflow/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "workflowProject", 3 | "namespace": "", 4 | "packageDirectories": [ 5 | { 6 | "default": true, 7 | "path": "force-app" 8 | } 9 | ], 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "52.0" 12 | } 13 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objectTranslations/Contact-en_US/Contact-en_US.objectTranslation-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/AccountId.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AccountId 4 | true 5 | Lookup 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/AssistantName.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AssistantName 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/AssistantPhone.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | AssistantPhone 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Birthdate.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Birthdate 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/CleanStatus.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CleanStatus 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Department.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Department 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Description.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Description 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/DoNotCall.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DoNotCall 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Email.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Fax.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Fax 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/GenderIdentity.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | GenderIdentity 4 | false 5 | Picklist 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/HasOptedOutOfEmail.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HasOptedOutOfEmail 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/HasOptedOutOfFax.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HasOptedOutOfFax 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/HomePhone.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | HomePhone 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/IndividualId.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | IndividualId 4 | false 5 | Lookup 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Jigsaw.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Jigsaw 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/LastCURequestDate.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LastCURequestDate 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/LastCUUpdateDate.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LastCUUpdateDate 4 | 5 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/LeadSource.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LeadSource 4 | false 5 | Picklist 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/MailingAddress.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MailingAddress 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/MobilePhone.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | MobilePhone 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Name.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Name 4 | true 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/OtherAddress.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OtherAddress 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/OtherPhone.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OtherPhone 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/OwnerId.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OwnerId 4 | true 5 | Lookup 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Phone.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Phone 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Pronouns.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Pronouns 4 | false 5 | Picklist 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/ReportsToId.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ReportsToId 4 | false 5 | Lookup 6 | 7 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/__snapshots__/verify-source-files.expected/force-app/main/default/objects/Contact/fields/Title.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Title 4 | false 5 | 6 | -------------------------------------------------------------------------------- /test/snapshot/sampleProjects/xmlComments/sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "default": true, 5 | "path": "force-app" 6 | } 7 | ], 8 | "sourceApiVersion": "59.0" 9 | } 10 | -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "theme": "default", 3 | "excludePrivate": true, 4 | "excludeProtected": true, 5 | "entryPoints": "src" 6 | } 7 | --------------------------------------------------------------------------------