├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── appveyor.yml ├── bin ├── run └── run.cmd ├── messages ├── deliverability_email.json ├── load_state_country.json ├── org.json └── validate_state_country.json ├── package.json ├── src ├── commands │ ├── email │ │ └── updateDeliverability.ts │ └── state_country │ │ ├── load.ts │ │ └── validate.ts ├── index.ts └── utils │ └── SalesforceSetup.ts ├── test ├── commands │ └── hello │ │ └── org.test.ts ├── data │ └── state_country │ │ ├── test_countries.csv │ │ └── test_states.csv ├── mocha.opts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /messages/deliverability_email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/messages/deliverability_email.json -------------------------------------------------------------------------------- /messages/load_state_country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/messages/load_state_country.json -------------------------------------------------------------------------------- /messages/org.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/messages/org.json -------------------------------------------------------------------------------- /messages/validate_state_country.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/messages/validate_state_country.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/email/updateDeliverability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/src/commands/email/updateDeliverability.ts -------------------------------------------------------------------------------- /src/commands/state_country/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/src/commands/state_country/load.ts -------------------------------------------------------------------------------- /src/commands/state_country/validate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/src/commands/state_country/validate.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /src/utils/SalesforceSetup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/src/utils/SalesforceSetup.ts -------------------------------------------------------------------------------- /test/commands/hello/org.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/test/commands/hello/org.test.ts -------------------------------------------------------------------------------- /test/data/state_country/test_countries.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/test/data/state_country/test_countries.csv -------------------------------------------------------------------------------- /test/data/state_country/test_states.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/test/data/state_country/test_states.csv -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anandbn/notmeta/HEAD/yarn.lock --------------------------------------------------------------------------------