├── .editorconfig ├── .gitattributes ├── .github └── workflows │ ├── default.yml │ └── preview.yml ├── .gitignore ├── .node-version ├── .nycrc ├── .releaserc.json ├── .vscode └── launch.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _templates ├── generator │ ├── help │ │ └── index.ejs.t │ ├── new │ │ └── hello.ejs.t │ └── with-prompt │ │ ├── hello.ejs.t │ │ └── prompt.ejs.t └── plugin │ └── new │ ├── disable.json.ejs.t │ ├── enable.json.ejs.t │ ├── index.e2e-spec.ejs.t │ ├── index.ejs.t │ ├── plugins-index-export.ejs.t │ ├── plugins-index.ejs.t │ ├── plugins-schema.ejs.t │ └── schema.json.ejs.t ├── bin ├── run └── run.cmd ├── config └── project-scratch-def.json ├── examples ├── account-settings-meta.png ├── account-settings.png ├── empty.json ├── full.json └── unsupported-currency-locale.png ├── force-app └── .gitkeep ├── package.json ├── prettier.config.mjs ├── renovate.json ├── scripts └── develop.sh ├── sfdx-project.json ├── src ├── browserforce-command.ts ├── browserforce.ts ├── commands │ └── browserforce │ │ ├── apply.ts │ │ └── plan.ts ├── config-parser.ts ├── index.ts ├── jsforce-utils.ts ├── pages │ └── login.ts ├── plugin.ts └── plugins │ ├── activity-settings │ ├── disable-many-who-pref.json │ ├── enable-many-who-pref.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── company-information │ ├── currency-invalid.json │ ├── currency-ireland.json │ ├── currency-zar.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── customer-portal │ ├── available-custom-objects │ │ ├── available.json │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── sfdx-source │ │ │ └── objects │ │ │ │ └── Dummy__c │ │ │ │ └── Dummy__c.object-meta.xml │ │ └── unavailable.json │ ├── enabled │ │ ├── disable.json │ │ ├── enable.json │ │ ├── index.test.ts │ │ └── index.ts │ ├── index.e2e-spec.ts │ ├── index.test.ts │ ├── index.ts │ ├── portals │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── set-portal-admin.json │ │ ├── setup-portal.json │ │ └── sfdx-source │ │ │ ├── permissionsets │ │ │ └── Customer_Portal_Admin.permissionset-meta.xml │ │ │ └── profiles │ │ │ └── Dummy.profile-meta.xml │ └── schema.json │ ├── density-settings │ ├── comfy.json │ ├── compact.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── deprecated.ts │ ├── email-deliverability │ ├── all.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── invalid.json │ ├── no-access.json │ ├── schema.json │ └── system.json │ ├── high-velocity-sales-settings │ ├── disable.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── page.ts │ └── schema.json │ ├── history-tracking │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── schema.json │ └── sfdx-source │ │ └── objects │ │ ├── Contact │ │ └── fields │ │ │ └── Test__c.field-meta.xml │ │ └── Test__c │ │ ├── Test__c.object-meta.xml │ │ └── fields │ │ └── Test__c.field-meta.xml │ ├── home-page-layouts │ ├── home-page-default.json │ ├── index.e2e-spec.ts │ ├── index.test.ts │ ├── index.ts │ ├── org-default.json │ └── schema.json │ ├── index.ts │ ├── lightning-experience-settings │ ├── activate-lightning-lite.json │ ├── activate-lightning.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── linkedin-sales-navigator-settings │ ├── disable.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── page.ts │ └── schema.json │ ├── omni-channel-settings │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── opportunity-splits │ ├── disable.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── pages │ │ ├── layout-selection.ts │ │ ├── overview.ts │ │ └── setup.ts │ ├── schema.json │ └── sfdx-source │ │ └── settings │ │ └── Opportunity.settings-meta.xml │ ├── permission-sets │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── schema.json │ ├── service-presence-status │ │ ├── index.ts │ │ └── schema.json │ └── sfdx-source │ │ ├── permissionsets │ │ └── ServicePresenceTest.permissionset-meta.xml │ │ └── servicePresenceStatuses │ │ ├── TestStatus.servicePresenceStatus-meta.xml │ │ ├── TestStatus2.servicePresenceStatus-meta.xml │ │ └── TestStatus3.servicePresenceStatus-meta.xml │ ├── picklists │ ├── activate.json │ ├── deactivate.json │ ├── field-dependencies │ │ ├── change.json │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── pages.ts │ │ ├── schema.json │ │ ├── set.json │ │ └── unset.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── new.json │ ├── pages.ts │ ├── replace-all-blanks.json │ ├── replace-and-deactivate.json │ ├── replace-and-delete.json │ ├── replace-non-existing-value.json │ ├── replace-with-empty.json │ ├── replace.json │ ├── schema.json │ ├── sfdx-source │ │ ├── globalValueSets │ │ │ ├── VehicleGears.globalValueSet-meta.xml │ │ │ └── VehicleTransmission.globalValueSet-meta.xml │ │ ├── objects │ │ │ └── Vehicle__c │ │ │ │ ├── Vehicle__c.object-meta.xml │ │ │ │ └── fields │ │ │ │ ├── Features__c.field-meta.xml │ │ │ │ ├── Gears__c.field-meta.xml │ │ │ │ └── Transmission__c.field-meta.xml │ │ └── standardValueSets │ │ │ ├── AccountType.standardValueSet-meta.xml │ │ │ └── ContractStatus.standardValueSet-meta.xml │ └── standard-value-set.ts │ ├── record-types │ ├── delete-active.json │ ├── delete-and-replace.json │ ├── delete.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── pages.ts │ ├── schema.json │ └── sfdx-source │ │ └── objects │ │ └── Vehicle__c │ │ ├── Vehicle__c.object-meta.xml │ │ └── recordTypes │ │ ├── Bicycle.recordType-meta.xml │ │ ├── CUV.recordType-meta.xml │ │ ├── SUV.recordType-meta.xml │ │ └── SportsCar.recordType-meta.xml │ ├── relate-contact-to-multiple-accounts │ ├── disable.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── reports-and-dashboards │ ├── folder-sharing │ │ ├── disable.json │ │ ├── enable.json │ │ ├── index.e2e-spec.ts │ │ ├── index.ts │ │ └── schema.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── salesforce-cpq-config │ ├── default.json │ ├── formConfig.ts │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── salesforce-to-salesforce │ ├── disable.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── schema.json │ ├── security │ ├── authentication-configuration │ │ ├── disable.json │ │ ├── enable.json │ │ ├── index.e2e-spec.ts │ │ ├── index.ts │ │ ├── schema.json │ │ └── sfdx-source │ │ │ └── authproviders │ │ │ └── TestAuthMethod.authprovider │ ├── certificate-and-key-management │ │ ├── Dummy.jks │ │ ├── import-from-keystore.json │ │ ├── index.e2e-spec.ts │ │ ├── index.test.ts │ │ ├── index.ts │ │ ├── schema.json │ │ └── sfdx-source │ │ │ └── identity-provider │ │ │ ├── certs │ │ │ ├── identity_provider.crt │ │ │ └── identity_provider.crt-meta.xml │ │ │ └── settings │ │ │ └── IdentityProvider.settings-meta.xml │ ├── index.ts │ └── schema.json │ ├── service-channels │ ├── capacity │ │ ├── index.ts │ │ └── schema.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── schema.json │ └── sfdx-source │ │ ├── CaseTest.serviceChannel-meta.xml │ │ └── LeadTest.serviceChannel-meta.xml │ ├── slack │ ├── disable-sales.json │ ├── enable.json │ ├── index.e2e-spec.ts │ ├── index.ts │ └── schema.json │ ├── user-access-policies │ ├── activate.json │ ├── change-trigger-type.json │ ├── deactivate.json │ ├── index.e2e-spec.ts │ ├── index.ts │ ├── multiple-policies.json │ ├── page.ts │ ├── schema.json │ └── sfdx-source │ │ └── useraccesspolicies │ │ ├── Additional_Grant_Permissions.useraccesspolicy-meta.xml │ │ └── Grant_Permissions.useraccesspolicy-meta.xml │ └── utils.ts ├── test ├── browserforce.e2e-spec.ts ├── config-parser.test.ts ├── deprecated.test.ts ├── e2e-setup.ts ├── plugin.test.ts ├── tsconfig.json └── utils.test.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.github/workflows/preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.github/workflows/preview.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.nycrc -------------------------------------------------------------------------------- /.releaserc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.releaserc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/README.md -------------------------------------------------------------------------------- /_templates/generator/help/index.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/generator/help/index.ejs.t -------------------------------------------------------------------------------- /_templates/generator/new/hello.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/generator/new/hello.ejs.t -------------------------------------------------------------------------------- /_templates/generator/with-prompt/hello.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/generator/with-prompt/hello.ejs.t -------------------------------------------------------------------------------- /_templates/generator/with-prompt/prompt.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/generator/with-prompt/prompt.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/disable.json.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/disable.json.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/enable.json.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/enable.json.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/index.e2e-spec.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/index.e2e-spec.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/index.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/index.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/plugins-index-export.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/plugins-index-export.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/plugins-index.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/plugins-index.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/plugins-schema.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/plugins-schema.ejs.t -------------------------------------------------------------------------------- /_templates/plugin/new/schema.json.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/_templates/plugin/new/schema.json.ejs.t -------------------------------------------------------------------------------- /bin/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/bin/run -------------------------------------------------------------------------------- /bin/run.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | node "%~dp0\run" %* 4 | -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/config/project-scratch-def.json -------------------------------------------------------------------------------- /examples/account-settings-meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/examples/account-settings-meta.png -------------------------------------------------------------------------------- /examples/account-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/examples/account-settings.png -------------------------------------------------------------------------------- /examples/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/examples/empty.json -------------------------------------------------------------------------------- /examples/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/examples/full.json -------------------------------------------------------------------------------- /examples/unsupported-currency-locale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/examples/unsupported-currency-locale.png -------------------------------------------------------------------------------- /force-app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/prettier.config.mjs -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/develop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/scripts/develop.sh -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/sfdx-project.json -------------------------------------------------------------------------------- /src/browserforce-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/browserforce-command.ts -------------------------------------------------------------------------------- /src/browserforce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/browserforce.ts -------------------------------------------------------------------------------- /src/commands/browserforce/apply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/commands/browserforce/apply.ts -------------------------------------------------------------------------------- /src/commands/browserforce/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/commands/browserforce/plan.ts -------------------------------------------------------------------------------- /src/config-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/config-parser.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /src/jsforce-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/jsforce-utils.ts -------------------------------------------------------------------------------- /src/pages/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/pages/login.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/plugins/activity-settings/disable-many-who-pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/activity-settings/disable-many-who-pref.json -------------------------------------------------------------------------------- /src/plugins/activity-settings/enable-many-who-pref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/activity-settings/enable-many-who-pref.json -------------------------------------------------------------------------------- /src/plugins/activity-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/activity-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/activity-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/activity-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/activity-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/activity-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/company-information/currency-invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/currency-invalid.json -------------------------------------------------------------------------------- /src/plugins/company-information/currency-ireland.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/currency-ireland.json -------------------------------------------------------------------------------- /src/plugins/company-information/currency-zar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/currency-zar.json -------------------------------------------------------------------------------- /src/plugins/company-information/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/company-information/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/index.ts -------------------------------------------------------------------------------- /src/plugins/company-information/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/company-information/schema.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/available-custom-objects/available.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/available-custom-objects/available.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/available-custom-objects/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/available-custom-objects/index.test.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/available-custom-objects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/available-custom-objects/index.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/available-custom-objects/sfdx-source/objects/Dummy__c/Dummy__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/available-custom-objects/sfdx-source/objects/Dummy__c/Dummy__c.object-meta.xml -------------------------------------------------------------------------------- /src/plugins/customer-portal/available-custom-objects/unavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/available-custom-objects/unavailable.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/enabled/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/enabled/disable.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/enabled/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/enabled/enable.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/enabled/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/enabled/index.test.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/enabled/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/enabled/index.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/index.test.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/index.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/index.test.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/index.ts -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/set-portal-admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/set-portal-admin.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/setup-portal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/setup-portal.json -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/sfdx-source/permissionsets/Customer_Portal_Admin.permissionset-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/sfdx-source/permissionsets/Customer_Portal_Admin.permissionset-meta.xml -------------------------------------------------------------------------------- /src/plugins/customer-portal/portals/sfdx-source/profiles/Dummy.profile-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/portals/sfdx-source/profiles/Dummy.profile-meta.xml -------------------------------------------------------------------------------- /src/plugins/customer-portal/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/customer-portal/schema.json -------------------------------------------------------------------------------- /src/plugins/density-settings/comfy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/density-settings/comfy.json -------------------------------------------------------------------------------- /src/plugins/density-settings/compact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/density-settings/compact.json -------------------------------------------------------------------------------- /src/plugins/density-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/density-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/density-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/density-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/density-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/density-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/deprecated.ts -------------------------------------------------------------------------------- /src/plugins/email-deliverability/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/all.json -------------------------------------------------------------------------------- /src/plugins/email-deliverability/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/email-deliverability/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/index.ts -------------------------------------------------------------------------------- /src/plugins/email-deliverability/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/invalid.json -------------------------------------------------------------------------------- /src/plugins/email-deliverability/no-access.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/no-access.json -------------------------------------------------------------------------------- /src/plugins/email-deliverability/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/schema.json -------------------------------------------------------------------------------- /src/plugins/email-deliverability/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/email-deliverability/system.json -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/disable.json -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/enable.json -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/page.ts -------------------------------------------------------------------------------- /src/plugins/high-velocity-sales-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/high-velocity-sales-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/history-tracking/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/history-tracking/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/index.ts -------------------------------------------------------------------------------- /src/plugins/history-tracking/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/schema.json -------------------------------------------------------------------------------- /src/plugins/history-tracking/sfdx-source/objects/Contact/fields/Test__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/sfdx-source/objects/Contact/fields/Test__c.field-meta.xml -------------------------------------------------------------------------------- /src/plugins/history-tracking/sfdx-source/objects/Test__c/Test__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/sfdx-source/objects/Test__c/Test__c.object-meta.xml -------------------------------------------------------------------------------- /src/plugins/history-tracking/sfdx-source/objects/Test__c/fields/Test__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/history-tracking/sfdx-source/objects/Test__c/fields/Test__c.field-meta.xml -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/home-page-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/home-page-default.json -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/index.test.ts -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/index.ts -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/org-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/org-default.json -------------------------------------------------------------------------------- /src/plugins/home-page-layouts/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/home-page-layouts/schema.json -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/lightning-experience-settings/activate-lightning-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/lightning-experience-settings/activate-lightning-lite.json -------------------------------------------------------------------------------- /src/plugins/lightning-experience-settings/activate-lightning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/lightning-experience-settings/activate-lightning.json -------------------------------------------------------------------------------- /src/plugins/lightning-experience-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/lightning-experience-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/lightning-experience-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/lightning-experience-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/lightning-experience-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/lightning-experience-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/disable.json -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/enable.json -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/page.ts -------------------------------------------------------------------------------- /src/plugins/linkedin-sales-navigator-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/linkedin-sales-navigator-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/omni-channel-settings/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/omni-channel-settings/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/omni-channel-settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/omni-channel-settings/index.ts -------------------------------------------------------------------------------- /src/plugins/omni-channel-settings/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/omni-channel-settings/schema.json -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/disable.json -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/enable.json -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/index.ts -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/pages/layout-selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/pages/layout-selection.ts -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/pages/overview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/pages/overview.ts -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/pages/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/pages/setup.ts -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/schema.json -------------------------------------------------------------------------------- /src/plugins/opportunity-splits/sfdx-source/settings/Opportunity.settings-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/opportunity-splits/sfdx-source/settings/Opportunity.settings-meta.xml -------------------------------------------------------------------------------- /src/plugins/permission-sets/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/permission-sets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/index.ts -------------------------------------------------------------------------------- /src/plugins/permission-sets/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/schema.json -------------------------------------------------------------------------------- /src/plugins/permission-sets/service-presence-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/service-presence-status/index.ts -------------------------------------------------------------------------------- /src/plugins/permission-sets/service-presence-status/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/service-presence-status/schema.json -------------------------------------------------------------------------------- /src/plugins/permission-sets/sfdx-source/permissionsets/ServicePresenceTest.permissionset-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/sfdx-source/permissionsets/ServicePresenceTest.permissionset-meta.xml -------------------------------------------------------------------------------- /src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus.servicePresenceStatus-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus.servicePresenceStatus-meta.xml -------------------------------------------------------------------------------- /src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus2.servicePresenceStatus-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus2.servicePresenceStatus-meta.xml -------------------------------------------------------------------------------- /src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus3.servicePresenceStatus-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/permission-sets/sfdx-source/servicePresenceStatuses/TestStatus3.servicePresenceStatus-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/activate.json -------------------------------------------------------------------------------- /src/plugins/picklists/deactivate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/deactivate.json -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/change.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/change.json -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/index.test.ts -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/index.ts -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/pages.ts -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/schema.json -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/set.json -------------------------------------------------------------------------------- /src/plugins/picklists/field-dependencies/unset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/field-dependencies/unset.json -------------------------------------------------------------------------------- /src/plugins/picklists/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/picklists/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/index.ts -------------------------------------------------------------------------------- /src/plugins/picklists/new.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/new.json -------------------------------------------------------------------------------- /src/plugins/picklists/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/pages.ts -------------------------------------------------------------------------------- /src/plugins/picklists/replace-all-blanks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace-all-blanks.json -------------------------------------------------------------------------------- /src/plugins/picklists/replace-and-deactivate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace-and-deactivate.json -------------------------------------------------------------------------------- /src/plugins/picklists/replace-and-delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace-and-delete.json -------------------------------------------------------------------------------- /src/plugins/picklists/replace-non-existing-value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace-non-existing-value.json -------------------------------------------------------------------------------- /src/plugins/picklists/replace-with-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace-with-empty.json -------------------------------------------------------------------------------- /src/plugins/picklists/replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/replace.json -------------------------------------------------------------------------------- /src/plugins/picklists/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/schema.json -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/globalValueSets/VehicleGears.globalValueSet-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/globalValueSets/VehicleGears.globalValueSet-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/globalValueSets/VehicleTransmission.globalValueSet-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/globalValueSets/VehicleTransmission.globalValueSet-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/objects/Vehicle__c/Vehicle__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/objects/Vehicle__c/Vehicle__c.object-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Features__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Features__c.field-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Gears__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Gears__c.field-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Transmission__c.field-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/objects/Vehicle__c/fields/Transmission__c.field-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/standardValueSets/AccountType.standardValueSet-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/standardValueSets/AccountType.standardValueSet-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/sfdx-source/standardValueSets/ContractStatus.standardValueSet-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/sfdx-source/standardValueSets/ContractStatus.standardValueSet-meta.xml -------------------------------------------------------------------------------- /src/plugins/picklists/standard-value-set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/picklists/standard-value-set.ts -------------------------------------------------------------------------------- /src/plugins/record-types/delete-active.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/delete-active.json -------------------------------------------------------------------------------- /src/plugins/record-types/delete-and-replace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/delete-and-replace.json -------------------------------------------------------------------------------- /src/plugins/record-types/delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/delete.json -------------------------------------------------------------------------------- /src/plugins/record-types/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/record-types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/index.ts -------------------------------------------------------------------------------- /src/plugins/record-types/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/pages.ts -------------------------------------------------------------------------------- /src/plugins/record-types/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/schema.json -------------------------------------------------------------------------------- /src/plugins/record-types/sfdx-source/objects/Vehicle__c/Vehicle__c.object-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/sfdx-source/objects/Vehicle__c/Vehicle__c.object-meta.xml -------------------------------------------------------------------------------- /src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/Bicycle.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/Bicycle.recordType-meta.xml -------------------------------------------------------------------------------- /src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/CUV.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/CUV.recordType-meta.xml -------------------------------------------------------------------------------- /src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/SUV.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/SUV.recordType-meta.xml -------------------------------------------------------------------------------- /src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/SportsCar.recordType-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/record-types/sfdx-source/objects/Vehicle__c/recordTypes/SportsCar.recordType-meta.xml -------------------------------------------------------------------------------- /src/plugins/relate-contact-to-multiple-accounts/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/relate-contact-to-multiple-accounts/disable.json -------------------------------------------------------------------------------- /src/plugins/relate-contact-to-multiple-accounts/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/relate-contact-to-multiple-accounts/enable.json -------------------------------------------------------------------------------- /src/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/relate-contact-to-multiple-accounts/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/relate-contact-to-multiple-accounts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/relate-contact-to-multiple-accounts/index.ts -------------------------------------------------------------------------------- /src/plugins/relate-contact-to-multiple-accounts/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/relate-contact-to-multiple-accounts/schema.json -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/folder-sharing/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/folder-sharing/disable.json -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/folder-sharing/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/folder-sharing/enable.json -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/folder-sharing/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/folder-sharing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/folder-sharing/index.ts -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/folder-sharing/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/folder-sharing/schema.json -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/index.ts -------------------------------------------------------------------------------- /src/plugins/reports-and-dashboards/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/reports-and-dashboards/schema.json -------------------------------------------------------------------------------- /src/plugins/salesforce-cpq-config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-cpq-config/default.json -------------------------------------------------------------------------------- /src/plugins/salesforce-cpq-config/formConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-cpq-config/formConfig.ts -------------------------------------------------------------------------------- /src/plugins/salesforce-cpq-config/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-cpq-config/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/salesforce-cpq-config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-cpq-config/index.ts -------------------------------------------------------------------------------- /src/plugins/salesforce-cpq-config/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-cpq-config/schema.json -------------------------------------------------------------------------------- /src/plugins/salesforce-to-salesforce/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-to-salesforce/disable.json -------------------------------------------------------------------------------- /src/plugins/salesforce-to-salesforce/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-to-salesforce/enable.json -------------------------------------------------------------------------------- /src/plugins/salesforce-to-salesforce/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-to-salesforce/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/salesforce-to-salesforce/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-to-salesforce/index.ts -------------------------------------------------------------------------------- /src/plugins/salesforce-to-salesforce/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/salesforce-to-salesforce/schema.json -------------------------------------------------------------------------------- /src/plugins/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/schema.json -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/disable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/disable.json -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/enable.json -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/index.ts -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/schema.json -------------------------------------------------------------------------------- /src/plugins/security/authentication-configuration/sfdx-source/authproviders/TestAuthMethod.authprovider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/authentication-configuration/sfdx-source/authproviders/TestAuthMethod.authprovider -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/Dummy.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/Dummy.jks -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/import-from-keystore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/import-from-keystore.json -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/index.test.ts -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/index.ts -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/schema.json -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/certs/identity_provider.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/certs/identity_provider.crt -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/certs/identity_provider.crt-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/certs/identity_provider.crt-meta.xml -------------------------------------------------------------------------------- /src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/settings/IdentityProvider.settings-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/certificate-and-key-management/sfdx-source/identity-provider/settings/IdentityProvider.settings-meta.xml -------------------------------------------------------------------------------- /src/plugins/security/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/index.ts -------------------------------------------------------------------------------- /src/plugins/security/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/security/schema.json -------------------------------------------------------------------------------- /src/plugins/service-channels/capacity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/capacity/index.ts -------------------------------------------------------------------------------- /src/plugins/service-channels/capacity/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/capacity/schema.json -------------------------------------------------------------------------------- /src/plugins/service-channels/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/service-channels/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/index.ts -------------------------------------------------------------------------------- /src/plugins/service-channels/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/schema.json -------------------------------------------------------------------------------- /src/plugins/service-channels/sfdx-source/CaseTest.serviceChannel-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/sfdx-source/CaseTest.serviceChannel-meta.xml -------------------------------------------------------------------------------- /src/plugins/service-channels/sfdx-source/LeadTest.serviceChannel-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/service-channels/sfdx-source/LeadTest.serviceChannel-meta.xml -------------------------------------------------------------------------------- /src/plugins/slack/disable-sales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/slack/disable-sales.json -------------------------------------------------------------------------------- /src/plugins/slack/enable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/slack/enable.json -------------------------------------------------------------------------------- /src/plugins/slack/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/slack/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/slack/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/slack/index.ts -------------------------------------------------------------------------------- /src/plugins/slack/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/slack/schema.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/activate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/activate.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/change-trigger-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/change-trigger-type.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/deactivate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/deactivate.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/index.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/index.e2e-spec.ts -------------------------------------------------------------------------------- /src/plugins/user-access-policies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/index.ts -------------------------------------------------------------------------------- /src/plugins/user-access-policies/multiple-policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/multiple-policies.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/page.ts -------------------------------------------------------------------------------- /src/plugins/user-access-policies/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/schema.json -------------------------------------------------------------------------------- /src/plugins/user-access-policies/sfdx-source/useraccesspolicies/Additional_Grant_Permissions.useraccesspolicy-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/sfdx-source/useraccesspolicies/Additional_Grant_Permissions.useraccesspolicy-meta.xml -------------------------------------------------------------------------------- /src/plugins/user-access-policies/sfdx-source/useraccesspolicies/Grant_Permissions.useraccesspolicy-meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/user-access-policies/sfdx-source/useraccesspolicies/Grant_Permissions.useraccesspolicy-meta.xml -------------------------------------------------------------------------------- /src/plugins/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/src/plugins/utils.ts -------------------------------------------------------------------------------- /test/browserforce.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/browserforce.e2e-spec.ts -------------------------------------------------------------------------------- /test/config-parser.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/config-parser.test.ts -------------------------------------------------------------------------------- /test/deprecated.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/deprecated.test.ts -------------------------------------------------------------------------------- /test/e2e-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/e2e-setup.ts -------------------------------------------------------------------------------- /test/plugin.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/plugin.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/test/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amtrack/sfdx-browserforce-plugin/HEAD/tsconfig.json --------------------------------------------------------------------------------