├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .images └── vscodeScreenshot.png ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── config └── appConfig.json ├── data └── target_RecordType.xfrom1.csv ├── docs ├── CONTRIBUTING.md ├── PROJECT_STRUCTURE.md └── SETUP.md ├── messages └── org.json ├── oclif.manifest.json ├── package.json ├── plugin-config-sample.json ├── resources └── bash │ └── build.sh ├── src ├── commands │ └── adp │ │ ├── apex │ │ └── execute.ts │ │ ├── auth │ │ └── soap │ │ │ └── login.ts │ │ ├── config │ │ └── show.ts │ │ ├── data │ │ └── run.ts │ │ ├── package │ │ ├── install.ts │ │ ├── installed │ │ │ └── list.ts │ │ ├── list.ts │ │ ├── retrieve.ts │ │ ├── retrieve │ │ │ ├── postdestruct.ts │ │ │ └── predestruct.ts │ │ └── uninstall.ts │ │ ├── rest │ │ ├── query.ts │ │ └── upsert.ts │ │ ├── shell │ │ ├── run.ts │ │ └── runjar.ts │ │ ├── source │ │ ├── deploy.ts │ │ ├── destruct.ts │ │ ├── destructive │ │ │ └── prepare.ts │ │ └── prepare.ts │ │ └── tooling │ │ ├── query.ts │ │ └── update.ts ├── globals.ts ├── helpers │ ├── metadataHelper.ts │ ├── packageHelper.ts │ ├── packageXmlHelper.ts │ ├── runjarHelper.ts │ └── talendHelper.ts ├── index.ts └── shared │ ├── apexUtil.ts │ ├── authUtil.ts │ ├── cliCommand.ts │ ├── commandValidator.ts │ ├── constants.ts │ ├── fileDb.ts │ ├── fileUtil.ts │ ├── jsonUtil.ts │ ├── logger.ts │ ├── orgUtil.ts │ ├── pluginConfig.ts │ ├── project.ts │ ├── sfdxProject.ts │ ├── sourceUtil.ts │ ├── statusChecker.ts │ └── xmlUtil.ts ├── test ├── commands │ └── adp │ │ ├── data │ │ └── run.test.ts │ │ └── shell │ │ └── run.test.ts ├── helpers │ ├── init.js │ ├── metadataHelper.test.ts │ ├── packageHelper.test.ts │ ├── packageXmlHelper.test.ts │ ├── runjarHelper.test.ts │ ├── talendHelper.integ.ts │ └── talendHelper.test.ts ├── mocha.opts ├── resources │ ├── bash │ │ └── test.sh │ ├── destructive │ │ ├── meta-to-destruct.xml │ │ ├── testdestructive1.xml │ │ └── testdestructive2.xml │ ├── profiles │ │ ├── Admin.profile-meta.xml │ │ └── Business_Admin.profile-meta.xml │ ├── talend-test.jar │ ├── test-project-no-default.json │ ├── test-project.json │ ├── testproject │ │ └── deploy │ │ │ └── pre │ │ │ └── anonymous │ │ │ ├── anon1.apex │ │ │ ├── anon2.apex │ │ │ ├── anon3.apex │ │ │ └── nonapex.txt │ ├── workflows-added │ │ ├── Campaign.workflow │ │ ├── Campaign_Channel__c.workflow │ │ ├── Case.workflow │ │ ├── Creative__c.workflow │ │ └── Segment_Channel__c.workflow │ ├── workflows-removed │ │ ├── Campaign_Channel__c.workflow │ │ ├── Case.workflow │ │ ├── Creative__c.workflow │ │ └── Segment_Channel__c.workflow │ └── workflows │ │ ├── Campaign_Channel__c.workflow │ │ ├── Case.workflow │ │ ├── Creative__c.workflow │ │ └── Segment_Channel__c.workflow ├── shared │ ├── apexUtil.integ.ts │ ├── cliCommand.integ.ts │ ├── cliCommand.test.ts │ ├── commandValidator.test.ts │ ├── fileUtil.integ.ts │ ├── jsonUtil.test.ts │ ├── orgUtil.integ.ts │ ├── orgUtil.test.ts │ ├── pluginConfig.integ.ts │ ├── pluginConfig.test.ts │ ├── sfdxProject.test.ts │ └── xmlUtil.test.ts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /config/appConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/config/appConfig.json -------------------------------------------------------------------------------- /data/target_RecordType.xfrom1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/data/target_RecordType.xfrom1.csv -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/docs/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /docs/SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/docs/SETUP.md -------------------------------------------------------------------------------- /messages/org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/messages/org.json -------------------------------------------------------------------------------- /oclif.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/oclif.manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugin-config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/plugin-config-sample.json -------------------------------------------------------------------------------- /resources/bash/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/resources/bash/build.sh -------------------------------------------------------------------------------- /src/commands/adp/apex/execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/apex/execute.ts -------------------------------------------------------------------------------- /src/commands/adp/auth/soap/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/auth/soap/login.ts -------------------------------------------------------------------------------- /src/commands/adp/config/show.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/config/show.ts -------------------------------------------------------------------------------- /src/commands/adp/data/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/data/run.ts -------------------------------------------------------------------------------- /src/commands/adp/package/install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/install.ts -------------------------------------------------------------------------------- /src/commands/adp/package/installed/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/installed/list.ts -------------------------------------------------------------------------------- /src/commands/adp/package/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/list.ts -------------------------------------------------------------------------------- /src/commands/adp/package/retrieve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/retrieve.ts -------------------------------------------------------------------------------- /src/commands/adp/package/retrieve/postdestruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/retrieve/postdestruct.ts -------------------------------------------------------------------------------- /src/commands/adp/package/retrieve/predestruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/retrieve/predestruct.ts -------------------------------------------------------------------------------- /src/commands/adp/package/uninstall.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/package/uninstall.ts -------------------------------------------------------------------------------- /src/commands/adp/rest/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/rest/query.ts -------------------------------------------------------------------------------- /src/commands/adp/rest/upsert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/rest/upsert.ts -------------------------------------------------------------------------------- /src/commands/adp/shell/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/shell/run.ts -------------------------------------------------------------------------------- /src/commands/adp/shell/runjar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/shell/runjar.ts -------------------------------------------------------------------------------- /src/commands/adp/source/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/source/deploy.ts -------------------------------------------------------------------------------- /src/commands/adp/source/destruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/source/destruct.ts -------------------------------------------------------------------------------- /src/commands/adp/source/destructive/prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/source/destructive/prepare.ts -------------------------------------------------------------------------------- /src/commands/adp/source/prepare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/source/prepare.ts -------------------------------------------------------------------------------- /src/commands/adp/tooling/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/tooling/query.ts -------------------------------------------------------------------------------- /src/commands/adp/tooling/update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/commands/adp/tooling/update.ts -------------------------------------------------------------------------------- /src/globals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/globals.ts -------------------------------------------------------------------------------- /src/helpers/metadataHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/helpers/metadataHelper.ts -------------------------------------------------------------------------------- /src/helpers/packageHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/helpers/packageHelper.ts -------------------------------------------------------------------------------- /src/helpers/packageXmlHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/helpers/packageXmlHelper.ts -------------------------------------------------------------------------------- /src/helpers/runjarHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/helpers/runjarHelper.ts -------------------------------------------------------------------------------- /src/helpers/talendHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/helpers/talendHelper.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/shared/apexUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/apexUtil.ts -------------------------------------------------------------------------------- /src/shared/authUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/authUtil.ts -------------------------------------------------------------------------------- /src/shared/cliCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/cliCommand.ts -------------------------------------------------------------------------------- /src/shared/commandValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/commandValidator.ts -------------------------------------------------------------------------------- /src/shared/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/constants.ts -------------------------------------------------------------------------------- /src/shared/fileDb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/fileDb.ts -------------------------------------------------------------------------------- /src/shared/fileUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/fileUtil.ts -------------------------------------------------------------------------------- /src/shared/jsonUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/jsonUtil.ts -------------------------------------------------------------------------------- /src/shared/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/logger.ts -------------------------------------------------------------------------------- /src/shared/orgUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/orgUtil.ts -------------------------------------------------------------------------------- /src/shared/pluginConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/pluginConfig.ts -------------------------------------------------------------------------------- /src/shared/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/project.ts -------------------------------------------------------------------------------- /src/shared/sfdxProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/sfdxProject.ts -------------------------------------------------------------------------------- /src/shared/sourceUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/sourceUtil.ts -------------------------------------------------------------------------------- /src/shared/statusChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/statusChecker.ts -------------------------------------------------------------------------------- /src/shared/xmlUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/src/shared/xmlUtil.ts -------------------------------------------------------------------------------- /test/commands/adp/data/run.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/commands/adp/data/run.test.ts -------------------------------------------------------------------------------- /test/commands/adp/shell/run.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/commands/adp/shell/run.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/helpers/metadataHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/metadataHelper.test.ts -------------------------------------------------------------------------------- /test/helpers/packageHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/packageHelper.test.ts -------------------------------------------------------------------------------- /test/helpers/packageXmlHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/packageXmlHelper.test.ts -------------------------------------------------------------------------------- /test/helpers/runjarHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/runjarHelper.test.ts -------------------------------------------------------------------------------- /test/helpers/talendHelper.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/talendHelper.integ.ts -------------------------------------------------------------------------------- /test/helpers/talendHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/helpers/talendHelper.test.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/resources/bash/test.sh: -------------------------------------------------------------------------------- 1 | echo "The $1 flew over the $2" -------------------------------------------------------------------------------- /test/resources/destructive/meta-to-destruct.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/destructive/meta-to-destruct.xml -------------------------------------------------------------------------------- /test/resources/destructive/testdestructive1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/destructive/testdestructive1.xml -------------------------------------------------------------------------------- /test/resources/destructive/testdestructive2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/destructive/testdestructive2.xml -------------------------------------------------------------------------------- /test/resources/profiles/Admin.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/profiles/Admin.profile-meta.xml -------------------------------------------------------------------------------- /test/resources/profiles/Business_Admin.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/profiles/Business_Admin.profile-meta.xml -------------------------------------------------------------------------------- /test/resources/talend-test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/talend-test.jar -------------------------------------------------------------------------------- /test/resources/test-project-no-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/test-project-no-default.json -------------------------------------------------------------------------------- /test/resources/test-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/test-project.json -------------------------------------------------------------------------------- /test/resources/testproject/deploy/pre/anonymous/anon1.apex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/testproject/deploy/pre/anonymous/anon2.apex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/testproject/deploy/pre/anonymous/anon3.apex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/testproject/deploy/pre/anonymous/nonapex.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/resources/workflows-added/Campaign.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-added/Campaign.workflow -------------------------------------------------------------------------------- /test/resources/workflows-added/Campaign_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-added/Campaign_Channel__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows-added/Case.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-added/Case.workflow -------------------------------------------------------------------------------- /test/resources/workflows-added/Creative__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-added/Creative__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows-added/Segment_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-added/Segment_Channel__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows-removed/Campaign_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-removed/Campaign_Channel__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows-removed/Case.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-removed/Case.workflow -------------------------------------------------------------------------------- /test/resources/workflows-removed/Creative__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-removed/Creative__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows-removed/Segment_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows-removed/Segment_Channel__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows/Campaign_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows/Campaign_Channel__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows/Case.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows/Case.workflow -------------------------------------------------------------------------------- /test/resources/workflows/Creative__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows/Creative__c.workflow -------------------------------------------------------------------------------- /test/resources/workflows/Segment_Channel__c.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/resources/workflows/Segment_Channel__c.workflow -------------------------------------------------------------------------------- /test/shared/apexUtil.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/apexUtil.integ.ts -------------------------------------------------------------------------------- /test/shared/cliCommand.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/cliCommand.integ.ts -------------------------------------------------------------------------------- /test/shared/cliCommand.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/cliCommand.test.ts -------------------------------------------------------------------------------- /test/shared/commandValidator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/commandValidator.test.ts -------------------------------------------------------------------------------- /test/shared/fileUtil.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/fileUtil.integ.ts -------------------------------------------------------------------------------- /test/shared/jsonUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/jsonUtil.test.ts -------------------------------------------------------------------------------- /test/shared/orgUtil.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/orgUtil.integ.ts -------------------------------------------------------------------------------- /test/shared/orgUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/orgUtil.test.ts -------------------------------------------------------------------------------- /test/shared/pluginConfig.integ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/pluginConfig.integ.ts -------------------------------------------------------------------------------- /test/shared/pluginConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/pluginConfig.test.ts -------------------------------------------------------------------------------- /test/shared/sfdxProject.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/sfdxProject.test.ts -------------------------------------------------------------------------------- /test/shared/xmlUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/test/shared/xmlUtil.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/americanexpress/sfdx-cli-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------