...
One plugin code file can contain any number of plugins. The entry point of a plugin is a JS function, like SampleCustomer.Plugins.manipulateSearchResultstest
in the example above.
The entry point of the plugin must always be asynchronous (decorated with async
statement or returning a promise object).
...