quidproquo-actionprocessor-awslambda 0.0.246 → 0.0.247

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.
@@ -1,2 +1,2 @@
1
1
  import { QpqFunctionRuntime } from 'quidproquo-core';
2
- export declare const dynamicModuleLoader: <T = any>(modulePath: QpqFunctionRuntime) => Promise<T>;
2
+ export declare const dynamicModuleLoader: <T = any>(qpqFunctionRuntime: QpqFunctionRuntime) => Promise<T>;
@@ -12,7 +12,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.dynamicModuleLoader = void 0;
13
13
  // @ts-expect-error - Special webpack file injected
14
14
  const quidproquo_dynamic_loader_1 = require("quidproquo-dynamic-loader");
15
- const dynamicModuleLoader = (modulePath) => __awaiter(void 0, void 0, void 0, function* () {
16
- return (0, quidproquo_dynamic_loader_1.qpqDynamicModuleLoader)(modulePath);
15
+ const dynamicModuleLoader = (qpqFunctionRuntime) => __awaiter(void 0, void 0, void 0, function* () {
16
+ return (0, quidproquo_dynamic_loader_1.qpqDynamicModuleLoader)(qpqFunctionRuntime);
17
17
  });
18
18
  exports.dynamicModuleLoader = dynamicModuleLoader;
@@ -1,2 +1,2 @@
1
1
  import { QpqFunctionRuntime } from 'quidproquo-core';
2
- export declare const dynamicModuleLoader: <T = any>(modulePath: QpqFunctionRuntime) => Promise<T>;
2
+ export declare const dynamicModuleLoader: <T = any>(qpqFunctionRuntime: QpqFunctionRuntime) => Promise<T>;
@@ -1,5 +1,5 @@
1
1
  // @ts-expect-error - Special webpack file injected
2
2
  import { qpqDynamicModuleLoader } from 'quidproquo-dynamic-loader';
3
- export const dynamicModuleLoader = async (modulePath) => {
4
- return qpqDynamicModuleLoader(modulePath);
3
+ export const dynamicModuleLoader = async (qpqFunctionRuntime) => {
4
+ return qpqDynamicModuleLoader(qpqFunctionRuntime);
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quidproquo-actionprocessor-awslambda",
3
- "version": "0.0.246",
3
+ "version": "0.0.247",
4
4
  "description": "",
5
5
  "main": "./lib/commonjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -55,9 +55,9 @@
55
55
  "lodash": "^4.17.21",
56
56
  "node-cache": "^5.1.2",
57
57
  "node-match-path": "^0.6.3",
58
- "quidproquo-config-aws": "0.0.246",
59
- "quidproquo-core": "0.0.246",
60
- "quidproquo-webserver": "0.0.246"
58
+ "quidproquo-config-aws": "0.0.247",
59
+ "quidproquo-core": "0.0.247",
60
+ "quidproquo-webserver": "0.0.247"
61
61
  },
62
62
  "devDependencies": {
63
63
  "@types/aws-lambda": "^8.10.109",
@@ -65,7 +65,7 @@
65
65
  "@types/jsonwebtoken": "^9.0.2",
66
66
  "@types/lodash": "^4.14.194",
67
67
  "@types/node": "^18.11.9",
68
- "quidproquo-tsconfig": "0.0.246",
68
+ "quidproquo-tsconfig": "0.0.247",
69
69
  "typescript": "^4.9.3"
70
70
  }
71
71
  }