├── .circleci ├── config.yml └── greenkeeper ├── .editorconfig ├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .nycrc ├── .vscode ├── launch.json └── tasks.json ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── messages └── org.json ├── package.json ├── src ├── .gitignore ├── commands │ ├── deploy │ │ ├── apex.ts │ │ ├── aura.ts │ │ ├── lwc.ts │ │ ├── staticresource.ts │ │ ├── trigger.ts │ │ ├── vf.ts │ │ └── vfcomponent.ts │ ├── metadata │ │ └── rename.ts │ └── retrieve │ │ ├── dxsource.ts │ │ └── pkgsource.ts ├── index.ts ├── models │ ├── describemetadataResult.ts │ ├── metadataResult.ts │ ├── queryResult.ts │ └── sObjectResult.ts ├── service │ ├── containerasyncRequest.ts │ ├── createmetadataContainer.ts │ ├── createmetadataMember.ts │ ├── delay.ts │ ├── deploy.ts │ ├── displayError.ts │ ├── displayTable.ts │ ├── getFileName.ts │ ├── getNamespacePrefix.ts │ ├── packagexmlbuilder │ │ ├── describeMetadata.ts │ │ ├── metadataMember.ts │ │ └── packagexmlTemplate.ts │ └── toolingQuery.ts └── types │ └── errorLog.ts ├── test ├── commands │ └── deploy │ │ └── apex.test.ts ├── helpers │ └── init.js ├── mocha.opts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/greenkeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.circleci/greenkeeper -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.nycrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /messages/org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/messages/org.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/commands/deploy/apex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/apex.ts -------------------------------------------------------------------------------- /src/commands/deploy/aura.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/aura.ts -------------------------------------------------------------------------------- /src/commands/deploy/lwc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/lwc.ts -------------------------------------------------------------------------------- /src/commands/deploy/staticresource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/staticresource.ts -------------------------------------------------------------------------------- /src/commands/deploy/trigger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/trigger.ts -------------------------------------------------------------------------------- /src/commands/deploy/vf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/vf.ts -------------------------------------------------------------------------------- /src/commands/deploy/vfcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/deploy/vfcomponent.ts -------------------------------------------------------------------------------- /src/commands/metadata/rename.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/metadata/rename.ts -------------------------------------------------------------------------------- /src/commands/retrieve/dxsource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/retrieve/dxsource.ts -------------------------------------------------------------------------------- /src/commands/retrieve/pkgsource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/commands/retrieve/pkgsource.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/models/describemetadataResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/models/describemetadataResult.ts -------------------------------------------------------------------------------- /src/models/metadataResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/models/metadataResult.ts -------------------------------------------------------------------------------- /src/models/queryResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/models/queryResult.ts -------------------------------------------------------------------------------- /src/models/sObjectResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/models/sObjectResult.ts -------------------------------------------------------------------------------- /src/service/containerasyncRequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/containerasyncRequest.ts -------------------------------------------------------------------------------- /src/service/createmetadataContainer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/createmetadataContainer.ts -------------------------------------------------------------------------------- /src/service/createmetadataMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/createmetadataMember.ts -------------------------------------------------------------------------------- /src/service/delay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/delay.ts -------------------------------------------------------------------------------- /src/service/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/deploy.ts -------------------------------------------------------------------------------- /src/service/displayError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/displayError.ts -------------------------------------------------------------------------------- /src/service/displayTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/displayTable.ts -------------------------------------------------------------------------------- /src/service/getFileName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/getFileName.ts -------------------------------------------------------------------------------- /src/service/getNamespacePrefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/getNamespacePrefix.ts -------------------------------------------------------------------------------- /src/service/packagexmlbuilder/describeMetadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/packagexmlbuilder/describeMetadata.ts -------------------------------------------------------------------------------- /src/service/packagexmlbuilder/metadataMember.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/packagexmlbuilder/metadataMember.ts -------------------------------------------------------------------------------- /src/service/packagexmlbuilder/packagexmlTemplate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/packagexmlbuilder/packagexmlTemplate.ts -------------------------------------------------------------------------------- /src/service/toolingQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/service/toolingQuery.ts -------------------------------------------------------------------------------- /src/types/errorLog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/src/types/errorLog.ts -------------------------------------------------------------------------------- /test/commands/deploy/apex.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/test/commands/deploy/apex.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msrivastav13/mo-dx-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------