feat(salesforce): add find record action

This commit is contained in:
Ali BARIN
2023-01-30 21:51:21 +00:00
parent fff5306fa6
commit f90afe8b37
3 changed files with 85 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ import defineApp from '../../helpers/define-app';
import addAuthHeader from './common/add-auth-header';
import auth from './auth';
import triggers from './triggers';
import actions from './actions';
import dynamicData from './dynamic-data';
export default defineApp({
@@ -16,5 +17,6 @@ export default defineApp({
beforeRequest: [addAuthHeader],
auth,
triggers,
actions,
dynamicData,
});