├── .eslintignore ├── .forceignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING-ARCHIVED.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── config └── project-scratch-def.json ├── force-app └── main │ └── default │ ├── aura │ └── AuraEnabledScanner │ │ ├── AuraEnabledScanner.app │ │ └── AuraEnabledScanner.app-meta.xml │ ├── classes │ ├── OE_BasicStub.cls │ ├── OE_BasicStub.cls-meta.xml │ ├── OE_Scanner.cls │ ├── OE_Scanner.cls-meta.xml │ ├── OE_ScannerRecordGetter.cls │ ├── OE_ScannerRecordGetter.cls-meta.xml │ ├── OE_Scanner_Test.cls │ ├── OE_Scanner_Test.cls-meta.xml │ ├── OE_Scanner_TestUtils.cls │ └── OE_Scanner_TestUtils.cls-meta.xml │ ├── labels │ └── CustomLabels.labels-meta.xml │ ├── lwc │ ├── .eslintrc.json │ ├── jsconfig.json │ ├── oeAuraEnabledScanner │ │ ├── __tests__ │ │ │ ├── data │ │ │ │ └── classes.json │ │ │ └── oeAuraEnabledScanner.test.js │ │ ├── labels.js │ │ ├── oeAuraEnabledScanner.css │ │ ├── oeAuraEnabledScanner.html │ │ ├── oeAuraEnabledScanner.js │ │ └── oeAuraEnabledScanner.js-meta.xml │ ├── oeDialog │ │ ├── oeDialog.html │ │ ├── oeDialog.js │ │ └── oeDialog.js-meta.xml │ ├── oeIllustrator │ │ ├── oeIllustrator.html │ │ ├── oeIllustrator.js │ │ └── oeIllustrator.js-meta.xml │ └── oeIllustrator_noAccess2 │ │ ├── oeIllustrator_noAccess2.js │ │ └── oeIllustrator_noAccess2.js-meta.xml │ └── permissionsets │ └── AuraEnabledScannerUser.permissionset-meta.xml ├── jest.config.js ├── package.json ├── readme-assets ├── the-error.png ├── the-scanner.png └── the-update.png └── sfdx-project.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/.eslintignore -------------------------------------------------------------------------------- /.forceignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/.forceignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING-ARCHIVED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/CONTRIBUTING-ARCHIVED.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/SECURITY.md -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /force-app/main/default/aura/AuraEnabledScanner/AuraEnabledScanner.app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/aura/AuraEnabledScanner/AuraEnabledScanner.app -------------------------------------------------------------------------------- /force-app/main/default/aura/AuraEnabledScanner/AuraEnabledScanner.app-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/aura/AuraEnabledScanner/AuraEnabledScanner.app-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_BasicStub.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_BasicStub.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_BasicStub.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_BasicStub.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_ScannerRecordGetter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_ScannerRecordGetter.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_ScannerRecordGetter.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_ScannerRecordGetter.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner_Test.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner_Test.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner_Test.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner_Test.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner_TestUtils.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner_TestUtils.cls -------------------------------------------------------------------------------- /force-app/main/default/classes/OE_Scanner_TestUtils.cls-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/classes/OE_Scanner_TestUtils.cls-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/labels/CustomLabels.labels-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/labels/CustomLabels.labels-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@salesforce/eslint-config-lwc/recommended"] 3 | } 4 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/jsconfig.json -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/__tests__/data/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/__tests__/data/classes.json -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/__tests__/oeAuraEnabledScanner.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/__tests__/oeAuraEnabledScanner.test.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/labels.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.css -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeAuraEnabledScanner/oeAuraEnabledScanner.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeDialog/oeDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeDialog/oeDialog.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeDialog/oeDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeDialog/oeDialog.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeDialog/oeDialog.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeDialog/oeDialog.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeIllustrator/oeIllustrator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeIllustrator/oeIllustrator.html -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeIllustrator/oeIllustrator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeIllustrator/oeIllustrator.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeIllustrator/oeIllustrator.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeIllustrator/oeIllustrator.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeIllustrator_noAccess2/oeIllustrator_noAccess2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeIllustrator_noAccess2/oeIllustrator_noAccess2.js -------------------------------------------------------------------------------- /force-app/main/default/lwc/oeIllustrator_noAccess2/oeIllustrator_noAccess2.js-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/lwc/oeIllustrator_noAccess2/oeIllustrator_noAccess2.js-meta.xml -------------------------------------------------------------------------------- /force-app/main/default/permissionsets/AuraEnabledScannerUser.permissionset-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/force-app/main/default/permissionsets/AuraEnabledScannerUser.permissionset-meta.xml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/package.json -------------------------------------------------------------------------------- /readme-assets/the-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/readme-assets/the-error.png -------------------------------------------------------------------------------- /readme-assets/the-scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/readme-assets/the-scanner.png -------------------------------------------------------------------------------- /readme-assets/the-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/readme-assets/the-update.png -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/forcedotcom/AuraEnabledScanner/HEAD/sfdx-project.json --------------------------------------------------------------------------------