├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .images └── vscodeScreenshot.png ├── .nycrc ├── .vscode └── launch.json ├── README.md ├── bin ├── run └── run.cmd ├── messages └── sobject.json ├── package.json ├── src ├── commands │ └── types │ │ └── sobject │ │ └── create.ts └── index.ts ├── test ├── commands │ └── types │ │ └── sobject_create.test.ts ├── helpers │ └── init.js ├── mocha.opts └── tsconfig.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.images/vscodeScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.images/vscodeScreenshot.png -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.nycrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/README.md -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /messages/sobject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/messages/sobject.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/types/sobject/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/src/commands/types/sobject/create.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /test/commands/types/sobject_create.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/test/commands/types/sobject_create.test.ts -------------------------------------------------------------------------------- /test/helpers/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/test/helpers/init.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amphro/salesforce-to-types/HEAD/yarn.lock --------------------------------------------------------------------------------