feat(salesforce): add find partially matching record action

This commit is contained in:
Ali BARIN
2024-06-19 12:42:25 +00:00
parent 673ed25598
commit 67ee7899fd
3 changed files with 85 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
import createAttachment from './create-attachment/index.js';
import executeQuery from './execute-query/index.js';
import findRecord from './find-record/index.js';
import findPartiallyMatchingRecord from './find-partially-matching-record/index.js';
export default [findRecord, createAttachment, executeQuery];
export default [findRecord, findPartiallyMatchingRecord, createAttachment, executeQuery];