├── .editorconfig ├── .eslintignore ├── .eslintrc.cjs ├── .git2gus └── config.json ├── .github ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── no-response.yml └── workflows │ ├── automerge.yml │ ├── create-github-release.yml │ ├── devScripts.yml │ ├── failureNotifications.yml │ ├── notify-slack-on-pr-open.yml │ ├── onRelease.yml │ ├── test.yml │ └── validate-pr.yml ├── .gitignore ├── .husky ├── commit-msg ├── pre-commit └── pre-push ├── .mocharc.json ├── .nycrc ├── .prettierignore ├── .prettierrc.json ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── bin ├── dev.cmd ├── dev.js ├── run.cmd └── run.js ├── command-snapshot.json ├── commitlint.config.cjs ├── messages ├── cancel.md ├── deploy.md ├── deployCommand.md ├── flags.validation.md ├── md.cancel.md ├── md.deploy.md ├── md.deployreport.md ├── md.retrieve.md ├── pull.md ├── push.md ├── report.md ├── retrieve.md ├── spinner.md ├── stash.md ├── status.md └── tracking.md ├── package.json ├── schemas ├── force-source-deploy-cancel.json ├── force-source-deploy-report.json ├── force-source-deploy.json ├── force-source-pull.json ├── force-source-push.json ├── force-source-retrieve.json ├── force-source-status.json └── force.json ├── src ├── commands │ ├── force.ts │ └── force │ │ ├── mdapi │ │ ├── deploy.ts │ │ ├── deploy │ │ │ ├── cancel.ts │ │ │ └── report.ts │ │ ├── retrieve.ts │ │ └── retrieve │ │ │ └── report.ts │ │ └── source │ │ ├── deploy.ts │ │ ├── deploy │ │ ├── cancel.ts │ │ └── report.ts │ │ ├── pull.ts │ │ ├── push.ts │ │ ├── retrieve.ts │ │ └── status.ts ├── coverageUtils.ts ├── deployCommand.ts ├── formatters │ ├── codeCoverageTable.ts │ ├── deployCancelResultFormatter.ts │ ├── deployProgressBarFormatter.ts │ ├── deployProgressStatusFormatter.ts │ ├── deployReportResultFormatter.ts │ ├── deployResultFormatter.ts │ ├── mdapi │ │ ├── mdDeployAsyncResultFormatter.ts │ │ ├── mdDeployResultFormatter.ts │ │ └── retrieveResultFormatter.ts │ ├── progressFormatter.ts │ ├── resultFormatter.ts │ ├── retrieveFormatter.ts │ ├── retrieveResultFormatter.ts │ └── source │ │ ├── deployAsyncResultFormatter.ts │ │ ├── pullFormatter.ts │ │ ├── pushResultFormatter.ts │ │ └── statusFormatter.ts ├── index.ts ├── promiseQueue.ts ├── sourceCommand.ts ├── stash.ts ├── trackingFunctions.ts └── types.ts ├── test ├── .eslintrc.cjs ├── commands │ ├── mdapi │ │ ├── cancel.test.ts │ │ ├── retrieve.test.ts │ │ └── retrieveReport.test.ts │ └── source │ │ ├── cancel.test.ts │ │ ├── deploy.test.ts │ │ ├── deployCommand.test.ts │ │ ├── deployResponses.ts │ │ ├── progressBarFormatter.test.ts │ │ ├── report.test.ts │ │ ├── retrieve.test.ts │ │ ├── retrieveResponses.ts │ │ └── testConsts.ts ├── coverageUtils.test.ts ├── formatters │ ├── deployProgressStatusFormatter.ts │ ├── deployResultFormatter.test.ts │ ├── mdDeployResultFormatter.test.ts │ ├── pullFormatter.test.ts │ ├── pushResultFormatter.test.ts │ ├── retrieveResultFormatter.test.ts │ └── statusResultFormatter.test.ts ├── nuts │ ├── README.md │ ├── REST │ │ ├── deploy.mpd.nut.ts │ │ └── deploy.nut.ts │ ├── customLabelProject │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── labels │ │ │ │ └── CustomLabels.labels-meta.xml │ │ └── sfdx-project.json │ ├── customTranslationProject │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── 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 │ │ └── sfdx-project.json │ ├── deployDestructive.nut.ts │ ├── digitalExperienceBundle │ │ ├── constants.ts │ │ ├── deb.manifest.nut.ts │ │ ├── deb.metadata.nut.ts │ │ ├── deb.sourcepath.nut.ts │ │ ├── deb.tracking.nut.ts │ │ ├── helper.ts │ │ ├── project │ │ │ ├── .eslintignore │ │ │ ├── .forceignore │ │ │ ├── .gitignore │ │ │ ├── .husky │ │ │ │ └── pre-commit │ │ │ ├── .prettierignore │ │ │ ├── .prettierrc │ │ │ ├── .vscode │ │ │ │ ├── extensions.json │ │ │ │ ├── launch.json │ │ │ │ └── settings.json │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── project-scratch-def.json │ │ │ ├── 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 │ │ │ │ │ │ └── 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 │ │ │ ├── jest.config.js │ │ │ ├── package.json │ │ │ ├── scripts │ │ │ │ ├── apex │ │ │ │ │ └── hello.apex │ │ │ │ └── soql │ │ │ │ │ └── account.soql │ │ │ └── sfdx-project.json │ │ └── store │ │ │ ├── components │ │ │ ├── sfdc_cms__route │ │ │ │ └── Document_Detail__c │ │ │ │ │ ├── _meta.json │ │ │ │ │ └── content.json │ │ │ └── sfdc_cms__view │ │ │ │ └── documentDetail │ │ │ │ ├── _meta.json │ │ │ │ └── content.json │ │ │ └── manifests │ │ │ ├── all-de-of-deb-a-package.xml │ │ │ ├── all-de-package.xml │ │ │ ├── all-debs-package.xml │ │ │ ├── de-document-detail-page-a-package.xml │ │ │ ├── de-view-home-of-deb-a-package.xml │ │ │ ├── de-view-home-of-deb-b-package.xml │ │ │ ├── empty-package.xml │ │ │ ├── full-site-deb-a-and-b-package.xml │ │ │ └── just-deb-a-package.xml │ ├── folderTypes.nut.ts │ ├── force.nut.ts │ ├── generateNuts.ts │ ├── mdapi.nut.ts │ ├── nestedLWCProject │ │ ├── .eslintignore │ │ ├── .forceignore │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── README.md │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ └── lwc │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── cmpA │ │ │ │ ├── cmpA.html │ │ │ │ ├── cmpA.js │ │ │ │ └── cmpA.js-meta.xml │ │ │ │ └── folder1 │ │ │ │ └── lwc │ │ │ │ └── cmpB │ │ │ │ ├── cmpB.html │ │ │ │ ├── cmpB.js │ │ │ │ └── cmpB.js-meta.xml │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── sfdx-project.json │ │ └── yarn.lock │ ├── nestedLwc.nut.ts │ ├── partialBundleDelete.nut.ts │ ├── partialBundleDeleteProject │ │ ├── .eslintignore │ │ ├── .forceignore │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── force-app │ │ │ └── main │ │ │ │ └── default │ │ │ │ ├── appMenus │ │ │ │ └── AppSwitcher.appMenu-meta.xml │ │ │ │ ├── audience │ │ │ │ └── Default_source-plugin-nut.audience-meta.xml │ │ │ │ ├── aura │ │ │ │ ├── forgotPassword │ │ │ │ │ ├── forgotPassword.cmp │ │ │ │ │ ├── forgotPassword.cmp-meta.xml │ │ │ │ │ ├── forgotPassword.css │ │ │ │ │ ├── forgotPassword.design │ │ │ │ │ ├── forgotPasswordController.js │ │ │ │ │ └── forgotPasswordHelper.js │ │ │ │ ├── loginForm │ │ │ │ │ ├── loginForm.cmp │ │ │ │ │ ├── loginForm.cmp-meta.xml │ │ │ │ │ ├── loginForm.css │ │ │ │ │ ├── loginForm.design │ │ │ │ │ ├── loginFormController.js │ │ │ │ │ └── loginFormHelper.js │ │ │ │ ├── selfRegister │ │ │ │ │ ├── selfRegister.cmp │ │ │ │ │ ├── selfRegister.cmp-meta.xml │ │ │ │ │ ├── selfRegister.css │ │ │ │ │ ├── selfRegister.design │ │ │ │ │ ├── selfRegisterController.js │ │ │ │ │ └── selfRegisterHelper.js │ │ │ │ ├── setExpId │ │ │ │ │ ├── setExpId.evt │ │ │ │ │ └── setExpId.evt-meta.xml │ │ │ │ └── setStartUrl │ │ │ │ │ ├── setStartUrl.evt │ │ │ │ │ └── setStartUrl.evt-meta.xml │ │ │ │ ├── classes │ │ │ │ ├── ChangePasswordController.cls │ │ │ │ ├── ChangePasswordController.cls-meta.xml │ │ │ │ ├── ChangePasswordControllerTest.cls │ │ │ │ ├── ChangePasswordControllerTest.cls-meta.xml │ │ │ │ ├── CommunitiesLandingController.cls │ │ │ │ ├── CommunitiesLandingController.cls-meta.xml │ │ │ │ ├── CommunitiesLandingControllerTest.cls │ │ │ │ ├── CommunitiesLandingControllerTest.cls-meta.xml │ │ │ │ ├── CommunitiesLoginController.cls │ │ │ │ ├── CommunitiesLoginController.cls-meta.xml │ │ │ │ ├── CommunitiesLoginControllerTest.cls │ │ │ │ ├── CommunitiesLoginControllerTest.cls-meta.xml │ │ │ │ ├── CommunitiesSelfRegConfirmController.cls │ │ │ │ ├── CommunitiesSelfRegConfirmController.cls-meta.xml │ │ │ │ ├── CommunitiesSelfRegConfirmControllerTest.cls │ │ │ │ ├── CommunitiesSelfRegConfirmControllerTest.cls-meta.xml │ │ │ │ ├── CommunitiesSelfRegController.cls │ │ │ │ ├── CommunitiesSelfRegController.cls-meta.xml │ │ │ │ ├── CommunitiesSelfRegControllerTest.cls │ │ │ │ ├── CommunitiesSelfRegControllerTest.cls-meta.xml │ │ │ │ ├── ForgotPasswordController.cls │ │ │ │ ├── ForgotPasswordController.cls-meta.xml │ │ │ │ ├── ForgotPasswordControllerTest.cls │ │ │ │ ├── ForgotPasswordControllerTest.cls-meta.xml │ │ │ │ ├── LightningForgotPasswordController.cls │ │ │ │ ├── LightningForgotPasswordController.cls-meta.xml │ │ │ │ ├── LightningForgotPasswordControllerTest.cls │ │ │ │ ├── LightningForgotPasswordControllerTest.cls-meta.xml │ │ │ │ ├── LightningLoginFormController.cls │ │ │ │ ├── LightningLoginFormController.cls-meta.xml │ │ │ │ ├── LightningLoginFormControllerTest.cls │ │ │ │ ├── LightningLoginFormControllerTest.cls-meta.xml │ │ │ │ ├── LightningSelfRegisterController.cls │ │ │ │ ├── LightningSelfRegisterController.cls-meta.xml │ │ │ │ ├── LightningSelfRegisterControllerTest.cls │ │ │ │ ├── LightningSelfRegisterControllerTest.cls-meta.xml │ │ │ │ ├── MicrobatchSelfRegController.cls │ │ │ │ ├── MicrobatchSelfRegController.cls-meta.xml │ │ │ │ ├── MicrobatchSelfRegControllerTest.cls │ │ │ │ ├── MicrobatchSelfRegControllerTest.cls-meta.xml │ │ │ │ ├── MyProfilePageController.cls │ │ │ │ ├── MyProfilePageController.cls-meta.xml │ │ │ │ ├── MyProfilePageControllerTest.cls │ │ │ │ ├── MyProfilePageControllerTest.cls-meta.xml │ │ │ │ ├── SiteLoginController.cls │ │ │ │ ├── SiteLoginController.cls-meta.xml │ │ │ │ ├── SiteLoginControllerTest.cls │ │ │ │ ├── SiteLoginControllerTest.cls-meta.xml │ │ │ │ ├── SiteRegisterController.cls │ │ │ │ ├── SiteRegisterController.cls-meta.xml │ │ │ │ ├── SiteRegisterControllerTest.cls │ │ │ │ └── SiteRegisterControllerTest.cls-meta.xml │ │ │ │ ├── components │ │ │ │ ├── SiteFooter.component │ │ │ │ ├── SiteFooter.component-meta.xml │ │ │ │ ├── SiteHeader.component │ │ │ │ ├── SiteHeader.component-meta.xml │ │ │ │ ├── SiteLogin.component │ │ │ │ ├── SiteLogin.component-meta.xml │ │ │ │ ├── SitePoweredBy.component │ │ │ │ └── SitePoweredBy.component-meta.xml │ │ │ │ ├── digitalExperienceConfigs │ │ │ │ └── source_plugin_nut1.digitalExperienceConfig-meta.xml │ │ │ │ ├── digitalExperiences │ │ │ │ └── site │ │ │ │ │ └── source_plugin_nut1 │ │ │ │ │ ├── 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 │ │ │ │ │ └── source_plugin_nut1 │ │ │ │ │ │ ├── _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 │ │ │ │ │ │ └── es.json │ │ │ │ │ ├── home │ │ │ │ │ │ ├── _meta.json │ │ │ │ │ │ └── content.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 │ │ │ │ │ └── source_plugin_nut1.digitalExperience-meta.xml │ │ │ │ ├── navigationMenus │ │ │ │ └── SFDC_Default_Navigation_source-plugin-nut.navigationMenu-meta.xml │ │ │ │ ├── networkBranding │ │ │ │ ├── cbsource_plugin_nut.networkBranding │ │ │ │ └── cbsource_plugin_nut.networkBranding-meta.xml │ │ │ │ ├── networks │ │ │ │ └── source-plugin-nut.network-meta.xml │ │ │ │ ├── pages │ │ │ │ ├── AnswersHome.page │ │ │ │ ├── AnswersHome.page-meta.xml │ │ │ │ ├── BandwidthExceeded.page │ │ │ │ ├── BandwidthExceeded.page-meta.xml │ │ │ │ ├── ChangePassword.page │ │ │ │ ├── ChangePassword.page-meta.xml │ │ │ │ ├── CommunitiesLanding.page │ │ │ │ ├── CommunitiesLanding.page-meta.xml │ │ │ │ ├── CommunitiesLogin.page │ │ │ │ ├── CommunitiesLogin.page-meta.xml │ │ │ │ ├── CommunitiesSelfReg.page │ │ │ │ ├── CommunitiesSelfReg.page-meta.xml │ │ │ │ ├── CommunitiesSelfRegConfirm.page │ │ │ │ ├── CommunitiesSelfRegConfirm.page-meta.xml │ │ │ │ ├── CommunitiesTemplate.page │ │ │ │ ├── CommunitiesTemplate.page-meta.xml │ │ │ │ ├── Exception.page │ │ │ │ ├── Exception.page-meta.xml │ │ │ │ ├── FileNotFound.page │ │ │ │ ├── FileNotFound.page-meta.xml │ │ │ │ ├── ForgotPassword.page │ │ │ │ ├── ForgotPassword.page-meta.xml │ │ │ │ ├── ForgotPasswordConfirm.page │ │ │ │ ├── ForgotPasswordConfirm.page-meta.xml │ │ │ │ ├── IdeasHome.page │ │ │ │ ├── IdeasHome.page-meta.xml │ │ │ │ ├── InMaintenance.page │ │ │ │ ├── InMaintenance.page-meta.xml │ │ │ │ ├── MicrobatchSelfReg.page │ │ │ │ ├── MicrobatchSelfReg.page-meta.xml │ │ │ │ ├── MyProfilePage.page │ │ │ │ ├── MyProfilePage.page-meta.xml │ │ │ │ ├── SiteLogin.page │ │ │ │ ├── SiteLogin.page-meta.xml │ │ │ │ ├── SiteRegister.page │ │ │ │ ├── SiteRegister.page-meta.xml │ │ │ │ ├── SiteRegisterConfirm.page │ │ │ │ ├── SiteRegisterConfirm.page-meta.xml │ │ │ │ ├── SiteTemplate.page │ │ │ │ ├── SiteTemplate.page-meta.xml │ │ │ │ ├── StdExceptionTemplate.page │ │ │ │ ├── StdExceptionTemplate.page-meta.xml │ │ │ │ ├── Unauthorized.page │ │ │ │ ├── Unauthorized.page-meta.xml │ │ │ │ ├── UnderConstruction.page │ │ │ │ └── UnderConstruction.page-meta.xml │ │ │ │ ├── profiles │ │ │ │ ├── Admin.profile-meta.xml │ │ │ │ └── source-plugin-nut Profile.profile-meta.xml │ │ │ │ ├── sites │ │ │ │ └── source_plugin_nut.site-meta.xml │ │ │ │ └── staticresources │ │ │ │ ├── SiteSamples.resource-meta.xml │ │ │ │ └── SiteSamples │ │ │ │ ├── SiteStyles.css │ │ │ │ └── img │ │ │ │ ├── clock.png │ │ │ │ ├── construction.png │ │ │ │ ├── force_logo.png │ │ │ │ ├── maintenance.png │ │ │ │ ├── poweredby.png │ │ │ │ ├── tools.png │ │ │ │ ├── unauthorized.png │ │ │ │ └── warning.png │ │ ├── jest.config.js │ │ ├── package.json │ │ └── sfdx-project.json │ ├── seeds │ │ ├── deploy.async.seed.ts │ │ ├── deploy.manifest.seed.ts │ │ ├── deploy.metadata.seed.ts │ │ ├── deploy.quick.seed.ts │ │ ├── deploy.sourcepath.seed.ts │ │ ├── deploy.testlevel.seed.ts │ │ ├── mpd.deploy.seed.ts │ │ ├── mpd.retrieve.seed.ts │ │ ├── retrieve.manifest.seed.ts │ │ ├── retrieve.metadata.seed.ts │ │ ├── retrieve.packagenames.seed.ts │ │ ├── retrieve.retrievetargetdir.seed.ts │ │ └── retrieve.sourcepath.seed.ts │ ├── shared │ │ ├── cliForManifestCreate.ts │ │ └── isNameObsolete.ts │ ├── territory2.nut.ts │ ├── territoryProject │ │ ├── .eslintignore │ │ ├── .forceignore │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .vscode │ │ │ ├── extensions.json │ │ │ ├── launch.json │ │ │ └── settings.json │ │ ├── README.md │ │ ├── config │ │ │ └── project-scratch-def.json │ │ ├── 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 │ │ ├── package.json │ │ └── sfdx-project.json │ ├── testMatrix.ts │ ├── trackingCommands │ │ ├── aura.nut.ts │ │ ├── basics.nut.ts │ │ ├── conflicts.nut.ts │ │ ├── consts.ts │ │ ├── customLabels.nut.ts │ │ ├── deployRetrieveDelete.nut.ts │ │ ├── forceIgnore.nut.ts │ │ ├── hooks.nut.ts │ │ ├── lwc.nut.ts │ │ ├── mpd-non-sequential.nut.ts │ │ ├── mpd-sequential.nut.ts │ │ └── remoteChanges.nut.ts │ └── translation.nut.ts ├── promisesQueue.test.ts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.cjs/ 2 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.git2gus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.git2gus/config.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/create-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/create-github-release.yml -------------------------------------------------------------------------------- /.github/workflows/devScripts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/devScripts.yml -------------------------------------------------------------------------------- /.github/workflows/failureNotifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/failureNotifications.yml -------------------------------------------------------------------------------- /.github/workflows/notify-slack-on-pr-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/notify-slack-on-pr-open.yml -------------------------------------------------------------------------------- /.github/workflows/onRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/onRelease.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.github/workflows/validate-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn commitlint --edit 5 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.mocharc.json -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.nycrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | "@salesforce/prettier-config" 2 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/dev.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/bin/dev.cmd -------------------------------------------------------------------------------- /bin/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/bin/dev.js -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* -------------------------------------------------------------------------------- /bin/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/bin/run.js -------------------------------------------------------------------------------- /command-snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/command-snapshot.json -------------------------------------------------------------------------------- /commitlint.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] }; 2 | -------------------------------------------------------------------------------- /messages/cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/cancel.md -------------------------------------------------------------------------------- /messages/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/deploy.md -------------------------------------------------------------------------------- /messages/deployCommand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/deployCommand.md -------------------------------------------------------------------------------- /messages/flags.validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/flags.validation.md -------------------------------------------------------------------------------- /messages/md.cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/md.cancel.md -------------------------------------------------------------------------------- /messages/md.deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/md.deploy.md -------------------------------------------------------------------------------- /messages/md.deployreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/md.deployreport.md -------------------------------------------------------------------------------- /messages/md.retrieve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/md.retrieve.md -------------------------------------------------------------------------------- /messages/pull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/pull.md -------------------------------------------------------------------------------- /messages/push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/push.md -------------------------------------------------------------------------------- /messages/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/report.md -------------------------------------------------------------------------------- /messages/retrieve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/retrieve.md -------------------------------------------------------------------------------- /messages/spinner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/spinner.md -------------------------------------------------------------------------------- /messages/stash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/stash.md -------------------------------------------------------------------------------- /messages/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/status.md -------------------------------------------------------------------------------- /messages/tracking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/messages/tracking.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/package.json -------------------------------------------------------------------------------- /schemas/force-source-deploy-cancel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-deploy-cancel.json -------------------------------------------------------------------------------- /schemas/force-source-deploy-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-deploy-report.json -------------------------------------------------------------------------------- /schemas/force-source-deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-deploy.json -------------------------------------------------------------------------------- /schemas/force-source-pull.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-pull.json -------------------------------------------------------------------------------- /schemas/force-source-push.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-push.json -------------------------------------------------------------------------------- /schemas/force-source-retrieve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-retrieve.json -------------------------------------------------------------------------------- /schemas/force-source-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force-source-status.json -------------------------------------------------------------------------------- /schemas/force.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/schemas/force.json -------------------------------------------------------------------------------- /src/commands/force.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force.ts -------------------------------------------------------------------------------- /src/commands/force/mdapi/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/mdapi/deploy.ts -------------------------------------------------------------------------------- /src/commands/force/mdapi/deploy/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/mdapi/deploy/cancel.ts -------------------------------------------------------------------------------- /src/commands/force/mdapi/deploy/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/mdapi/deploy/report.ts -------------------------------------------------------------------------------- /src/commands/force/mdapi/retrieve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/mdapi/retrieve.ts -------------------------------------------------------------------------------- /src/commands/force/mdapi/retrieve/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/mdapi/retrieve/report.ts -------------------------------------------------------------------------------- /src/commands/force/source/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/deploy.ts -------------------------------------------------------------------------------- /src/commands/force/source/deploy/cancel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/deploy/cancel.ts -------------------------------------------------------------------------------- /src/commands/force/source/deploy/report.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/deploy/report.ts -------------------------------------------------------------------------------- /src/commands/force/source/pull.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/pull.ts -------------------------------------------------------------------------------- /src/commands/force/source/push.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/push.ts -------------------------------------------------------------------------------- /src/commands/force/source/retrieve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/retrieve.ts -------------------------------------------------------------------------------- /src/commands/force/source/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/commands/force/source/status.ts -------------------------------------------------------------------------------- /src/coverageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/coverageUtils.ts -------------------------------------------------------------------------------- /src/deployCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/deployCommand.ts -------------------------------------------------------------------------------- /src/formatters/codeCoverageTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/codeCoverageTable.ts -------------------------------------------------------------------------------- /src/formatters/deployCancelResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/deployCancelResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/deployProgressBarFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/deployProgressBarFormatter.ts -------------------------------------------------------------------------------- /src/formatters/deployProgressStatusFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/deployProgressStatusFormatter.ts -------------------------------------------------------------------------------- /src/formatters/deployReportResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/deployReportResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/deployResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/deployResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/mdapi/mdDeployAsyncResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/mdapi/mdDeployAsyncResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/mdapi/mdDeployResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/mdapi/mdDeployResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/mdapi/retrieveResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/mdapi/retrieveResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/progressFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/progressFormatter.ts -------------------------------------------------------------------------------- /src/formatters/resultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/resultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/retrieveFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/retrieveFormatter.ts -------------------------------------------------------------------------------- /src/formatters/retrieveResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/retrieveResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/source/deployAsyncResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/source/deployAsyncResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/source/pullFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/source/pullFormatter.ts -------------------------------------------------------------------------------- /src/formatters/source/pushResultFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/source/pushResultFormatter.ts -------------------------------------------------------------------------------- /src/formatters/source/statusFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/formatters/source/statusFormatter.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/promiseQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/promiseQueue.ts -------------------------------------------------------------------------------- /src/sourceCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/sourceCommand.ts -------------------------------------------------------------------------------- /src/stash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/stash.ts -------------------------------------------------------------------------------- /src/trackingFunctions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/trackingFunctions.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/.eslintrc.cjs -------------------------------------------------------------------------------- /test/commands/mdapi/cancel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/mdapi/cancel.test.ts -------------------------------------------------------------------------------- /test/commands/mdapi/retrieve.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/mdapi/retrieve.test.ts -------------------------------------------------------------------------------- /test/commands/mdapi/retrieveReport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/mdapi/retrieveReport.test.ts -------------------------------------------------------------------------------- /test/commands/source/cancel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/cancel.test.ts -------------------------------------------------------------------------------- /test/commands/source/deploy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/deploy.test.ts -------------------------------------------------------------------------------- /test/commands/source/deployCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/deployCommand.test.ts -------------------------------------------------------------------------------- /test/commands/source/deployResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/deployResponses.ts -------------------------------------------------------------------------------- /test/commands/source/progressBarFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/progressBarFormatter.test.ts -------------------------------------------------------------------------------- /test/commands/source/report.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/report.test.ts -------------------------------------------------------------------------------- /test/commands/source/retrieve.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/retrieve.test.ts -------------------------------------------------------------------------------- /test/commands/source/retrieveResponses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/retrieveResponses.ts -------------------------------------------------------------------------------- /test/commands/source/testConsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/commands/source/testConsts.ts -------------------------------------------------------------------------------- /test/coverageUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/coverageUtils.test.ts -------------------------------------------------------------------------------- /test/formatters/deployProgressStatusFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/deployProgressStatusFormatter.ts -------------------------------------------------------------------------------- /test/formatters/deployResultFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/deployResultFormatter.test.ts -------------------------------------------------------------------------------- /test/formatters/mdDeployResultFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/mdDeployResultFormatter.test.ts -------------------------------------------------------------------------------- /test/formatters/pullFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/pullFormatter.test.ts -------------------------------------------------------------------------------- /test/formatters/pushResultFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/pushResultFormatter.test.ts -------------------------------------------------------------------------------- /test/formatters/retrieveResultFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/retrieveResultFormatter.test.ts -------------------------------------------------------------------------------- /test/formatters/statusResultFormatter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/formatters/statusResultFormatter.test.ts -------------------------------------------------------------------------------- /test/nuts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/README.md -------------------------------------------------------------------------------- /test/nuts/REST/deploy.mpd.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/REST/deploy.mpd.nut.ts -------------------------------------------------------------------------------- /test/nuts/REST/deploy.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/REST/deploy.nut.ts -------------------------------------------------------------------------------- /test/nuts/customLabelProject/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customLabelProject/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/customLabelProject/force-app/main/default/labels/CustomLabels.labels-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customLabelProject/force-app/main/default/labels/CustomLabels.labels-meta.xml -------------------------------------------------------------------------------- /test/nuts/customLabelProject/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customLabelProject/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/layouts/customObject__c-customObject Layout.layout-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/layouts/customObject__c-customObject Layout.layout-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/objectTranslations/customObject__c-es/customField__c.fieldTranslation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/objectTranslations/customObject__c-es/customField__c.fieldTranslation-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/objectTranslations/customObject__c-es/customObject__c-es.objectTranslation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/objectTranslations/customObject__c-es/customObject__c-es.objectTranslation-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/objects/customObject__c/customObject__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/objects/customObject__c/customObject__c.object-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/objects/customObject__c/fields/customField__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/objects/customObject__c/fields/customField__c.field-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/profiles/Admin.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/profiles/Admin.profile-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/force-app/main/default/translations/es.translation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/force-app/main/default/translations/es.translation-meta.xml -------------------------------------------------------------------------------- /test/nuts/customTranslationProject/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/customTranslationProject/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/deployDestructive.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/deployDestructive.nut.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/constants.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/deb.manifest.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/deb.manifest.nut.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/deb.metadata.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/deb.metadata.nut.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/deb.sourcepath.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/deb.sourcepath.nut.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/deb.tracking.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/deb.tracking.nut.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/helper.ts -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.eslintignore -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.forceignore -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.gitignore -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run precommit -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.prettierignore -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.prettierrc -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.vscode/extensions.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.vscode/launch.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/.vscode/settings.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/README.md -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/classes/CommunitiesLandingController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/classes/CommunitiesLandingController.cls -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperienceConfigs/Capricorn_Coffee_A1.digitalExperienceConfig-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperienceConfigs/Capricorn_Coffee_A1.digitalExperienceConfig-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperienceConfigs/Capricorn_Coffee_B1.digitalExperienceConfig-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperienceConfigs/Capricorn_Coffee_B1.digitalExperienceConfig-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/Capricorn_Coffee_A1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/Capricorn_Coffee_A1.digitalExperience-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__appPage/mainAppPage/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__languageSettings/languages/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Check_Password/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Error/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Forgot_Password/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Home/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Login/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/News_Detail__c/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Register/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Service_Not_Available/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__route/Too_Many_Requests/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__site/Capricorn_Coffee_A1/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__theme/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__themeLayout/snaThemeLayout/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/checkPasswordResetEmail/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/error/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/forgotPassword/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/home/fr.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/login/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/newsDetail/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/register/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/serviceNotAvailable/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_A1/sfdc_cms__view/tooManyRequests/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/Capricorn_Coffee_B1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/Capricorn_Coffee_B1.digitalExperience-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__appPage/mainAppPage/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__languageSettings/languages/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Check_Password/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Error/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Forgot_Password/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Home/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Login/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/News_Detail__c/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Register/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Service_Not_Available/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__route/Too_Many_Requests/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__site/Capricorn_Coffee_B1/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__theme/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__themeLayout/snaThemeLayout/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/checkPasswordResetEmail/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/error/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/forgotPassword/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/home/fr.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/login/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/newsDetail/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/register/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/serviceNotAvailable/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/digitalExperiences/site/Capricorn_Coffee_B1/sfdc_cms__view/tooManyRequests/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/networks/Capricorn_Coffee_A.network-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/networks/Capricorn_Coffee_A.network-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/networks/Capricorn_Coffee_B.network-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/networks/Capricorn_Coffee_B.network-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/pages/CommunitiesLanding.page -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/pages/CommunitiesLanding.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/pages/CommunitiesLanding.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/sites/Capricorn_Coffee_A.site-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/sites/Capricorn_Coffee_A.site-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/force-app/main/default/sites/Capricorn_Coffee_B.site-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/force-app/main/default/sites/Capricorn_Coffee_B.site-meta.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/jest.config.js -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/package.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/scripts/apex/hello.apex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/scripts/apex/hello.apex -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/scripts/soql/account.soql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/scripts/soql/account.soql -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/project/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/project/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/components/sfdc_cms__route/Document_Detail__c/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/components/sfdc_cms__route/Document_Detail__c/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/components/sfdc_cms__route/Document_Detail__c/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/components/sfdc_cms__route/Document_Detail__c/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/components/sfdc_cms__view/documentDetail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/components/sfdc_cms__view/documentDetail/_meta.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/components/sfdc_cms__view/documentDetail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/components/sfdc_cms__view/documentDetail/content.json -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/all-de-of-deb-a-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/all-de-of-deb-a-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/all-de-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/all-de-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/all-debs-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/all-debs-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/de-document-detail-page-a-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/de-document-detail-page-a-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/de-view-home-of-deb-a-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/de-view-home-of-deb-a-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/de-view-home-of-deb-b-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/de-view-home-of-deb-b-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/empty-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/empty-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/full-site-deb-a-and-b-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/full-site-deb-a-and-b-package.xml -------------------------------------------------------------------------------- /test/nuts/digitalExperienceBundle/store/manifests/just-deb-a-package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/digitalExperienceBundle/store/manifests/just-deb-a-package.xml -------------------------------------------------------------------------------- /test/nuts/folderTypes.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/folderTypes.nut.ts -------------------------------------------------------------------------------- /test/nuts/force.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/force.nut.ts -------------------------------------------------------------------------------- /test/nuts/generateNuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/generateNuts.ts -------------------------------------------------------------------------------- /test/nuts/mdapi.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/mdapi.nut.ts -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/.eslintignore -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/.forceignore -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/.gitignore -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/.prettierignore -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/.prettierrc -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/README.md -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/.eslintrc.json -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.html -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.js -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/cmpA/cmpA.js-meta.xml -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.html -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.js -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/force-app/main/default/lwc/folder1/lwc/cmpB/cmpB.js-meta.xml -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/jest.config.js -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/package.json -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/nestedLWCProject/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLWCProject/yarn.lock -------------------------------------------------------------------------------- /test/nuts/nestedLwc.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/nestedLwc.nut.ts -------------------------------------------------------------------------------- /test/nuts/partialBundleDelete.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDelete.nut.ts -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/.eslintignore -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/.forceignore -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/.gitignore -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/.prettierignore -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/.prettierrc -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/appMenus/AppSwitcher.appMenu-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/appMenus/AppSwitcher.appMenu-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/audience/Default_source-plugin-nut.audience-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/audience/Default_source-plugin-nut.audience-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.cmp -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.cmp-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.css -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPassword.design -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPasswordController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPasswordController.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPasswordHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/forgotPassword/forgotPasswordHelper.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.cmp -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.cmp-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.css -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginForm.design -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginFormController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginFormController.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginFormHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/loginForm/loginFormHelper.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.cmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.cmp -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.cmp-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.cmp-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.css -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegister.design -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegisterController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegisterController.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegisterHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/selfRegister/selfRegisterHelper.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setExpId/setExpId.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setExpId/setExpId.evt -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setExpId/setExpId.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setExpId/setExpId.evt-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setStartUrl/setStartUrl.evt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setStartUrl/setStartUrl.evt -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setStartUrl/setStartUrl.evt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/aura/setStartUrl/setStartUrl.evt-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ChangePasswordControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLandingControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesLoginControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegConfirmControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/CommunitiesSelfRegControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/ForgotPasswordControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningForgotPasswordControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningLoginFormControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/LightningSelfRegisterControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MicrobatchSelfRegControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/MyProfilePageControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteLoginControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterController.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterController.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterController.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterController.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterControllerTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterControllerTest.cls -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterControllerTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/classes/SiteRegisterControllerTest.cls-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteFooter.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteFooter.component -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteFooter.component-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteFooter.component-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteHeader.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteHeader.component -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteHeader.component-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteHeader.component-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteLogin.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteLogin.component -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteLogin.component-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SiteLogin.component-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SitePoweredBy.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SitePoweredBy.component -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/components/SitePoweredBy.component-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/components/SitePoweredBy.component-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperienceConfigs/source_plugin_nut1.digitalExperienceConfig-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperienceConfigs/source_plugin_nut1.digitalExperienceConfig-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__appPage/mainAppPage/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__appPage/mainAppPage/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__appPage/mainAppPage/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__appPage/mainAppPage/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__brandingSet/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__brandingSet/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__languageSettings/languages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__languageSettings/languages/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__languageSettings/languages/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__languageSettings/languages/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Check_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Check_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Check_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Check_Password/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Error/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Error/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Forgot_Password/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Forgot_Password/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Forgot_Password/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Forgot_Password/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Home/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Home/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Login/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Login/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/News_Detail__c/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/News_Detail__c/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/News_Detail__c/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/News_Detail__c/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Register/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Register/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Service_Not_Available/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Service_Not_Available/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Service_Not_Available/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Service_Not_Available/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Too_Many_Requests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Too_Many_Requests/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Too_Many_Requests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__route/Too_Many_Requests/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__site/source_plugin_nut1/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__site/source_plugin_nut1/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__site/source_plugin_nut1/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__site/source_plugin_nut1/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__theme/Build_Your_Own_LWR/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__theme/Build_Your_Own_LWR/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__theme/Build_Your_Own_LWR/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/scopedHeaderAndFooter/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/scopedHeaderAndFooter/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/snaThemeLayout/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/snaThemeLayout/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__themeLayout/snaThemeLayout/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/checkPasswordResetEmail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/checkPasswordResetEmail/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/checkPasswordResetEmail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/checkPasswordResetEmail/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/error/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/error/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/error/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/error/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/forgotPassword/es.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/home/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/home/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/home/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/login/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/login/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/login/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/login/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/newsDetail/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/newsDetail/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/newsDetail/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/newsDetail/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/register/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/register/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/register/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/register/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/serviceNotAvailable/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/serviceNotAvailable/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/serviceNotAvailable/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/serviceNotAvailable/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/tooManyRequests/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/tooManyRequests/_meta.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/tooManyRequests/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/sfdc_cms__view/tooManyRequests/content.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/source_plugin_nut1.digitalExperience-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/digitalExperiences/site/source_plugin_nut1/source_plugin_nut1.digitalExperience-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/navigationMenus/SFDC_Default_Navigation_source-plugin-nut.navigationMenu-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/navigationMenus/SFDC_Default_Navigation_source-plugin-nut.navigationMenu-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/networkBranding/cbsource_plugin_nut.networkBranding: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/networkBranding/cbsource_plugin_nut.networkBranding-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/networkBranding/cbsource_plugin_nut.networkBranding-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/networks/source-plugin-nut.network-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/networks/source-plugin-nut.network-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/AnswersHome.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/AnswersHome.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/AnswersHome.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/AnswersHome.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/BandwidthExceeded.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/BandwidthExceeded.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/BandwidthExceeded.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/BandwidthExceeded.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ChangePassword.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ChangePassword.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ChangePassword.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ChangePassword.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLanding.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLanding.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLanding.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLogin.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLogin.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLogin.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesLogin.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfReg.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfReg.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfReg.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfReg.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfRegConfirm.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfRegConfirm.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfRegConfirm.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesSelfRegConfirm.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesTemplate.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesTemplate.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesTemplate.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/CommunitiesTemplate.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Exception.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Exception.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Exception.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Exception.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/FileNotFound.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/FileNotFound.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/FileNotFound.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/FileNotFound.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPassword.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPassword.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPassword.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPassword.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPasswordConfirm.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPasswordConfirm.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPasswordConfirm.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/ForgotPasswordConfirm.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/IdeasHome.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/IdeasHome.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/IdeasHome.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/IdeasHome.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/InMaintenance.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/InMaintenance.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/InMaintenance.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/InMaintenance.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MicrobatchSelfReg.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MicrobatchSelfReg.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MicrobatchSelfReg.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MicrobatchSelfReg.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MyProfilePage.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MyProfilePage.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MyProfilePage.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/MyProfilePage.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteLogin.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteLogin.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteLogin.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteLogin.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegister.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegister.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegister.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegister.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegisterConfirm.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegisterConfirm.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegisterConfirm.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteRegisterConfirm.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteTemplate.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteTemplate.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteTemplate.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/SiteTemplate.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/StdExceptionTemplate.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/StdExceptionTemplate.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/StdExceptionTemplate.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/StdExceptionTemplate.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Unauthorized.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Unauthorized.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Unauthorized.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/Unauthorized.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/UnderConstruction.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/UnderConstruction.page -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/pages/UnderConstruction.page-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/pages/UnderConstruction.page-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/profiles/Admin.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/profiles/Admin.profile-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/profiles/source-plugin-nut Profile.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/profiles/source-plugin-nut Profile.profile-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/sites/source_plugin_nut.site-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/sites/source_plugin_nut.site-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples.resource-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples.resource-meta.xml -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/SiteStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/SiteStyles.css -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/clock.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/construction.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/force_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/force_logo.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/maintenance.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/poweredby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/poweredby.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/tools.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/unauthorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/unauthorized.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/force-app/main/default/staticresources/SiteSamples/img/warning.png -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/jest.config.js -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/package.json -------------------------------------------------------------------------------- /test/nuts/partialBundleDeleteProject/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/partialBundleDeleteProject/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.async.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.async.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.manifest.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.manifest.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.metadata.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.metadata.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.quick.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.quick.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.sourcepath.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.sourcepath.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/deploy.testlevel.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/deploy.testlevel.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/mpd.deploy.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/mpd.deploy.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/mpd.retrieve.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/mpd.retrieve.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/retrieve.manifest.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/retrieve.manifest.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/retrieve.metadata.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/retrieve.metadata.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/retrieve.packagenames.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/retrieve.packagenames.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/retrieve.retrievetargetdir.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/retrieve.retrievetargetdir.seed.ts -------------------------------------------------------------------------------- /test/nuts/seeds/retrieve.sourcepath.seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/seeds/retrieve.sourcepath.seed.ts -------------------------------------------------------------------------------- /test/nuts/shared/cliForManifestCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/shared/cliForManifestCreate.ts -------------------------------------------------------------------------------- /test/nuts/shared/isNameObsolete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/shared/isNameObsolete.ts -------------------------------------------------------------------------------- /test/nuts/territory2.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territory2.nut.ts -------------------------------------------------------------------------------- /test/nuts/territoryProject/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.eslintignore -------------------------------------------------------------------------------- /test/nuts/territoryProject/.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.forceignore -------------------------------------------------------------------------------- /test/nuts/territoryProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.gitignore -------------------------------------------------------------------------------- /test/nuts/territoryProject/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.prettierignore -------------------------------------------------------------------------------- /test/nuts/territoryProject/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.vscode/extensions.json -------------------------------------------------------------------------------- /test/nuts/territoryProject/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.vscode/launch.json -------------------------------------------------------------------------------- /test/nuts/territoryProject/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/.vscode/settings.json -------------------------------------------------------------------------------- /test/nuts/territoryProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/README.md -------------------------------------------------------------------------------- /test/nuts/territoryProject/config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/config/project-scratch-def.json -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/SCW_Territory_Model.territory2Model-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/SCW_Territory_Model.territory2Model-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/rules/Fishing_Stores.territory2Rule-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/rules/Fishing_Stores.territory2Rule-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/Austin.territory2-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/Austin.territory2-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/Texas.territory2-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/Texas.territory2-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/USA.territory2-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Models/SCW_Territory_Model/territories/USA.territory2-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Types/City.territory2Type-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Types/City.territory2Type-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Types/Country.territory2Type-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Types/Country.territory2Type-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/force-app/main/default/territory2Types/State.territory2Type-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/force-app/main/default/territory2Types/State.territory2Type-meta.xml -------------------------------------------------------------------------------- /test/nuts/territoryProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/package.json -------------------------------------------------------------------------------- /test/nuts/territoryProject/sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/territoryProject/sfdx-project.json -------------------------------------------------------------------------------- /test/nuts/testMatrix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/testMatrix.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/aura.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/aura.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/basics.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/basics.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/conflicts.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/conflicts.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/consts.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/customLabels.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/customLabels.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/deployRetrieveDelete.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/deployRetrieveDelete.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/forceIgnore.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/forceIgnore.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/hooks.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/hooks.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/lwc.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/lwc.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/mpd-non-sequential.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/mpd-non-sequential.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/mpd-sequential.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/mpd-sequential.nut.ts -------------------------------------------------------------------------------- /test/nuts/trackingCommands/remoteChanges.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/trackingCommands/remoteChanges.nut.ts -------------------------------------------------------------------------------- /test/nuts/translation.nut.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/nuts/translation.nut.ts -------------------------------------------------------------------------------- /test/promisesQueue.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/promisesQueue.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforcecli/plugin-source/HEAD/yarn.lock --------------------------------------------------------------------------------