Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1799 lines (1798 sloc)
78.1 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tasks": [ | |
{ | |
"label": "force:alias:list", | |
"description": "", | |
"command": "sfdx force:alias:list" | |
}, | |
{ | |
"label": "force:project:create", | |
"description": "", | |
"command": "sfdx force:project:create -n ${input:project_name} --template=${select:sfdx_project_template} --outputdir \"${openFolderDailog:project_directory}\"", | |
"cwd": "${project_directory}", | |
"beforeTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "CheckFileExist", | |
"params": ["${project_directory}/${project_name}"] | |
} | |
], | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "SwitchFolder", | |
"params": ["${project_directory}/${project_name}"] | |
} | |
] | |
}, | |
{ | |
"label": "force:auth:web:login", | |
"description": "", | |
"termial": { | |
"name": "xycode" | |
}, | |
"command": "sfdx force:auth:web:login --instanceurl ${select:instanceurl} --setalias ${input:alias_name} --setdefaultusername" | |
}, | |
{ | |
"label": "force:org:open", | |
"description": "", | |
"command": "sfdx force:org:open -p ${select:sfdc_url} -u ${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:config:set:defaultusername", | |
"description": "", | |
"command": "sfdx force:config:set defaultusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:config:set:defaultdevhubusername", | |
"description": "", | |
"command": "sfdx force:config:set defaultdevhubusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:config:set:apiVersion", | |
"description": "", | |
"command": "sfdx force:config:set apiVersion=${input:apiVersion}" | |
}, | |
{ | |
"label": "force:alias:set", | |
"description": "", | |
"command": "sfdx force:alias:set DevHub=${input:DevHub}" | |
}, | |
{ | |
"label": "force:org:list", | |
"description": "", | |
"command": "sfdx force:org:list" | |
}, | |
{ | |
"label": "force:org:list:all", | |
"description": "", | |
"command": "sfdx force:org:list --all" | |
}, | |
{ | |
"label": "force:source:retrieve:from_package_xml", | |
"description": "", | |
"command": "sfdx force:source:retrieve --manifest \"${singleFileDailog:package_xml}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:metadata", | |
"description": "", | |
"command": "sfdx force:source:retrieve --metadata \"${multiselect:METADATA}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:apexclass", | |
"description": "", | |
"command": "sfdx force:source:retrieve -m ApexClass:${input:ApexClass_Name}" | |
}, | |
{ | |
"label": "force:source:retrieve:metadata:base", | |
"description": "", | |
"command": "sfdx force:source:retrieve --metadata \"${input:base_metadata}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:metadata:standard-sobject", | |
"description": "", | |
"command": "sfdx force:source:retrieve --metadata \"${multiselect:standard_sobject}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:sourcepath", | |
"description": "", | |
"command": "sfdx force:source:retrieve --sourcepath \"${openFolderDailog:sourcepath}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:many_files", | |
"description": "", | |
"command": "sfdx force:source:retrieve -p \"${multiFilesDailog:sfdcsourcesfiles}\"" | |
}, | |
{ | |
"label": "force:source:retrieve:current_file", | |
"description": "", | |
"command": "sfdx force:source:retrieve -p \"${file}\"" | |
}, | |
{ | |
"label": "force:source:deploy:current_file", | |
"description": "", | |
"command": "sfdx force:source:deploy --loglevel fatal --sourcepath \"${file}\" --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:source:deploy:current_file:print_json", | |
"description": "", | |
"command": "sfdx force:source:deploy --loglevel fatal --sourcepath \"${file}\" --targetusername=${select:SFDX_ALIAS} --json" | |
}, | |
{ | |
"label": "force:source:deploy:sourcepath", | |
"description": "", | |
"command": "sfdx force:source:deploy -p \"${input:sourcepath}\" --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:source:deploy:metadata", | |
"description": "", | |
"command": "sfdx force:source:deploy --loglevel fatal --metadata \"${select:METADATA}\"" | |
}, | |
{ | |
"label": "force:apex:execute", | |
"description": "", | |
"command": "sfdx force:apex:execute --apexcodefile \"${singleFileDailog:apexcodefile}\" " | |
}, | |
{ | |
"label": "force:apex:execute:current_file", | |
"description": "", | |
"command": "sfdx force:apex:execute --apexcodefile \"${file}\" " | |
}, | |
{ | |
"label": "force:apex:test:run", | |
"description": "", | |
"command": "sfdx force:apex:test:run --synchronous --classnames ${fileBasenameNoExtension}" | |
}, | |
{ | |
"label": "force:apex:test:codecoverage", | |
"description": "", | |
"command": "sfdx force:apex:test:run --codecoverage -r human" | |
}, | |
{ | |
"label": "force:apex:log:get:n", | |
"description": "", | |
"command": "sfdx force:apex:log:get -u ${select:SFDX_ALIAS} -n ${input:log_size}" | |
}, | |
{ | |
"label": "force:apex:log:get:id", | |
"description": "", | |
"command": "sfdx force:apex:log:get -i ${input:ID} --color" | |
}, | |
{ | |
"label": "force:apex:log:list", | |
"description": "", | |
"command": "sfdx force:apex:log:list -u ${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:apex:log:tail", | |
"description": "", | |
"termial": { | |
"name": "xycode-${SFDX_ALIAS}" | |
}, | |
"command": "sfdx force:apex:log:tail --loglevel ${select:LOGLEVEL} -u ${select:SFDX_ALIAS} -c" | |
}, | |
{ | |
"label": "force:apex:log:tail:skiptraceflag", | |
"description": "", | |
"termial": { | |
"name": "xycode-${SFDX_ALIAS}" | |
}, | |
"command": "sfdx force:apex:log:tail --loglevel ${select:LOGLEVEL} -u ${select:SFDX_ALIAS} -c --skiptraceflag" | |
}, | |
{ | |
"label": "force:apex:log:tail:grep_log", | |
"description": "", | |
"termial": { | |
"name": "xycode-${SFDX_ALIAS}" | |
}, | |
"command": "sfdx force:apex:log:tail --loglevel ${select:LOGLEVEL} -u ${select:SFDX_ALIAS} -c" | |
}, | |
{ | |
"label": "force:apex:log:tail:write_to_file", | |
"description": "", | |
"termial": { | |
"name": "xycode-${SFDX_ALIAS}" | |
}, | |
"command": "sfdx force:apex:log:tail --loglevel ${select:LOGLEVEL} -u ${select:SFDX_ALIAS} ${input:skip_trace_flag_setup} >> ${input:log_file}" | |
}, | |
{ | |
"label": "force:apex:log:tail:tee_to_file", | |
"description": "", | |
"termial": { | |
"name": "xycode-${SFDX_ALIAS}" | |
}, | |
"command": "sfdx force:apex:log:tail --loglevel ${select:LOGLEVEL} -u ${select:SFDX_ALIAS} ${input:skip_trace_flag_setup} | tee ${input:log_file}" | |
}, | |
{ | |
"label": "force:help", | |
"description": "", | |
"command": "sfdx force -h" | |
}, | |
{ | |
"label": "force:doc:commands:list", | |
"description": "", | |
"command": "sfdx force:doc:commands:list" | |
}, | |
{ | |
"label": "force:visualforce:component:create", | |
"description": "", | |
"command": "sfdx force:visualforce:component:create -n ${input:name} -l ${input:label} --outputdir \"${input:sourcepath_component}\"", | |
"beforeTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "CheckFileExist", | |
"params": ["${sourcepath_component}/${name}.component"] | |
} | |
], | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": ["${sourcepath_component}/${name}.component"] | |
} | |
] | |
}, | |
{ | |
"label": "force:visualforce:page:create", | |
"description": "", | |
"command": "sfdx force:visualforce:page:create -n ${input:page_name} -l ${input:page_name} --outputdir \"${input:sourcepath_vf}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": ["${sourcepath_vf}/${page_name}.page"] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:test:create", | |
"description": "", | |
"command": "sfdx force:lightning:test:create -n ${input:aura_name} -d \"${input:sourcepath_aura}/${input:aura_name}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": [ | |
"${sourcepath_aura}/${aura_name}/${aura_name}.resource" | |
] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:interface:create", | |
"description": "", | |
"command": "sfdx force:lightning:interface:create -n ${input:aura_name} -d \"${input:sourcepath_aura}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": [ | |
"${sourcepath_aura}/${aura_name}/${aura_name}.intf" | |
] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:event:create", | |
"description": "", | |
"command": "sfdx force:lightning:event:create -n ${input:aura_name} -d \"${input:sourcepath_aura}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": [ | |
"${sourcepath_aura}/${aura_name}/${aura_name}.evt" | |
] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:component:create:aura", | |
"description": "", | |
"command": "sfdx force:lightning:component:create -n ${input:aura_name} -d \"${input:sourcepath_aura}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": [ | |
"${sourcepath_aura}/${aura_name}/${aura_name}.cmp" | |
] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:app:create", | |
"description": "", | |
"command": "sfdx force:lightning:app:create -n ${input:aura_name} -d \"${input:sourcepath_aura}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": [ | |
"${sourcepath_aura}/${aura_name}/${aura_name}.app" | |
] | |
} | |
] | |
}, | |
{ | |
"label": "force:apex:trigger:create", | |
"description": "", | |
"command": "sfdx force:apex:trigger:create -n ${input:trigger_name} --outputdir \"${input:sourcepath_trigger}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": ["${sourcepath_trigger}/${trigger_name}.trigger"] | |
} | |
] | |
}, | |
{ | |
"label": "force:apex:class:create", | |
"description": "", | |
"command": "sfdx force:apex:class:create -n ${input:apex_name} --outputdir \"${input:sourcepath_apex}\" --template ${select:apex_template}", | |
"beforeTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "CheckFileExist", | |
"params": ["${sourcepath_apex}/${apex_name}.cls"] | |
} | |
], | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": ["${sourcepath_apex}/${apex_name}.cls"] | |
} | |
] | |
}, | |
{ | |
"label": "force:lightning:component:create:lwc", | |
"description": "", | |
"command": "sfdx force:lightning:component:create --type lwc -n ${input:lwc_name} --outputdir \"${input:sourcepath_lwc}\"", | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "OpenFile", | |
"params": ["${sourcepath_lwc}/${lwc_name}/${lwc_name}.html"] | |
} | |
] | |
}, | |
{ | |
"label": "force:data:soql:query", | |
"description": "", | |
"command": "sfdx force:data:soql:query -u ${select:SFDX_ALIAS} -q \"${input:soql_str}\" --resultformat ${select:soql_result_format}" | |
}, | |
{ | |
"label": "force:data:soql:query:write_to_file", | |
"description": "", | |
"command": "sfdx force:data:soql:query -u ${select:SFDX_ALIAS} -q \"${input:soql}\" --resultformat ${select:soql_result_format} > ${input:soql_result}" | |
}, | |
{ | |
"label": "force:data:tree:export", | |
"description": "", | |
"command": "sfdx force:data:tree:export -u ${select:SFDX_ALIAS} -q \"${input:soql}\" --outputdir=${input:data_dir}" | |
}, | |
{ | |
"label": "force:data:tree:import", | |
"description": "", | |
"command": "sfdx force:data:tree:import -u ${select:SFDX_ALIAS} -f \"${input:file}\" --loglevel ${select:LOGLEVEL}" | |
}, | |
{ | |
"label": "force:data:tree:import:plan", | |
"description": "", | |
"command": "sfdx force:data:tree:import -u ${select:SFDX_ALIAS} --plan \"${input:plan_file}\" --loglevel debug" | |
}, | |
{ | |
"label": "force:data:record:delete:by_sobject_id", | |
"description": "", | |
"command": "sfdx force:data:record:delete -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --sobjectid ${input:sobject_id}" | |
}, | |
{ | |
"label": "force:data:record:delete:by_where_condition", | |
"description": "", | |
"command": "sfdx force:data:record:delete -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --where \"${input:where_condition}\"" | |
}, | |
{ | |
"label": "force:data:record:get:by_sobject_id", | |
"description": "", | |
"command": "sfdx force:data:record:get -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --sobjectid ${input:sobject_id}" | |
}, | |
{ | |
"label": "force:data:record:get:by_where_condition", | |
"description": "", | |
"command": "sfdx force:data:record:get -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --where \"${input:where_condition}\"" | |
}, | |
{ | |
"label": "force:data:record:update:by_sobject_id", | |
"description": "", | |
"command": "sfdx force:data:record:update -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --sobjectid ${input:sobject_id} --values \"${input:fieldName_newvalue}\"" | |
}, | |
{ | |
"label": "force:data:record:update:by_where_condition", | |
"description": "", | |
"command": "sfdx force:data:record:update -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --where \"${input:where_condition}\" --values \"${input:fieldName_newvalue}\"" | |
}, | |
{ | |
"label": "force:data:record:create", | |
"description": "", | |
"command": "sfdx force:data:record:create -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --values \"${input:fieldName_value}\" --loglevel ${select:LOGLEVEL} " | |
}, | |
{ | |
"label": "force:data:bulk:upsert", | |
"description": "", | |
"command": "sfdx force:data:bulk:upsert -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} -f \"${input:file}\" --externalid ${input:external_id} --loglevel ${select:LOGLEVEL} " | |
}, | |
{ | |
"label": "force:data:bulk:delete", | |
"description": "", | |
"command": "sfdx force:data:bulk:delete -u ${select:SFDX_ALIAS} --sobjecttype ${input:sobject_type} --csvfile \"${input:file}\" --loglevel ${select:LOGLEVEL} " | |
}, | |
{ | |
"label": "force:data:bulk:status", | |
"description": "", | |
"command": "sfdx force:data:bulk:status --jobid ${input:bulk_jobid}" | |
}, | |
{ | |
"label": "force:schema:sobject:describe", | |
"description": "", | |
"command": "sfdx force:schema:sobject:describe --sobjecttype ${input:sobject_type}" | |
}, | |
{ | |
"label": "force:schema:sobject:describe:usetoolingapi", | |
"description": "", | |
"command": "sfdx force:schema:sobject:describe --sobjecttype ${input:sobject_type} --usetoolingapi" | |
}, | |
{ | |
"label": "force:config:list", | |
"description": "", | |
"command": "sfdx force:config:list" | |
}, | |
{ | |
"label": "force:doc:commands:display", | |
"description": "", | |
"command": "sfdx force:doc:commands:display" | |
}, | |
{ | |
"label": "force:limits:api:display", | |
"description": "", | |
"command": "sfdx force:limits:api:display -u ${select:SFDX_ALIAS} " | |
}, | |
{ | |
"label": "force:org:create:help", | |
"description": "", | |
"command": "sfdx force:org:create --help" | |
}, | |
{ | |
"label": "force:org:create", | |
"description": "", | |
"command": "sfdx force:org:create --setdefaultusername --definitionfile=${input:scratch_org_definitionfile} --setalias=${input:scratch_org_alias_name} --targetdevhubusername=${input:target_devhub_username}" | |
}, | |
{ | |
"label": "force:source:push", | |
"description": "", | |
"command": "sfdx force:source:push --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:user:create:help", | |
"description": "", | |
"command": "sfdx force:user:create --help" | |
}, | |
{ | |
"label": "force:user:password:generate", | |
"description": "", | |
"command": "sfdx force:user:password:generate --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:user:display", | |
"description": "", | |
"command": "sfdx force:user:display --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:user:list", | |
"description": "", | |
"command": "sfdx force:user:list --targetusername=${select:SFDX_ALIAS}" | |
}, | |
{ | |
"label": "force:user:permset:assign", | |
"description": "", | |
"command": "sfdx force:user:permset:assign --targetusername=${select:SFDX_ALIAS} --permsetname ${input:PERMSETNAME}" | |
}, | |
{ | |
"label": "force:source:diff:metadata", | |
"description": "", | |
"cwd": "${TMPDIR}/xycode/sfdx/", | |
"command": "sfdx force:source:retrieve -p ${file} -u ${select:SFDX_ALIAS}", | |
"beforeTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "RemoveFile", | |
"params": ["${TMPDIR}/xycode/sfdx/${relativeFile}"] | |
}, | |
{ | |
"type": "buildin", | |
"fn": "Mkdirs", | |
"params": ["${TMPDIR}/xycode/sfdx/${relativeFileDirname}"] | |
}, | |
{ | |
"type": "buildin", | |
"fn": "CopyFile", | |
"params": [ | |
"${XYCODE_PATH}/sfdx/sfdx-project.json", | |
"${TMPDIR}/xycode/sfdx/sfdx-project.json" | |
] | |
} | |
], | |
"afterTriggers": [ | |
{ | |
"type": "buildin", | |
"fn": "Diff", | |
"params": [ | |
"${file}", | |
"${TMPDIR}/xycode/sfdx/${relativeFile}", | |
"${workspaceFolderBasename} Local <-> Server" | |
] | |
} | |
] | |
} | |
], | |
"variables": { | |
"SFDX_ALIAS": {}, | |
"instanceurl": { | |
"label": "sfdc instance url", | |
"description": "", | |
"value": [ | |
"https://login.salesforce.com", | |
"https://test.salesforce.com" | |
] | |
}, | |
"sfdc_url": { | |
"label": "open sfdc url", | |
"description": "", | |
"value": [ | |
"/home/home.jsp", | |
"/apexpages/setup/listAsyncApexJobs.apexp", | |
"/750?setupid=AsyncApiJobStatus", | |
"/005", | |
"/_ui/common/apex/debug/ApexCSIPage", | |
"/setup/ui/listApexTraces.apexp?setupid=ApexDebugLogs", | |
"/p/setup/custent/CustomObjectsPage?setupid=CustomObjects", | |
"/changemgmt/listOutboundChangeSet.apexp", | |
"/p/setup/layout/LayoutFieldList?type=Opportunity", | |
"/p/setup/layout/LayoutFieldList?type=Account", | |
"/p/setup/layout/LayoutFieldList?type=Lead", | |
"/p/setup/layout/LayoutFieldList?type=Case" | |
] | |
}, | |
"soql_result_format": { | |
"label": "soql result format", | |
"description": "", | |
"value": ["human", "csv", "json"] | |
}, | |
"sfdx_project_template": { | |
"label": "sfdx project template", | |
"description": "", | |
"value": ["standard", "empty", "analytics"] | |
}, | |
"LOGLEVEL": { | |
"label": "log level", | |
"description": "", | |
"value": ["trace", "debug", "info", "warn", "error", "fatal"] | |
}, | |
"apex_template": { | |
"label": "sfdc apex template", | |
"description": "", | |
"value": [ | |
"DefaultApexClass", | |
"ApexException", | |
"ApexUnitTest", | |
"InboundEmailService" | |
] | |
}, | |
"METADATA": { | |
"label": "sfdc metadata", | |
"description": "", | |
"separator": ",", | |
"value": [ | |
"ActionLinkGroupTemplate", | |
"AnalyticSnapshot", | |
"ApexClass", | |
"ApexComponent", | |
"ApexPage", | |
"ApexTestSuite", | |
"ApexTrigger", | |
"AppMenu", | |
"ApprovalProcess", | |
"AssignmentRules", | |
"AuraDefinitionBundle", | |
"AuthProvider", | |
"AutoResponseRules ", | |
"BotVersion", | |
"BrandingSet", | |
"CallCenter", | |
"CampaignInfluenceModel", | |
"CaseSubjectParticle", | |
"Certificate", | |
"ChatterExtension", | |
"CleanDataService", | |
"CMSConnectSource", | |
"Community", | |
"CommunityTemplateDefinition", | |
"CommunityThemeDefinition", | |
"ConnectedApp", | |
"ContentAsset", | |
"CorsWhitelistOrigin", | |
"CspTrustedSite", | |
"CustomApplication", | |
"CustomApplicationComponent", | |
"CustomFeedFilter", | |
"CustomLabels", | |
"CustomObject", | |
"CustomObjectTranslation", | |
"CustomPageWebLink", | |
"CustomPermission", | |
"CustomSite", | |
"CustomTab", | |
"Dashboard", | |
"DataCategoryGroup", | |
"DelegateGroup", | |
"Document", | |
"DuplicateRule", | |
"EclairGeoData", | |
"EmailServicesFunction", | |
"EmailTemplate", | |
"EmbeddedServiceBranding", | |
"EmbeddedServiceConfig", | |
"EmbeddedServiceFieldService", | |
"EmbeddedServiceLiveAgent", | |
"EntitlementProcess", | |
"EntitlementTemplate", | |
"EscalationRules", | |
"EventDelivery", | |
"EventSubscription", | |
"ExternalDataSource", | |
"ExternalServiceRegistration", | |
"FeatureParameterBoolean", | |
"FeatureParameterDate", | |
"FeatureParameterInteger", | |
"FlexiPage", | |
"Flow", | |
"FlowCategory", | |
"FlowDefinition", | |
"Folder", | |
"GlobalPicklist", | |
"GlobalValueSet", | |
"GlobalValueSetTranslation", | |
"Group", | |
"HomePageComponent", | |
"HomePageLayout", | |
"InstalledPackage", | |
"KeywordList", | |
"Layout", | |
"Letterhead", | |
"LightningBolt", | |
"LightningComponentBundle", | |
"LightningExperienceTheme", | |
"LiveChatAgentConfig", | |
"LiveChatButton", | |
"LiveChatDeployment", | |
"LiveChatSensitiveDataRule", | |
"ManagedTopics", | |
"MatchingRule", | |
"MilestoneType", | |
"MlDomain", | |
"ModerationRule", | |
"NamedCredential", | |
"Network", | |
"NetworkBranding", | |
"PathAssistant", | |
"PermissionSet", | |
"PlatformCachePartition", | |
"Portal", | |
"PostTemplate", | |
"PresenceDeclineReason", | |
"PresenceUserConfig", | |
"Profile", | |
"ProfileActionOverride", | |
"ProfilePasswordPolicy", | |
"Queue", | |
"QueueRoutingConfig", | |
"QuickAction", | |
"RemoteSiteSetting", | |
"Report", | |
"ReportType", | |
"Role", | |
"RoleOrTerritory", | |
"SamlSsoConfig", | |
"Scontrol", | |
"ServiceChannel", | |
"ServicePresenceStatus", | |
"SharingRules", | |
"SiteDotCom", | |
"Skill", | |
"StandardValueSet", | |
"StandardValueSetTranslation", | |
"StaticResource", | |
"SynonymDictionary", | |
"Territory", | |
"Territory2", | |
"Territory2Model", | |
"Territory2Rule", | |
"Territory2Type", | |
"TopicsForObjects", | |
"TransactionSecurityPolicy", | |
"Translations", | |
"UserCriteria", | |
"WaveApplication", | |
"WaveDashboard", | |
"WaveDataflow", | |
"WaveDataset", | |
"WaveLens", | |
"WaveTemplateBundle", | |
"WaveXmd", | |
"Workflow" | |
] | |
}, | |
"base_metadata": { | |
"label": "default sfdc metadata", | |
"description": "", | |
"value": "ApexClass, ApexPage, ApexComponent, ApexTrigger, LightningComponentBundle, AuraDefinitionBundle, CustomObject" | |
}, | |
"scratch_org_definitionfile": { | |
"label": "sfdx scratch definitionfile path", | |
"description": "", | |
"value": "config/project-scratch-def.json" | |
}, | |
"log_size": { | |
"label": "log size, default 1", | |
"description": "", | |
"value": 1 | |
}, | |
"apiVersion": { | |
"label": "sfdc api version", | |
"description": "", | |
"value": "47.0" | |
}, | |
"soql_result": { | |
"label": "soql result file path", | |
"description": "", | |
"value": "./sfdc_soql.log" | |
}, | |
"sourcepath": { | |
"label": "sfdx source path", | |
"description": "", | |
"value": "./force-app/main/default" | |
}, | |
"sourcepath_aura": { | |
"label": "sfdx aura source path ", | |
"description": "", | |
"value": "./force-app/main/default/aura" | |
}, | |
"sourcepath_lwc": { | |
"label": "sfdx lwc source path ", | |
"description": "", | |
"value": "./force-app/main/default/lwc" | |
}, | |
"sourcepath_apex": { | |
"label": "sfdx apex source path ", | |
"description": "", | |
"value": "./force-app/main/default/classes" | |
}, | |
"sourcepath_trigger": { | |
"label": "sfdx trigger source path ", | |
"description": "", | |
"value": "./force-app/main/default/triggers" | |
}, | |
"sourcepath_vf": { | |
"label": "sfdx visualforce source path ", | |
"description": "", | |
"value": "./force-app/main/default/pages" | |
}, | |
"sourcepath_component": { | |
"label": "sfdx visualforce component source path ", | |
"description": "", | |
"value": "./force-app/main/default/components" | |
}, | |
"data_dir": { | |
"label": "export data path", | |
"description": "", | |
"value": "./data/" | |
}, | |
"grep_log_pattern": { | |
"label": "grep pattern", | |
"description": "", | |
"value": "USER_DEBUG" | |
}, | |
"log_file": { | |
"label": "sfdc tail log path", | |
"description": "", | |
"value": "./sfdc_tail.log" | |
}, | |
"skip_trace_flag_setup": { | |
"label": "skip_trace_flag_setup", | |
"description": "", | |
"value": "--skiptraceflag" | |
}, | |
"project_directory": { | |
"label": "project directory", | |
"description": "", | |
"value": "" | |
}, | |
"package_xml": { | |
"label": "sfdc package.xml path", | |
"description": "", | |
"filters": { "package.xml": ["xml"] }, | |
"value": "./manifest/package.xml" | |
}, | |
"apexcodefile": { | |
"label": "apex code snippt file", | |
"description": "", | |
"filters": { "Apex Code Snippt": ["*"] }, | |
"value": "" | |
}, | |
"sfdcsourcesfiles": { | |
"label": "sfdc sources files", | |
"description": "", | |
"separator": ",", | |
"value": "" | |
}, | |
"standard_sobject": { | |
"label": "sfdc standard sobject", | |
"description": "sfdc standard sobject", | |
"separator": ",", | |
"value": [ | |
"CustomObject:AcceptedEventRelation", | |
"CustomObject:Account", | |
"CustomObject:AccountBrand", | |
"CustomObject:AccountBrandShare", | |
"CustomObject:AccountContactRelation", | |
"CustomObject:AccountCleanInfo", | |
"CustomObject:AccountContactRole", | |
"CustomObject:AccountHistory", | |
"CustomObject:AccountInsight", | |
"CustomObject:AccountOwnerSharingRule", | |
"CustomObject:AccountPartner", | |
"CustomObject:AccountRelationship", | |
"CustomObject:AccountRelationshipHistory", | |
"CustomObject:AccountRelationshipShare", | |
"CustomObject:AccountRelationshipShareRule", | |
"CustomObject:AccountShare", | |
"CustomObject:AccountTag", | |
"CustomObject:AccountTeamMember", | |
"CustomObject:AccountTerritoryAssignmentRule", | |
"CustomObject:AccountTerritoryAssignmentRuleItem", | |
"CustomObject:AccountTerritorySharingRule", | |
"CustomObject:AccountUserTerritory2View", | |
"CustomObject:ActionLinkGroupTemplate", | |
"CustomObject:ActionLinkTemplate", | |
"CustomObject:ActionPlan", | |
"CustomObject:ActionPlanItem", | |
"CustomObject:ActionPlanShare", | |
"CustomObject:ActionPlanTemplate", | |
"CustomObject:ActionPlanTemplateShare", | |
"CustomObject:ActionPlanTemplateItem", | |
"CustomObject:ActionPlanTemplateItemValue", | |
"CustomObject:ActionPlanTemplateVersion", | |
"CustomObject:ActiveScratchOrg", | |
"CustomObject:ActivityHistory", | |
"CustomObject:ActivityMetric", | |
"CustomObject:AdditionalNumber", | |
"CustomObject:Address", | |
"CustomObject:AgentWork", | |
"CustomObject:AIInsightAction", | |
"CustomObject:AIInsightFeedback", | |
"CustomObject:AIInsightReason", | |
"CustomObject:AIInsightValue", | |
"CustomObject:AIRecordInsight", | |
"CustomObject:AllowedEmailDomain", | |
"CustomObject:Announcement", | |
"CustomObject:AppAnalyticsQueryRequest", | |
"CustomObject:AppDefinition", | |
"CustomObject:AppExtension", | |
"CustomObject:AppMenuItem", | |
"CustomObject:AppleDomainVerification", | |
"CustomObject:AppointmentSchedulingPolicy", | |
"CustomObject:Approval", | |
"CustomObject:AppTabMember", | |
"CustomObject:Article Type__DataCategorySelection", | |
"CustomObject:Asset", | |
"CustomObject:AssetOwnerSharingRule", | |
"CustomObject:AssetRelationship", | |
"CustomObject:AssetShare", | |
"CustomObject:AssetTag", | |
"CustomObject:AssetTokenEvent", | |
"CustomObject:AssignedResource", | |
"CustomObject:AssignmentRule", | |
"CustomObject:AssociatedLocation", | |
"CustomObject:AsyncApexJob", | |
"CustomObject:AttachedContentDocument", | |
"CustomObject:AttachedContentNote", | |
"CustomObject:Attachment", | |
"CustomObject:Audience", | |
"CustomObject:AuraDefinition", | |
"CustomObject:AuraDefinitionBundle", | |
"CustomObject:AuthConfig", | |
"CustomObject:AuthConfigProviders", | |
"CustomObject:AuthorizationForm", | |
"CustomObject:AuthorizationFormConsent", | |
"CustomObject:AuthorizationFormConsentHistory", | |
"CustomObject:AuthorizationFormConsentOwnerSharingRule", | |
"CustomObject:AuthorizationFormConsentShare", | |
"CustomObject:AuthorizationFormDataUse", | |
"CustomObject:AuthorizationFormDataUseHistory", | |
"CustomObject:AuthorizationFormDataUseOwnerSharingRule", | |
"CustomObject:AuthorizationFormDataUseShare", | |
"CustomObject:AuthorizationFormHistory", | |
"CustomObject:AuthorizationFormOwnerSharingRule", | |
"CustomObject:AuthorizationFormShare", | |
"CustomObject:AuthorizationFormText", | |
"CustomObject:AuthorizationFormTextHistory", | |
"CustomObject:AuthProvider", | |
"CustomObject:AuthSession", | |
"CustomObject:BackgroundOperation", | |
"CustomObject:BackgroundOperationResult", | |
"CustomObject:BatchApexErrorEvent", | |
"CustomObject:Bookmark", | |
"CustomObject:BrandTemplate", | |
"CustomObject:BusinessHours", | |
"CustomObject:BusinessProcess", | |
"CustomObject:Calendar", | |
"CustomObject:CallCenter", | |
"CustomObject:CallDisposition", | |
"CustomObject:CallDispositionCategory", | |
"CustomObject:Campaign", | |
"CustomObject:CampaignHistory", | |
"CustomObject:CampaignInfluence", | |
"CustomObject:CampaignInfluenceModel", | |
"CustomObject:CampaignMember", | |
"CustomObject:CampaignMemberStatus", | |
"CustomObject:CampaignOwnerSharingRule", | |
"CustomObject:CampaignShare", | |
"CustomObject:CampaignTag", | |
"CustomObject:Case", | |
"CustomObject:CaseArticle", | |
"CustomObject:CaseComment", | |
"CustomObject:CaseContactRole", | |
"CustomObject:CaseHistory", | |
"CustomObject:CaseMilestone", | |
"CustomObject:CaseOwnerSharingRule", | |
"CustomObject:CaseShare", | |
"CustomObject:CaseSolution", | |
"CustomObject:CaseStatus", | |
"CustomObject:CaseTag", | |
"CustomObject:CaseTeamMember", | |
"CustomObject:CaseTeamRole", | |
"CustomObject:CaseTeamTemplate", | |
"CustomObject:CaseTeamTemplateMember", | |
"CustomObject:CaseTeamTemplateRecord", | |
"CustomObject:CategoryData", | |
"CustomObject:CategoryNode", | |
"CustomObject:CategoryNodeLocalization", | |
"CustomObject:ChannelObjectLinkingRule", | |
"CustomObject:ChannelProgram", | |
"CustomObject:ChannelProgramHistory", | |
"CustomObject:ChannelProgramLevel", | |
"CustomObject:ChannelProgramLevelHistory", | |
"CustomObject:ChannelProgramLevelShare", | |
"CustomObject:ChannelProgramMember", | |
"CustomObject:ChannelProgramMemberHistory", | |
"CustomObject:ChannelProgramMemberShare", | |
"CustomObject:ChannelProgramOwnerSharingRule", | |
"CustomObject:ChannelProgramShare", | |
"CustomObject:ChatterActivity", | |
"CustomObject:ChatterAnswersActivity", | |
"CustomObject:ChatterAnswersReputationLevel", | |
"CustomObject:ChatterConversation", | |
"CustomObject:ChatterConversationMember", | |
"CustomObject:ChatterMessage", | |
"CustomObject:ClientBrowser", | |
"CustomObject:CollaborationGroup", | |
"CustomObject:CollaborationGroupMember", | |
"CustomObject:CollaborationGroupMemberRequest", | |
"CustomObject:CollaborationGroupRecord", | |
"CustomObject:CollaborationInvitation", | |
"CustomObject:ColorDefinition", | |
"CustomObject:CombinedAttachment", | |
"CustomObject:Community (Zone)", | |
"CustomObject:ConnectedApplication", | |
"CustomObject:Consumption Rate", | |
"CustomObject:Consumption Schedule", | |
"CustomObject:Contact", | |
"CustomObject:ContactCleanInfo", | |
"CustomObject:ContactHistory", | |
"CustomObject:ContactPointTypeConsent", | |
"CustomObject:ContactPointTypeConsentHistory", | |
"CustomObject:ContactPointTypeConsentOwnerSharingRule", | |
"CustomObject:ContactPointTypeConsentShare", | |
"CustomObject:ContactOwnerSharingRule", | |
"CustomObject:ContactRequest", | |
"CustomObject:ContactRequestShare", | |
"CustomObject:ContactShare", | |
"CustomObject:ContactSuggestionInsight", | |
"CustomObject:ContactTag", | |
"CustomObject:ContentAsset", | |
"CustomObject:ContentBody", | |
"CustomObject:ContentDistribution", | |
"CustomObject:ContentDistributionView", | |
"CustomObject:ContentDocument", | |
"CustomObject:ContentDocumentHistory", | |
"CustomObject:ContentDocumentLink", | |
"CustomObject:ContentDocumentListViewMapping", | |
"CustomObject:ContentDocumentSubscription", | |
"CustomObject:ContentFolder", | |
"CustomObject:ContentFolderItem", | |
"CustomObject:ContentFolderLink", | |
"CustomObject:ContentFolderMember", | |
"CustomObject:ContentHubItem", | |
"CustomObject:ContentHubRepository", | |
"CustomObject:ContentNote", | |
"CustomObject:ContentNotification", | |
"CustomObject:ContentTagSubscription", | |
"CustomObject:ContentUserSubscription", | |
"CustomObject:ContentVersion", | |
"CustomObject:ContentVersionComment", | |
"CustomObject:ContentVersionHistory", | |
"CustomObject:ContentVersionRating", | |
"CustomObject:ContentWorkspace", | |
"CustomObject:ContentWorkspaceDoc", | |
"CustomObject:ContentWorkspaceMember", | |
"CustomObject:ContentWorkspacePermission", | |
"CustomObject:ContentWorkspaceSubscription", | |
"CustomObject:Contract", | |
"CustomObject:ContractContactRole", | |
"CustomObject:ContractHistory", | |
"CustomObject:ContractLineItem", | |
"CustomObject:ContractLineItemHistory", | |
"CustomObject:ContractStatus", | |
"CustomObject:ContractTag", | |
"CustomObject:ConversationContextEntry", | |
"CustomObject:ConversationEntry", | |
"CustomObject:CorsWhitelistEntry", | |
"CustomObject:CronJobDetail", | |
"CustomObject:CronTrigger", | |
"CustomObject:CurrencyType", | |
"CustomObject:CustomBrand", | |
"CustomObject:CustomBrandAsset", | |
"CustomObject:CustomHelpMenuItem", | |
"CustomObject:CustomHelpMenuSection", | |
"CustomObject:CustomHttpHeader", | |
"CustomObject:CustomNotificationType", | |
"CustomObject:CustomPermission", | |
"CustomObject:CustomPermissionDependency", | |
"CustomObject:DandBCompany", | |
"CustomObject:Dashboard", | |
"CustomObject:DashboardComponent", | |
"CustomObject:DashboardTag", | |
"CustomObject:DataAssessmentFieldMetric", | |
"CustomObject:DataAssessmentMetric", | |
"CustomObject:DataAssessmentValueMetric", | |
"CustomObject:DatacloudCompany", | |
"CustomObject:DatacloudContact", | |
"CustomObject:DatacloudDandBCompany", | |
"CustomObject:DatacloudOwnedEntity", | |
"CustomObject:DatacloudPurchaseUsage", | |
"CustomObject:DatacloudSocialHandle", | |
"CustomObject:DataIntegrationRecordPurchasePermission", | |
"CustomObject:DatasetExport", | |
"CustomObject:DatasetExportPart", | |
"CustomObject:DataUseLegalBasis", | |
"CustomObject:DataUseLegalBasisHistory", | |
"CustomObject:DataUseLegalBasisOwnerSharingRule", | |
"CustomObject:DataUseLegalBasisShare", | |
"CustomObject:DataUsePurpose", | |
"CustomObject:DataUsePurposeHistory", | |
"CustomObject:DataUsePurposeOwnerSharingRule", | |
"CustomObject:DataUsePurposeShare", | |
"CustomObject:DatedConversionRate", | |
"CustomObject:DcSocialProfile", | |
"CustomObject:DcSocialProfileHandle", | |
"CustomObject:DeclinedEventRelation", | |
"CustomObject:DigitalSignature", | |
"CustomObject:Division", | |
"CustomObject:DivisionLocalization", | |
"CustomObject:Document", | |
"CustomObject:DocumentAttachmentMap", | |
"CustomObject:DocumentTag", | |
"CustomObject:Domain", | |
"CustomObject:DomainSite", | |
"CustomObject:DuplicateJob", | |
"CustomObject:DuplicateJobDefinition", | |
"CustomObject:DuplicateJobMatchingRule", | |
"CustomObject:DuplicateJobMatchingRuleDefinition", | |
"CustomObject:DuplicateRecordItem", | |
"CustomObject:DuplicateRecordSet", | |
"CustomObject:DuplicateRule", | |
"CustomObject:EmailDomainFilter", | |
"CustomObject:EmailDomainKey", | |
"CustomObject:EmailMessage", | |
"CustomObject:EmailMessageRelation", | |
"CustomObject:EmailRelay", | |
"CustomObject:EmailServicesAddress", | |
"CustomObject:EmailServicesFunction", | |
"CustomObject:EmailStatus", | |
"CustomObject:EmailTemplate", | |
"CustomObject:EmbeddedServiceDetail", | |
"CustomObject:EmbeddedServiceLabel", | |
"CustomObject:EnhancedLetterhead", | |
"CustomObject:Entitlement", | |
"CustomObject:EntitlementContact", | |
"CustomObject:EntitlementHistory", | |
"CustomObject:EntitlementTemplate", | |
"CustomObject:EntityHistory", | |
"CustomObject:EntityMilestone", | |
"CustomObject:EntitySubscription", | |
"CustomObject:EnvironmentHubMember", | |
"CustomObject:Event", | |
"CustomObject:EventLogFile", | |
"CustomObject:EventRelation", | |
"CustomObject:EventBusSubscriber", | |
"CustomObject:EventTag", | |
"CustomObject:EventWhoRelation", | |
"CustomObject:ExpressionFilter", | |
"CustomObject:ExpressionFilterCriteria", | |
"CustomObject:ExternalDataSource", | |
"CustomObject:ExternalDataUserAuth", | |
"CustomObject:ExternalSocialAccount", | |
"CustomObject:FeedAttachment", | |
"CustomObject:FeedComment", | |
"CustomObject:FeedItem", | |
"CustomObject:FeedLike", | |
"CustomObject:FeedPollChoice", | |
"CustomObject:FeedPollVote", | |
"CustomObject:FeedPost", | |
"CustomObject:FeedRevision", | |
"CustomObject:FeedTrackedChange", | |
"CustomObject:FieldHistoryArchive", | |
"CustomObject:FieldPermissions", | |
"CustomObject:FieldSecurityClassification", | |
"CustomObject:FieldServiceMobileSettings", | |
"CustomObject:FiscalYearSettings", | |
"CustomObject:FlexQueueItem", | |
"CustomObject:FlowDefinitionView", | |
"CustomObject:FlowInterview", | |
"CustomObject:FlowInterviewOwnerSharingRule", | |
"CustomObject:FlowInterviewShare", | |
"CustomObject:FlowRecordRelation", | |
"CustomObject:FlowStageRelation", | |
"CustomObject:FlowVariableView", | |
"CustomObject:FlowVersionView", | |
"CustomObject:Folder", | |
"CustomObject:FolderedContentDocument", | |
"CustomObject:ForecastingAdjustment", | |
"CustomObject:ForecastingDisplayedFamily", | |
"CustomObject:ForecastingFact", | |
"CustomObject:ForecastingItem", | |
"CustomObject:ForecastingOwnerAdjustment", | |
"CustomObject:ForecastingQuota", | |
"CustomObject:ForecastingShare", | |
"CustomObject:ForecastingType", | |
"CustomObject:ForecastingUserPreference", | |
"CustomObject:ForecastShare", | |
"CustomObject:FormulaFunction", | |
"CustomObject:FormulaFunctionCategory", | |
"CustomObject:Goal", | |
"CustomObject:GoalHistory", | |
"CustomObject:GoalLink", | |
"CustomObject:GoalShare", | |
"CustomObject:GoogleDoc", | |
"CustomObject:Group", | |
"CustomObject:GroupMember", | |
"CustomObject:HashtagDefinition", | |
"CustomObject:HealthCareDiagnosis", | |
"CustomObject:HealthCareProcedure", | |
"CustomObject:Holiday", | |
"CustomObject:IconDefinition", | |
"CustomObject:Idea", | |
"CustomObject:IdeaComment", | |
"CustomObject:IdeaReputation", | |
"CustomObject:IdeaReputationLevel", | |
"CustomObject:IdeaTheme", | |
"CustomObject:IdpEventLog", | |
"CustomObject:IframeWhiteListUrl", | |
"CustomObject:Individual", | |
"CustomObject:IndividualHistory", | |
"CustomObject:IndividualShare", | |
"CustomObject:JobProfile", | |
"CustomObject:JobProfileHistory", | |
"CustomObject:JobProfileOwnerSharingRule", | |
"CustomObject:JobProfileShare", | |
"CustomObject:Knowledge__Feed", | |
"CustomObject:Knowledge__ka", | |
"CustomObject:Knowledge__kav", | |
"CustomObject:Knowledge__DataCategorySelection", | |
"CustomObject:KnowledgeableUser", | |
"CustomObject:KnowledgeArticle", | |
"CustomObject:KnowledgeArticleVersion", | |
"CustomObject:KnowledgeArticleVersionHistory", | |
"CustomObject:KnowledgeArticleViewStat", | |
"CustomObject:KnowledgeArticleVoteStat", | |
"CustomObject:LandingPage", | |
"CustomObject:Lead", | |
"CustomObject:LeadCleanInfo", | |
"CustomObject:LeadHistory", | |
"CustomObject:LeadOwnerSharingRule", | |
"CustomObject:LeadShare", | |
"CustomObject:LeadStatus", | |
"CustomObject:LeadTag", | |
"CustomObject:LightningExperienceTheme", | |
"CustomObject:LightningOnboardingConfig", | |
"CustomObject:LightningToggleMetrics", | |
"CustomObject:LightningUsageByAppTypeMetrics", | |
"CustomObject:LightningUsageByBrowserMetrics", | |
"CustomObject:LightningUsageByPageMetrics", | |
"CustomObject:LightningUsageByFlexiPageMetrics", | |
"CustomObject:LightningExitByPageMetrics", | |
"CustomObject:LineitemOverride", | |
"CustomObject:LinkedArticle", | |
"CustomObject:LinkedArticleFeed", | |
"CustomObject:LinkedArticleHistory", | |
"CustomObject:ListEmail", | |
"CustomObject:ListEmailIndividualRecipient", | |
"CustomObject:ListEmailRecipientSource", | |
"CustomObject:ListView", | |
"CustomObject:ListViewChart", | |
"CustomObject:ListViewChartInstance", | |
"CustomObject:LiveAgentSession", | |
"CustomObject:LiveAgentSessionHistory", | |
"CustomObject:LiveAgentSessionOwnerSharingRule", | |
"CustomObject:LiveAgentSessionShare", | |
"CustomObject:LiveChatBlockingRule", | |
"CustomObject:LiveChatButton", | |
"CustomObject:LiveChatButtonDeployment", | |
"CustomObject:LiveChatButtonSkill", | |
"CustomObject:LiveChatDeployment", | |
"CustomObject:LiveChatSensitiveDataRule", | |
"CustomObject:LiveChatTranscript", | |
"CustomObject:LiveChatTranscriptChangeEvent", | |
"CustomObject:LiveChatTranscriptEvent", | |
"CustomObject:LiveChatTranscriptFeed", | |
"CustomObject:LiveChatTranscriptHistory", | |
"CustomObject:LiveChatTranscriptOwnerSharingRule", | |
"CustomObject:LiveChatTranscriptShare", | |
"CustomObject:LiveChatTranscriptSkill", | |
"CustomObject:LiveChatUserConfig", | |
"CustomObject:LiveChatUserConfigProfile", | |
"CustomObject:LiveChatUserConfigUser", | |
"CustomObject:LiveChatVisitor", | |
"CustomObject:Location", | |
"CustomObject:LoginEvent", | |
"CustomObject:LoginGeo", | |
"CustomObject:LoginHistory", | |
"CustomObject:LoginIp", | |
"CustomObject:LogoutEventStream", | |
"CustomObject:LookedUpFromActivity", | |
"CustomObject:Macro", | |
"CustomObject:MacroHistory", | |
"CustomObject:MacroInstruction", | |
"CustomObject:MacroShare", | |
"CustomObject:MacroUsage", | |
"CustomObject:MailmergeTemplate", | |
"CustomObject:MaintenanceAsset", | |
"CustomObject:MaintenancePlan", | |
"CustomObject:MarketingForm", | |
"CustomObject:MarketingLink", | |
"CustomObject:MatchingRule", | |
"CustomObject:MatchingRuleItem", | |
"CustomObject:MessagingChannel", | |
"CustomObject:MessagingChannelSkill", | |
"CustomObject:MessagingConfiguration", | |
"CustomObject:MessagingDeliveryError", | |
"CustomObject:MessagingEndUser", | |
"CustomObject:MessagingEndUserHistory", | |
"CustomObject:MessagingEndUserShare", | |
"CustomObject:MessagingLink", | |
"CustomObject:MessagingSession", | |
"CustomObject:MessagingSessionFeed", | |
"CustomObject:MessagingSessionHistory", | |
"CustomObject:MessagingSessionShare", | |
"CustomObject:MessagingTemplate", | |
"CustomObject:MetadataPackage", | |
"CustomObject:MetadataPackageVersion", | |
"CustomObject:Metric", | |
"CustomObject:MetricDataLink", | |
"CustomObject:MetricDataLinkHistory", | |
"CustomObject:MetricHistory", | |
"CustomObject:MetricsDataFile", | |
"CustomObject:MetricShare", | |
"CustomObject:MilestoneType", | |
"CustomObject:MobileSettingsAssignment", | |
"CustomObject:MyDomainDiscoverableLogin", | |
"CustomObject:MutingPermissionSet", | |
"CustomObject:Name", | |
"CustomObject:NamedCredential", | |
"CustomObject:NamespaceRegistry", | |
"CustomObject:NavigationLinkSet", | |
"CustomObject:NavigationMenuItem", | |
"CustomObject:NavigationMenuItemLocalization", | |
"CustomObject:Network", | |
"CustomObject:NetworkActivityAudit", | |
"CustomObject:NetworkAffinity", | |
"CustomObject:NetworkDiscoverableLogin", | |
"CustomObject:NetworkMember", | |
"CustomObject:NetworkMemberGroup", | |
"CustomObject:NetworkModeration", | |
"CustomObject:NetworkPageOverride", | |
"CustomObject:NetworkSelfRegistration", | |
"CustomObject:NetworkUserHistoryRecent", | |
"CustomObject:Note", | |
"CustomObject:NoteAndAttachment", | |
"CustomObject:NoteTag", | |
"CustomObject:OauthCustomScope", | |
"CustomObject:OauthToken", | |
"CustomObject:ObjectPermissions", | |
"CustomObject:ObjectTerritory2AssignmentRule", | |
"CustomObject:ObjectTerritory2AssignmentRuleItem", | |
"CustomObject:ObjectTerritory2Association", | |
"CustomObject:OpenActivity", | |
"CustomObject:OperatingHours", | |
"CustomObject:OperatingHoursHistory", | |
"CustomObject:Opportunity", | |
"CustomObject:OpportunityCompetitor", | |
"CustomObject:OpportunityContactRole", | |
"CustomObject:OpportunityContactRoleSuggestionInsight", | |
"CustomObject:OpportunityFieldHistory", | |
"CustomObject:OpportunityHistory", | |
"CustomObject:OpportunityInsight", | |
"CustomObject:OpportunityLineItem", | |
"CustomObject:OpportunityLineItemSchedule", | |
"CustomObject:OpportunityOverride", | |
"CustomObject:OpportunityOwnerSharingRule", | |
"CustomObject:OpportunityPartner", | |
"CustomObject:OpportunityShare", | |
"CustomObject:OpportunitySplit", | |
"CustomObject:OpportunitySplitType", | |
"CustomObject:OpportunityStage", | |
"CustomObject:OpportunityTag", | |
"CustomObject:OpportunityTeamMember", | |
"CustomObject:Order", | |
"CustomObject:OrderHistory", | |
"CustomObject:OrderItem", | |
"CustomObject:OrderItemHistory", | |
"CustomObject:OrderOwnerSharingRule", | |
"CustomObject:Organization", | |
"CustomObject:OrgDeleteRequest", | |
"CustomObject:OrgWideEmailAddress", | |
"CustomObject:OutOfOffice", | |
"CustomObject:OwnedContentDocument", | |
"CustomObject:OwnerChangeOptionInfo", | |
"CustomObject:PackageLicense", | |
"CustomObject:PackagePushError", | |
"CustomObject:PackagePushJob", | |
"CustomObject:PackagePushRequest", | |
"CustomObject:PackageSubscriber", | |
"CustomObject:Partner", | |
"CustomObject:PartnerFundAllocation", | |
"CustomObject:PartnerFundAllocationHistory", | |
"CustomObject:PartnerFundAllocationOwnerSharingRule", | |
"CustomObject:PartnerFundAllocationShare", | |
"CustomObject:PartnerFundClaim", | |
"CustomObject:PartnerFundClaimHistory", | |
"CustomObject:PartnerFundClaimOwnerSharingRule", | |
"CustomObject:PartnerFundClaimShare", | |
"CustomObject:PartnerFundRequest", | |
"CustomObject:PartnerFundRequestHistory", | |
"CustomObject:PartnerFundRequestOwnerSharingRule", | |
"CustomObject:PartnerFundRequestShare", | |
"CustomObject:PartnerMarketingBudget", | |
"CustomObject:PartnerMarketingBudgetHistory", | |
"CustomObject:PartnerMarketingBudgetOwnerSharingRule", | |
"CustomObject:PartnerMarketingBudgetShare", | |
"CustomObject:PartnerNetworkConnection", | |
"CustomObject:PartnerNetworkRecordConnection", | |
"CustomObject:PartnerNetworkSyncLog", | |
"CustomObject:PartnerRole", | |
"CustomObject:Period", | |
"CustomObject:PermissionSet", | |
"CustomObject:PermissionSetAssignment", | |
"CustomObject:PermissionSetGroup", | |
"CustomObject:PermissionSetGroupComponent", | |
"CustomObject:PermissionSetLicense", | |
"CustomObject:PermissionSetLicenseAssign", | |
"CustomObject:PermissionSetTabSetting", | |
"CustomObject:PlatformAction", | |
"CustomObject:PlatformStatusAlertEvent", | |
"CustomObject:PortalDelegablePermissionSet", | |
"CustomObject:PresenceUserConfig", | |
"CustomObject:PresenceUserConfigProfile", | |
"CustomObject:PresenceUserConfigUser", | |
"CustomObject:Pricebook2", | |
"CustomObject:Pricebook2History", | |
"CustomObject:PricebookEntry", | |
"CustomObject:ProcessDefinition", | |
"CustomObject:ProcessInstance", | |
"CustomObject:ProcessInstanceHistory", | |
"CustomObject:ProcessInstanceStep", | |
"CustomObject:ProcessInstanceNode", | |
"CustomObject:ProcessInstanceWorkitem", | |
"CustomObject:ProcessNode", | |
"CustomObject:Product2", | |
"CustomObject:ProductConsumed", | |
"CustomObject:ProductEntitlementTemplate", | |
"CustomObject:ProductItem", | |
"CustomObject:ProductItemTransaction", | |
"CustomObject:ProductRequest", | |
"CustomObject:ProductRequestHistory", | |
"CustomObject:ProductRequestLineItem", | |
"CustomObject:ProductRequestOwnerSharingRule", | |
"CustomObject:ProductRequestShare", | |
"CustomObject:ProductRequired", | |
"CustomObject:ProductTransfer", | |
"CustomObject:ProductTransferHistory", | |
"CustomObject:ProductTransferOwnerSharingRule", | |
"CustomObject:ProductTransferShare", | |
"CustomObject:Profile", | |
"CustomObject:ProfileSkill", | |
"CustomObject:ProfileSkillEndorsement", | |
"CustomObject:ProfileSkillEndorsementHistory", | |
"CustomObject:ProfileSkillHistory", | |
"CustomObject:ProfileSkillShare", | |
"CustomObject:ProfileSkillUser", | |
"CustomObject:ProfileSkillUserHistory", | |
"CustomObject:Prompt", | |
"CustomObject:PromptAction", | |
"CustomObject:PromptActionOwnerSharingRule", | |
"CustomObject:PromptActionShare", | |
"CustomObject:PromptVersion", | |
"CustomObject:Reference: PushTopic", | |
"CustomObject:QuantityForecast", | |
"CustomObject:QuantityForecastHistory", | |
"CustomObject:QueueRoutingConfig", | |
"CustomObject:Question", | |
"CustomObject:QuestionDataCategorySelection", | |
"CustomObject:QuestionReportAbuse", | |
"CustomObject:QuestionSubscription", | |
"CustomObject:QueueSobject", | |
"CustomObject:QuickText", | |
"CustomObject:QuickTextHistory", | |
"CustomObject:QuickTextOwnerSharingRule", | |
"CustomObject:QuickTextShare", | |
"CustomObject:QuickTextUsage", | |
"CustomObject:QuickTextUsageShare", | |
"CustomObject:Quote", | |
"CustomObject:QuoteDocument", | |
"CustomObject:QuoteLineItem", | |
"CustomObject:QuoteOwnerSharingRule", | |
"CustomObject:QuoteShare", | |
"CustomObject:RecentlyViewed", | |
"CustomObject:Recommendation", | |
"CustomObject:RecordAction", | |
"CustomObject:RecordActionHistory", | |
"CustomObject:RecordType", | |
"CustomObject:RecordTypeLocalization", | |
"CustomObject:RecordVisibility (Pilot)", | |
"CustomObject:RemoteKeyCalloutEvent", | |
"CustomObject:Reply", | |
"CustomObject:ReplyReportAbuse", | |
"CustomObject:Report", | |
"CustomObject:ReportTag", | |
"CustomObject:ReputationLevel", | |
"CustomObject:ReputationLevelLocalization", | |
"CustomObject:ReputationPointsRule", | |
"CustomObject:ResourceAbsence", | |
"CustomObject:ResourceAbsenceHistory", | |
"CustomObject:ResourcePreference", | |
"CustomObject:ResourcePreferenceHistory", | |
"CustomObject:ReturnOrder", | |
"CustomObject:ReturnOrderHistory", | |
"CustomObject:ReturnOrderLineItem", | |
"CustomObject:ReturnOrderLineItemHistory", | |
"CustomObject:ReturnOrderOwnerSharingRule", | |
"CustomObject:ReturnOrderShare", | |
"CustomObject:RevenueForecast", | |
"CustomObject:RevenueForecastHistory", | |
"CustomObject:RuleTerritory2Association", | |
"CustomObject:SalesAIScoreCycle", | |
"CustomObject:SalesAIScoreModelFactor", | |
"CustomObject:SalesWorkQueueSettings", | |
"CustomObject:SamlSsoConfig", | |
"CustomObject:Scontrol", | |
"CustomObject:ScontrolLocalization", | |
"CustomObject:ScratchOrgInfo", | |
"CustomObject:SearchPromotionRule", | |
"CustomObject:SecureAgent", | |
"CustomObject:SecureAgentsCluster", | |
"CustomObject:SecurityCustomBaseline", | |
"CustomObject:SelfServiceUser", | |
"CustomObject:ServiceAppointment", | |
"CustomObject:ServiceAppointmentCapacityUsage", | |
"CustomObject:ServiceAppointmentCapacityUsageHistory", | |
"CustomObject:ServiceAppointmentHistory", | |
"CustomObject:ServiceAppointmentOwnerSharingRule", | |
"CustomObject:ServiceAppointmentShare", | |
"CustomObject:ServiceAppointmentStatus", | |
"CustomObject:ServiceChannel", | |
"CustomObject:ServiceChannelStatus", | |
"CustomObject:ServiceContract", | |
"CustomObject:ServiceContractHistory", | |
"CustomObject:ServiceContractOwnerSharingRule", | |
"CustomObject:ServiceContractShare", | |
"CustomObject:ServiceCrew", | |
"CustomObject:ServiceCrewHistory", | |
"CustomObject:ServiceCrewMember", | |
"CustomObject:ServiceCrewMemberHistory", | |
"CustomObject:ServiceCrewOwnerSharingRule", | |
"CustomObject:ServiceCrewShare", | |
"CustomObject:ServicePresenceStatus", | |
"CustomObject:ServiceReport", | |
"CustomObject:ServiceReportLayout", | |
"CustomObject:ServiceResource", | |
"CustomObject:ServiceResourceCapacity", | |
"CustomObject:ServiceResourceCapacityHistory", | |
"CustomObject:ServiceResourceHistory", | |
"CustomObject:ServiceResourceOwnerSharingRule", | |
"CustomObject:ServiceResourceShare", | |
"CustomObject:ServiceResourceSkill", | |
"CustomObject:ServiceResourceSkillHistory", | |
"CustomObject:ServiceTerritory", | |
"CustomObject:ServiceTerritoryHistory", | |
"CustomObject:ServiceTerritoryLocation", | |
"CustomObject:ServiceTerritoryMember", | |
"CustomObject:ServiceTerritoryMemberHistory", | |
"CustomObject:ServiceTerritoryWorkType", | |
"CustomObject:ServiceTerritoryWorkTypeHistory", | |
"CustomObject:SessionPermSetActivation", | |
"CustomObject:SetupAuditTrail", | |
"CustomObject:SetupEntityAccess", | |
"CustomObject:Shift", | |
"CustomObject:ShiftHistory", | |
"CustomObject:ShiftOwnerSharingRule", | |
"CustomObject:ShiftShare", | |
"CustomObject:ShiftStatus", | |
"CustomObject:Shipment", | |
"CustomObject:SignupRequest", | |
"CustomObject:Site", | |
"CustomObject:SiteDetail", | |
"CustomObject:SiteDomain", | |
"CustomObject:SiteHistory", | |
"CustomObject:SiteIframeWhitelistUrl", | |
"CustomObject:Skill", | |
"CustomObject:SkillProfile", | |
"CustomObject:SkillRequirement", | |
"CustomObject:SkillRequirementHistory", | |
"CustomObject:SkillUser", | |
"CustomObject:SlaProcess", | |
"CustomObject:Snippet", | |
"CustomObject:SnippetAssignment", | |
"CustomObject:SocialPersona", | |
"CustomObject:SocialPersonaHistory", | |
"CustomObject:SocialPost", | |
"CustomObject:SocialPostHistory", | |
"CustomObject:SocialPostShare", | |
"CustomObject:Solution", | |
"CustomObject:SolutionHistory", | |
"CustomObject:SolutionStatus", | |
"CustomObject:SolutionTag", | |
"CustomObject:SOSDeployment", | |
"CustomObject:SOSSession", | |
"CustomObject:SOSSessionActivity", | |
"CustomObject:SOSSessionHistory", | |
"CustomObject:SOSSessionOwnerSharingRule", | |
"CustomObject:SOSSessionShare", | |
"CustomObject:Stamp", | |
"CustomObject:StampAssignment", | |
"CustomObject:StaticResource", | |
"CustomObject:Reference: StreamingChannel", | |
"CustomObject:Salesforce Surveys Object Model", | |
"CustomObject:Survey", | |
"CustomObject:SurveyEmailBranding", | |
"CustomObject:SurveyInvitation", | |
"CustomObject:SurveyInvitationShare", | |
"CustomObject:SurveyPage", | |
"CustomObject:SurveyQuestion", | |
"CustomObject:SurveyQuestionChoice", | |
"CustomObject:SurveyQuestionResponse", | |
"CustomObject:SurveyQuestionScore", | |
"CustomObject:SurveyResponse", | |
"CustomObject:SurveyShare", | |
"CustomObject:SurveySubject", | |
"CustomObject:SurveyVersion", | |
"CustomObject:TabDefinition", | |
"CustomObject:TagDefinition", | |
"CustomObject:Task", | |
"CustomObject:TaskPriority", | |
"CustomObject:TaskRelation", | |
"CustomObject:TaskStatus", | |
"CustomObject:TaskTag", | |
"CustomObject:TaskWhoRelation", | |
"CustomObject:TenantSecret", | |
"CustomObject:Territory", | |
"CustomObject:Territory2", | |
"CustomObject:Territory2Model", | |
"CustomObject:Territory2ModelHistory", | |
"CustomObject:Territory2Type", | |
"CustomObject:TestSuiteMembership", | |
"CustomObject:ThirdPartyAccountLink", | |
"CustomObject:TimeSheet", | |
"CustomObject:TimeSheetEntry", | |
"CustomObject:TimeSheetEntryHistory", | |
"CustomObject:TimeSheetHistory", | |
"CustomObject:TimeSheetOwnerSharingRule", | |
"CustomObject:TimeSheetShare", | |
"CustomObject:TimeSlot", | |
"CustomObject:TimeSlotHistory", | |
"CustomObject:Topic", | |
"CustomObject:TopicAssignment", | |
"CustomObject:TopicLocalization—Beta", | |
"CustomObject:TopicUserEvent", | |
"CustomObject:TransactionSecurityPolicy", | |
"CustomObject:TwoFactorInfo", | |
"CustomObject:TwoFactorMethodsInfo", | |
"CustomObject:TwoFactorTempCode", | |
"CustomObject:UiFormulaCriterion", | |
"CustomObject:UiFormulaRule", | |
"CustomObject:UndecidedEventRelation", | |
"CustomObject:User", | |
"CustomObject:UserAccountTeamMember", | |
"CustomObject:UserAppInfo", | |
"CustomObject:UserAppMenuCustomization", | |
"CustomObject:UserAppMenuCustomizationShare", | |
"CustomObject:UserAppMenuItem", | |
"CustomObject:UserAuthCertificate", | |
"CustomObject:UserConfigTransferButton", | |
"CustomObject:UserConfigTransferSkill", | |
"CustomObject:UserCustomBadge", | |
"CustomObject:UserCustomBadgeLocalization", | |
"CustomObject:UserDevice", | |
"CustomObject:UserDeviceApplication", | |
"CustomObject:UserEmailPreferredPerson", | |
"CustomObject:UserEmailPreferredPersonShare", | |
"CustomObject:UserLicense", | |
"CustomObject:UserListView", | |
"CustomObject:UserListViewCriterion", | |
"CustomObject:UserLogin", | |
"CustomObject:UserMembershipSharingRule", | |
"CustomObject:UserPackageLicense", | |
"CustomObject:UserPermissionAccess", | |
"CustomObject:UserPreference", | |
"CustomObject:UserProfile", | |
"CustomObject:UserProvAccount", | |
"CustomObject:UserProvAccountStaging", | |
"CustomObject:UserProvMockTarget", | |
"CustomObject:UserProvisioningConfig", | |
"CustomObject:UserProvisioningLog", | |
"CustomObject:UserProvisioningRequest", | |
"CustomObject:UserProvisioningRequestOwnerSharingRule", | |
"CustomObject:UserProvisioningRequestShare", | |
"CustomObject:UserRecordAccess", | |
"CustomObject:UserRole", | |
"CustomObject:UserServicePresence", | |
"CustomObject:UserShare", | |
"CustomObject:UserTeamMember", | |
"CustomObject:UserTerritory", | |
"CustomObject:UserTerritory2Association", | |
"CustomObject:VerificationHistory", | |
"CustomObject:VisualforceAccessMetrics", | |
"CustomObject:VoiceCall", | |
"CustomObject:VoiceCallList", | |
"CustomObject:VoiceCallListItem", | |
"CustomObject:VoiceCallListShare", | |
"CustomObject:VoiceCallQualityFeedback", | |
"CustomObject:VoiceCallQualityFeedbackShare", | |
"CustomObject:VoiceCallRecording", | |
"CustomObject:VoiceCallRecordingShare", | |
"CustomObject:VoiceCallShare", | |
"CustomObject:VoiceCoaching", | |
"CustomObject:VoiceCoachingShare", | |
"CustomObject:VoiceLocalPresenceNumber", | |
"CustomObject:VoiceMailContent", | |
"CustomObject:VoiceMailContentShare", | |
"CustomObject:VoiceMailGreeting", | |
"CustomObject:VoiceMailGreetingShare", | |
"CustomObject:VoiceMailMessage", | |
"CustomObject:VoiceMailMessageShare", | |
"CustomObject:VoiceUserLine", | |
"CustomObject:VoiceUserLineShare", | |
"CustomObject:VoiceUserPreferences", | |
"CustomObject:VoiceUserPreferencesShare", | |
"CustomObject:VoiceVendorInfo", | |
"CustomObject:VoiceVendorLine", | |
"CustomObject:VoiceVendorLineShare", | |
"CustomObject:Vote", | |
"CustomObject:WebLink", | |
"CustomObject:WebLinkLocalization", | |
"CustomObject:WorkAccess", | |
"CustomObject:WorkAccessShare", | |
"CustomObject:WorkBadge", | |
"CustomObject:WorkBadgeDefinition", | |
"CustomObject:WorkBadgeDefinitionHistory", | |
"CustomObject:WorkBadgeDefinitionShare", | |
"CustomObject:WorkCapacityLimit", | |
"CustomObject:WorkCapacityLimitHistory", | |
"CustomObject:WorkCapacityLimitShare", | |
"CustomObject:WorkCapacityUsage", | |
"CustomObject:WorkCapacityUsageHistory", | |
"CustomObject:WorkCoaching", | |
"CustomObject:WorkCoachingHistory", | |
"CustomObject:WorkCoachingShare", | |
"CustomObject:WorkFeedback", | |
"CustomObject:WorkFeedbackHistory", | |
"CustomObject:WorkFeedbackQuestion", | |
"CustomObject:WorkFeedbackQuestionHistory", | |
"CustomObject:WorkFeedbackQuestionSet", | |
"CustomObject:WorkFeedbackQuestionSetHistory", | |
"CustomObject:WorkFeedbackQuestionSetShare", | |
"CustomObject:WorkFeedbackQuestionShare", | |
"CustomObject:WorkFeedbackRequest", | |
"CustomObject:WorkFeedbackRequestHistory", | |
"CustomObject:WorkFeedbackRequestShare", | |
"CustomObject:WorkFeedbackShare", | |
"CustomObject:WorkGoal", | |
"CustomObject:WorkGoalCollaborator", | |
"CustomObject:WorkGoalCollaboratorHistory", | |
"CustomObject:WorkGoalHistory", | |
"CustomObject:WorkGoalLink", | |
"CustomObject:WorkGoalShare", | |
"CustomObject:WorkOrder", | |
"CustomObject:WorkOrderHistory", | |
"CustomObject:WorkOrderLineItem", | |
"CustomObject:WorkOrderLineItemHistory", | |
"CustomObject:WorkOrderLineItemStatus", | |
"CustomObject:WorkOrderShare", | |
"CustomObject:WorkOrderStatus", | |
"CustomObject:WorkPerformanceCycle", | |
"CustomObject:WorkPerformanceCycleHistory", | |
"CustomObject:WorkPerformanceCycleShare", | |
"CustomObject:WorkReward", | |
"CustomObject:WorkRewardFund", | |
"CustomObject:WorkRewardFundHistory", | |
"CustomObject:WorkRewardFundShare", | |
"CustomObject:WorkRewardFundType", | |
"CustomObject:WorkRewardFundTypeHistory", | |
"CustomObject:WorkRewardFundTypeShare", | |
"CustomObject:WorkRewardHistory", | |
"CustomObject:WorkRewardShare", | |
"CustomObject:WorkThanks", | |
"CustomObject:WorkThanksShare", | |
"CustomObject:WorkType", | |
"CustomObject:WorkTypeGroup", | |
"CustomObject:WorkTypeGroupHistory", | |
"CustomObject:WorkTypeGroupMember", | |
"CustomObject:WorkTypeGroupMemberHistory", | |
"CustomObject:WorkTypeGroupShare", | |
"CustomObject:WorkTypeHistory", | |
"CustomObject:WorkTypeOwnerSharingRule", | |
"CustomObject:WorkTypeShare" | |
] | |
} | |
}, | |
"onSaveEvents": [ | |
{ | |
"label": "pretty apex code.", | |
"description": "use prettier-plugin-apex to format salesforce apex code. npm install --global prettier prettier-plugin-apex ", | |
"filetypes": [".trigger", ".cls"], | |
"cwd": "${fileDirname}", | |
"inActive": true, | |
"command": "prettier --parser=apex --write \"${file}\" --tab-width=4 --single-quote=true" | |
}, | |
{ | |
"label": "pretty apex anonymous code.", | |
"description": "pretty apex anonymous code", | |
"filetypes": [".apex"], | |
"cwd": "${fileDirname}", | |
"inActive": true, | |
"command": "prettier --parser=apex --write \"${file}\" --tab-width=4 --single-quote=true --apex-anonymous" | |
}, | |
{ | |
"label": "auto run apex anonymous code.", | |
"description": "salesforce code format. page, component, cmp file", | |
"filetypes": [".cmp", ".page", ".component"], | |
"inActive": true, | |
"command": "prettier --write \"${file}\" --single-quote=true --tab-width=4 --parser=html --end-of-line=lf --arrow-parens=always" | |
}, | |
{ | |
"label": "Auto save file to sfdc server.", | |
"description": "Auto save file to sfdc server.", | |
"filetypes": [".trigger", ".cls", ".component", ".page"], | |
"cwd": "${workspaceFolder}", | |
"inActive": true, | |
"command": "sfdx force:source:deploy --loglevel fatal --sourcepath \"${file}\"" | |
}, | |
{ | |
"label": "auto run apex anonymous code.", | |
"description": "run apex anonymous code after save.", | |
"filetypes": [".apex"], | |
"cwd": "${fileDirname}", | |
"inActive": true, | |
"command": "sfdx force:apex:execute --apexcodefile \"${file}\"" | |
} | |
] | |
} |