├── .forceignore ├── .gitignore ├── LICENSE.md ├── README.md ├── config └── project-scratch-def.json ├── docs ├── README.md └── _config.yml ├── force-app └── main │ └── default │ └── classes │ ├── CsvReader.cls │ ├── CsvReader.cls-meta.xml │ ├── CsvReaderTest.cls │ ├── CsvReaderTest.cls-meta.xml │ ├── Parser.cls │ └── Parser.cls-meta.xml └── sfdx-project.json /.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/.forceignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/README.md -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /force-app/main/default/classes/CsvReader.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/CsvReader.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/CsvReader.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/CsvReader.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/CsvReaderTest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/CsvReaderTest.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/CsvReaderTest.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/CsvReaderTest.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/Parser.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/Parser.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/Parser.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/force-app/main/default/classes/Parser.cls-meta.xml -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martyychang/sfdc-csv/HEAD/sfdx-project.json --------------------------------------------------------------------------------