We have a few extensions and each of those have mu...
# suitecommerce
v
We have a few extensions and each of those have multiple modules in them. (SC version: 2020.2.3, Ext Management: 2020.2.0) Every time we push/update our extensions' bundles in target accounts (version update), we have to set the permissions on our backend services all over again. Since we have many modules, we also have many services, and updating each service (file) in every target account takes a lot of time. We're thinking of keeping only one service per extension, and then based on the request, calling the appropriate method of our helper .js files (which are SS 2.0 custom modules) via that service (which are also SS 2.0 services). But, will this affect the performance of our extensions? Will having only one service mean that we will face any concurrency issues? (Since requests that were previously going through separate services will now be going through only one.)