├── .editorconfig ├── .github └── workflows │ └── default.yml ├── .gitignore ├── .node-version ├── README.md ├── bin ├── dev.cmd ├── dev.js ├── run.cmd └── run.js ├── config └── project-scratch-def.json ├── force-app └── .gitkeep ├── package.json ├── prettier.config.mjs ├── renovate.json ├── sfdx-project.json ├── sfdx-source ├── customobjecttranslations-with-fieldtranslations │ ├── objectTranslations │ │ └── Dummy__c-en_US │ │ │ ├── Dummy__c-en_US.objectTranslation-meta.xml │ │ │ └── Type__c.fieldTranslation-meta.xml │ └── objects │ │ └── Dummy__c │ │ ├── Dummy__c.object-meta.xml │ │ └── fields │ │ └── Type__c.field-meta.xml ├── profile-with-field-permissions │ ├── objects │ │ └── Account │ │ │ ├── Account.object-meta.xml │ │ │ └── fields │ │ │ └── IsTest__c.field-meta.xml │ └── profiles │ │ └── Dummy.profile-meta.xml ├── recordtypes-with-picklistvalues │ └── objects │ │ └── DummyWithRT__c │ │ ├── DummyWithRT__c.object-meta.xml │ │ ├── fields │ │ └── Type__c.field-meta.xml │ │ └── recordTypes │ │ ├── DummyRecordType.recordType-meta.xml │ │ └── DummyRecordType2.recordType-meta.xml └── translations-with-labels │ ├── labels │ └── CustomLabels.labels-meta.xml │ └── translations │ └── en_US.translation-meta.xml ├── src ├── commands │ ├── crud-mdapi │ │ └── read.ts │ └── force │ │ └── source │ │ └── read.ts ├── component-set.ts ├── crud-mdapi.ts ├── index.ts ├── source-component.ts └── utils.ts ├── test ├── commands │ ├── crud-mdapi │ │ └── read.e2e.ts │ └── force │ │ └── source │ │ └── read.e2e.ts ├── component-set.test.ts ├── e2e.ts ├── fixtures │ ├── Admin.profile-meta.xml │ ├── Industry.field-meta.xml │ ├── read-record-types │ │ └── metadata │ └── sourcecomponents.ts ├── source-component.test.ts ├── tsconfig.json └── utils.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/README.md -------------------------------------------------------------------------------- /bin/dev.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/bin/dev.cmd -------------------------------------------------------------------------------- /bin/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/bin/dev.js -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /bin/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/bin/run.js -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /force-app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["config:recommended"] 3 | } 4 | -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-project.json -------------------------------------------------------------------------------- /sfdx-source/customobjecttranslations-with-fieldtranslations/objectTranslations/Dummy__c-en_US/Dummy__c-en_US.objectTranslation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/customobjecttranslations-with-fieldtranslations/objectTranslations/Dummy__c-en_US/Dummy__c-en_US.objectTranslation-meta.xml -------------------------------------------------------------------------------- /sfdx-source/customobjecttranslations-with-fieldtranslations/objectTranslations/Dummy__c-en_US/Type__c.fieldTranslation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/customobjecttranslations-with-fieldtranslations/objectTranslations/Dummy__c-en_US/Type__c.fieldTranslation-meta.xml -------------------------------------------------------------------------------- /sfdx-source/customobjecttranslations-with-fieldtranslations/objects/Dummy__c/Dummy__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/customobjecttranslations-with-fieldtranslations/objects/Dummy__c/Dummy__c.object-meta.xml -------------------------------------------------------------------------------- /sfdx-source/customobjecttranslations-with-fieldtranslations/objects/Dummy__c/fields/Type__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/customobjecttranslations-with-fieldtranslations/objects/Dummy__c/fields/Type__c.field-meta.xml -------------------------------------------------------------------------------- /sfdx-source/profile-with-field-permissions/objects/Account/Account.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/profile-with-field-permissions/objects/Account/Account.object-meta.xml -------------------------------------------------------------------------------- /sfdx-source/profile-with-field-permissions/objects/Account/fields/IsTest__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/profile-with-field-permissions/objects/Account/fields/IsTest__c.field-meta.xml -------------------------------------------------------------------------------- /sfdx-source/profile-with-field-permissions/profiles/Dummy.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/profile-with-field-permissions/profiles/Dummy.profile-meta.xml -------------------------------------------------------------------------------- /sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/DummyWithRT__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/DummyWithRT__c.object-meta.xml -------------------------------------------------------------------------------- /sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/fields/Type__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/fields/Type__c.field-meta.xml -------------------------------------------------------------------------------- /sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/recordTypes/DummyRecordType.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/recordTypes/DummyRecordType.recordType-meta.xml -------------------------------------------------------------------------------- /sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/recordTypes/DummyRecordType2.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/recordtypes-with-picklistvalues/objects/DummyWithRT__c/recordTypes/DummyRecordType2.recordType-meta.xml -------------------------------------------------------------------------------- /sfdx-source/translations-with-labels/labels/CustomLabels.labels-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/translations-with-labels/labels/CustomLabels.labels-meta.xml -------------------------------------------------------------------------------- /sfdx-source/translations-with-labels/translations/en_US.translation-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/sfdx-source/translations-with-labels/translations/en_US.translation-meta.xml -------------------------------------------------------------------------------- /src/commands/crud-mdapi/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/commands/crud-mdapi/read.ts -------------------------------------------------------------------------------- /src/commands/force/source/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/commands/force/source/read.ts -------------------------------------------------------------------------------- /src/component-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/component-set.ts -------------------------------------------------------------------------------- /src/crud-mdapi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/crud-mdapi.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/source-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/source-component.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/src/utils.ts -------------------------------------------------------------------------------- /test/commands/crud-mdapi/read.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/commands/crud-mdapi/read.e2e.ts -------------------------------------------------------------------------------- /test/commands/force/source/read.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/commands/force/source/read.e2e.ts -------------------------------------------------------------------------------- /test/component-set.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/component-set.test.ts -------------------------------------------------------------------------------- /test/e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/e2e.ts -------------------------------------------------------------------------------- /test/fixtures/Admin.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/fixtures/Admin.profile-meta.xml -------------------------------------------------------------------------------- /test/fixtures/Industry.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/fixtures/Industry.field-meta.xml -------------------------------------------------------------------------------- /test/fixtures/read-record-types/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/fixtures/read-record-types/metadata -------------------------------------------------------------------------------- /test/fixtures/sourcecomponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/fixtures/sourcecomponents.ts -------------------------------------------------------------------------------- /test/source-component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/source-component.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-plugin-source-read/HEAD/tsconfig.json --------------------------------------------------------------------------------