├── .circleci ├── config.yml └── greenkeeper ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .nycrc ├── .travis.yml ├── .vscode └── launch.json ├── AccountData_GFx.json ├── README.md ├── Sample-dataMap.json ├── appveyor.yml ├── bin ├── run └── run.cmd ├── insertResult.json ├── messages └── examine.json ├── package.json ├── planMap.json ├── planMapOriginal.json ├── relationship_map.json ├── src ├── commands │ ├── djc │ │ ├── cleardata.ts │ │ ├── export.ts │ │ └── import.ts │ └── tohoom │ │ └── data │ │ ├── export.ts │ │ └── split.ts ├── dataApi.ts ├── index.ts └── tohoom.ts ├── test ├── commands │ └── djc │ │ └── data │ │ └── data.test.ts ├── helpers │ └── init.js ├── mocha.opts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/greenkeeper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.circleci/greenkeeper -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /AccountData_GFx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/AccountData_GFx.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Sample-dataMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/Sample-dataMap.json -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /insertResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/insertResult.json -------------------------------------------------------------------------------- /messages/examine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/messages/examine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/package.json -------------------------------------------------------------------------------- /planMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/planMap.json -------------------------------------------------------------------------------- /planMapOriginal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/planMapOriginal.json -------------------------------------------------------------------------------- /relationship_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/relationship_map.json -------------------------------------------------------------------------------- /src/commands/djc/cleardata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/commands/djc/cleardata.ts -------------------------------------------------------------------------------- /src/commands/djc/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/commands/djc/export.ts -------------------------------------------------------------------------------- /src/commands/djc/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/commands/djc/import.ts -------------------------------------------------------------------------------- /src/commands/tohoom/data/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/commands/tohoom/data/export.ts -------------------------------------------------------------------------------- /src/commands/tohoom/data/split.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/commands/tohoom/data/split.ts -------------------------------------------------------------------------------- /src/dataApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/dataApi.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/tohoom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/src/tohoom.ts -------------------------------------------------------------------------------- /test/commands/djc/data/data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/test/commands/djc/data/data.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dcarroll/sfdx-djc-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------