quidproquo-actionprocessor-awslambda 0.0.11
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.
- package/README.md +7 -0
- package/lib/getActionProcessor/core/event/getApiGatewayProxyEventActionProcessor.d.ts +2 -0
- package/lib/getActionProcessor/core/event/getApiGatewayProxyEventActionProcessor.js +15 -0
- package/lib/getActionProcessor/core/index.d.ts +2 -0
- package/lib/getActionProcessor/core/index.js +3 -0
- package/lib/getActionProcessor/index.d.ts +1 -0
- package/lib/getActionProcessor/index.js +8 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +17 -0
- package/package.json +34 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = {};
|
|
4
|
+
// import { EventActionTypeEnum } from "quidproquo-core";
|
|
5
|
+
// export default (configs: ) => ({
|
|
6
|
+
// [EventActionTypeEnum.TransformEventParams]: getProcessTransformEventParams(
|
|
7
|
+
// routes,
|
|
8
|
+
// service
|
|
9
|
+
// ),
|
|
10
|
+
// [EventActionTypeEnum.TransformResponseResult]:
|
|
11
|
+
// getProcessTransformResponseResult(routes),
|
|
12
|
+
// [EventActionTypeEnum.AutoRespond]: getProcessAutoRespond(routes),
|
|
13
|
+
// [EventActionTypeEnum.Match]: getProcessMatch(routes),
|
|
14
|
+
// [EventActionTypeEnum.ExecuteStory]: getProcessExecuteStory(routes, service),
|
|
15
|
+
// });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as coreActionProcessor } from "./core";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.coreActionProcessor = void 0;
|
|
7
|
+
var core_1 = require("./core");
|
|
8
|
+
Object.defineProperty(exports, "coreActionProcessor", { enumerable: true, get: function () { return __importDefault(core_1).default; } });
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./getActionProcessor";
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./getActionProcessor"), exports);
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "quidproquo-actionprocessor-awslambda",
|
|
3
|
+
"version": "0.0.11",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "./lib/index.js",
|
|
6
|
+
"types": "./lib/index.d.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"lib/**/*"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"build": "npx rimraf lib && tsc"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/joe-coady/quidproquo.git"
|
|
17
|
+
},
|
|
18
|
+
"keywords": [],
|
|
19
|
+
"author": "",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/joe-coady/quidproquo/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/joe-coady/quidproquo#readme",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"quidproquo-core": "*",
|
|
27
|
+
"uuid": "^9.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/uuid": "^9.0.0",
|
|
31
|
+
"quidproquo-tsconfig": "*",
|
|
32
|
+
"typescript": "^4.9.3"
|
|
33
|
+
}
|
|
34
|
+
}
|