├── .circleci └── config.yml ├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .prettierrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── @ELTOROIT └── Readme.md ├── README.md ├── appveyor.yml ├── bin ├── dev ├── dev.cmd ├── run └── run.cmd ├── package.json ├── src ├── @ELTOROIT │ ├── CoreMetadataSObjects.ts │ ├── DataAPI.ts │ ├── ETCopyData.ts │ ├── Exporter.ts │ ├── Importer.ts │ ├── Interfaces.ts │ ├── OrgManager.ts │ ├── SchemaDiscovery.ts │ ├── SchemaOrder.ts │ ├── Settings.ts │ └── Util.ts ├── commands │ └── ETCopyData │ │ ├── compare.ts │ │ ├── delete.ts │ │ ├── export.ts │ │ ├── full.ts │ │ └── import.ts └── index.ts ├── test ├── commands │ └── hello │ │ └── org.test.ts ├── mocha.json └── tsconfig.json └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /@ELTOROIT/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/@ELTOROIT/Readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/dev.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\dev" %* 4 | -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/package.json -------------------------------------------------------------------------------- /src/@ELTOROIT/CoreMetadataSObjects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/CoreMetadataSObjects.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/DataAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/DataAPI.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/ETCopyData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/ETCopyData.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/Exporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/Exporter.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/Importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/Importer.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/Interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/Interfaces.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/OrgManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/OrgManager.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/SchemaDiscovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/SchemaDiscovery.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/SchemaOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/SchemaOrder.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/Settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/Settings.ts -------------------------------------------------------------------------------- /src/@ELTOROIT/Util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/@ELTOROIT/Util.ts -------------------------------------------------------------------------------- /src/commands/ETCopyData/compare.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/commands/ETCopyData/compare.ts -------------------------------------------------------------------------------- /src/commands/ETCopyData/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/commands/ETCopyData/delete.ts -------------------------------------------------------------------------------- /src/commands/ETCopyData/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/commands/ETCopyData/export.ts -------------------------------------------------------------------------------- /src/commands/ETCopyData/full.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/commands/ETCopyData/full.ts -------------------------------------------------------------------------------- /src/commands/ETCopyData/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/src/commands/ETCopyData/import.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /test/commands/hello/org.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/test/commands/hello/org.test.ts -------------------------------------------------------------------------------- /test/mocha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/test/mocha.json -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eltoroit/ETCopyData/HEAD/tsconfig.json --------------------------------------------------------------------------------