inanis 0.0.7-beta.12 → 0.0.7-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,7 +25,7 @@ const getLambdaGroup = (manager, method, path) => {
25
25
  const name = toRouterName(group.paths[0].split('@').slice(1).join()) + 'Group';
26
26
  return {
27
27
  name: `${name}StreamApiGroup`,
28
- handler: `src/index.${name}`,
28
+ handler: `src/index.${name}Stream`,
29
29
  handlerName: name,
30
30
  memorySize: group.memorySize
31
31
  };
@@ -33,7 +33,7 @@ const getLambdaGroup = (manager, method, path) => {
33
33
  const router = manager.getRouter(path);
34
34
  return {
35
35
  name: `${method}${router.name}Api`,
36
- handler: `src/index.${method}${router.name}`,
36
+ handler: `src/index.${method}${router.name}Stream`,
37
37
  handlerName: `${method}${router.name}`
38
38
  };
39
39
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "inanis",
3
3
  "type": "module",
4
- "version": "0.0.7-beta.12",
4
+ "version": "0.0.7-beta.13",
5
5
  "description": "Micro Service Best Tools.",
6
6
  "main": "./dist/index.js",
7
7
  "scripts": {