quidproquo-actionprocessor-node 0.0.18 → 0.0.20
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/lib/actionProcessor/core/date/DateActionProcessor.d.ts +2 -1
- package/lib/actionProcessor/core/date/DateActionProcessor.js +3 -3
- package/lib/actionProcessor/core/error/ErrorActionProcessor.d.ts +5 -0
- package/lib/actionProcessor/core/error/ErrorActionProcessor.js +18 -0
- package/lib/actionProcessor/core/event/EventActionProcessor.js +1 -0
- package/lib/actionProcessor/core/guid/GuidActionProcessor.d.ts +2 -1
- package/lib/actionProcessor/core/guid/GuidActionProcessor.js +3 -3
- package/lib/actionProcessor/core/index.d.ts +7 -4
- package/lib/actionProcessor/core/index.js +4 -1
- package/lib/actionProcessor/core/log/LogActionProcessor.d.ts +5 -0
- package/lib/actionProcessor/core/log/LogActionProcessor.js +19 -0
- package/lib/actionProcessor/core/math/MathActionProcessor.d.ts +2 -1
- package/lib/actionProcessor/core/math/MathActionProcessor.js +3 -3
- package/lib/actionProcessor/core/network/NetworkActionProcessor.d.ts +5 -0
- package/lib/actionProcessor/core/network/NetworkActionProcessor.js +104 -0
- package/lib/actionProcessor/core/platform/PlatformActionProcessor.d.ts +2 -1
- package/lib/actionProcessor/core/platform/PlatformActionProcessor.js +3 -3
- package/package.json +4 -2
- package/lib/actionProcessor/webserver/route/RouteActionRequester.d.ts +0 -4
- package/lib/actionProcessor/webserver/route/RouteActionRequester.js +0 -23
- package/lib/actionProcessor/webserver/route/RouteActionTypeEnum.d.ts +0 -7
- package/lib/actionProcessor/webserver/route/RouteActionTypeEnum.js +0 -11
|
@@ -10,9 +10,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
const quidproquo_core_1 = require("quidproquo-core");
|
|
13
|
-
const
|
|
14
|
-
return new Date().toISOString();
|
|
13
|
+
const processDateNow = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
14
|
+
return (0, quidproquo_core_1.actionResult)(new Date().toISOString());
|
|
15
15
|
});
|
|
16
16
|
exports.default = {
|
|
17
|
-
[quidproquo_core_1.
|
|
17
|
+
[quidproquo_core_1.DateActionType.Now]: processDateNow,
|
|
18
18
|
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
const quidproquo_core_1 = require("quidproquo-core");
|
|
13
|
+
const processErrorThrowError = ({ errorStack, errorText, errorType, }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
14
|
+
return (0, quidproquo_core_1.actionResultError)(errorType, errorText, errorStack);
|
|
15
|
+
});
|
|
16
|
+
exports.default = {
|
|
17
|
+
[quidproquo_core_1.ErrorActionType.ThrowError]: processErrorThrowError,
|
|
18
|
+
};
|
|
@@ -11,9 +11,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
const uuid_1 = require("uuid");
|
|
13
13
|
const quidproquo_core_1 = require("quidproquo-core");
|
|
14
|
-
const
|
|
15
|
-
return (0, uuid_1.v4)();
|
|
14
|
+
const processGuidNew = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
15
|
+
return (0, quidproquo_core_1.actionResult)((0, uuid_1.v4)());
|
|
16
16
|
});
|
|
17
17
|
exports.default = {
|
|
18
|
-
[quidproquo_core_1.
|
|
18
|
+
[quidproquo_core_1.GuidActionType.New]: processGuidNew,
|
|
19
19
|
};
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
|
-
"@quidproquo-core/Platform/Delay": (
|
|
3
|
-
"@quidproquo-core/
|
|
4
|
-
"@quidproquo-core/
|
|
5
|
-
"@quidproquo-core/
|
|
2
|
+
"@quidproquo-core/Platform/Delay": import("quidproquo-core/lib").PlatformDelayActionProcessor;
|
|
3
|
+
"@quidproquo-core/Network/Request": import("quidproquo-core/lib").NetworkRequestActionProcessor<any, any>;
|
|
4
|
+
"@quidproquo-core/Math/RandomNumber": import("quidproquo-core/lib").MathRandomNumberActionProcessor;
|
|
5
|
+
"@quidproquo-core/Log/Create": import("quidproquo-core/lib").LogCreateActionProcessor;
|
|
6
|
+
"@quidproquo-core/Guid/New": import("quidproquo-core/lib").GuidNewActionProcessor;
|
|
7
|
+
"@quidproquo-core/error/ThrowError": import("quidproquo-core/lib").ErrorThrowErrorActionProcessor;
|
|
8
|
+
"@quidproquo-core/Date/Now": import("quidproquo-core/lib").DateNowActionProcessor;
|
|
6
9
|
};
|
|
7
10
|
export default _default;
|
|
@@ -4,9 +4,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
const DateActionProcessor_1 = __importDefault(require("./date/DateActionProcessor"));
|
|
7
|
+
const ErrorActionProcessor_1 = __importDefault(require("./error/ErrorActionProcessor"));
|
|
7
8
|
const EventActionProcessor_1 = __importDefault(require("./event/EventActionProcessor"));
|
|
8
9
|
const GuidActionProcessor_1 = __importDefault(require("./guid/GuidActionProcessor"));
|
|
10
|
+
const LogActionProcessor_1 = __importDefault(require("./log/LogActionProcessor"));
|
|
9
11
|
const MathActionProcessor_1 = __importDefault(require("./math/MathActionProcessor"));
|
|
12
|
+
const NetworkActionProcessor_1 = __importDefault(require("./network/NetworkActionProcessor"));
|
|
10
13
|
const PlatformActionProcessor_1 = __importDefault(require("./platform/PlatformActionProcessor"));
|
|
11
14
|
const SystemActionProcessor_1 = __importDefault(require("./system/SystemActionProcessor"));
|
|
12
|
-
exports.default = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, DateActionProcessor_1.default), EventActionProcessor_1.default), GuidActionProcessor_1.default), MathActionProcessor_1.default), PlatformActionProcessor_1.default), SystemActionProcessor_1.default);
|
|
15
|
+
exports.default = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, DateActionProcessor_1.default), ErrorActionProcessor_1.default), EventActionProcessor_1.default), GuidActionProcessor_1.default), LogActionProcessor_1.default), MathActionProcessor_1.default), NetworkActionProcessor_1.default), PlatformActionProcessor_1.default), SystemActionProcessor_1.default);
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
const quidproquo_core_1 = require("quidproquo-core");
|
|
13
|
+
const processLogCreate = ({ msg, logLevel, dataJson }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
14
|
+
console.log(`${logLevel}: ${msg} ${dataJson || ''}`);
|
|
15
|
+
return (0, quidproquo_core_1.actionResult)(void 0);
|
|
16
|
+
});
|
|
17
|
+
exports.default = {
|
|
18
|
+
[quidproquo_core_1.LogActionType.Create]: processLogCreate,
|
|
19
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { MathRandomNumberActionProcessor } from 'quidproquo-core';
|
|
1
2
|
declare const _default: {
|
|
2
|
-
"@quidproquo-core/Math/RandomNumber":
|
|
3
|
+
"@quidproquo-core/Math/RandomNumber": MathRandomNumberActionProcessor;
|
|
3
4
|
};
|
|
4
5
|
export default _default;
|
|
@@ -10,9 +10,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
const quidproquo_core_1 = require("quidproquo-core");
|
|
13
|
-
const
|
|
14
|
-
return Math.random();
|
|
13
|
+
const processMathRandomNumber = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
14
|
+
return (0, quidproquo_core_1.actionResult)(Math.random());
|
|
15
15
|
});
|
|
16
16
|
exports.default = {
|
|
17
|
-
[quidproquo_core_1.
|
|
17
|
+
[quidproquo_core_1.MathActionType.RandomNumber]: processMathRandomNumber,
|
|
18
18
|
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
const quidproquo_core_1 = require("quidproquo-core");
|
|
16
|
+
const axios_1 = __importDefault(require("axios"));
|
|
17
|
+
const axiosInstance = axios_1.default.create({
|
|
18
|
+
timeout: 10000,
|
|
19
|
+
});
|
|
20
|
+
const processNetworkRequestGet = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
21
|
+
const response = yield axiosInstance.get(payload.url, {
|
|
22
|
+
baseURL: payload.basePath,
|
|
23
|
+
headers: payload.headers,
|
|
24
|
+
params: payload.params,
|
|
25
|
+
});
|
|
26
|
+
return response;
|
|
27
|
+
});
|
|
28
|
+
const processNetworkRequestPost = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
29
|
+
const response = yield axiosInstance.post(payload.url, payload.body, {
|
|
30
|
+
baseURL: payload.basePath,
|
|
31
|
+
headers: payload.headers,
|
|
32
|
+
params: payload.params,
|
|
33
|
+
});
|
|
34
|
+
return response;
|
|
35
|
+
});
|
|
36
|
+
const processNetworkRequestDelete = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
37
|
+
const response = yield axiosInstance.delete(payload.url, {
|
|
38
|
+
baseURL: payload.basePath,
|
|
39
|
+
headers: payload.headers,
|
|
40
|
+
params: payload.params,
|
|
41
|
+
});
|
|
42
|
+
return response;
|
|
43
|
+
});
|
|
44
|
+
const processNetworkRequestHead = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
45
|
+
const response = yield axiosInstance.head(payload.url, {
|
|
46
|
+
baseURL: payload.basePath,
|
|
47
|
+
headers: payload.headers,
|
|
48
|
+
params: payload.params,
|
|
49
|
+
});
|
|
50
|
+
return response;
|
|
51
|
+
});
|
|
52
|
+
const processNetworkRequestOptions = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
53
|
+
const response = yield axiosInstance.options(payload.url, {
|
|
54
|
+
baseURL: payload.basePath,
|
|
55
|
+
headers: payload.headers,
|
|
56
|
+
params: payload.params,
|
|
57
|
+
});
|
|
58
|
+
return response;
|
|
59
|
+
});
|
|
60
|
+
const processNetworkRequestPut = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
61
|
+
const response = yield axiosInstance.put(payload.url, payload.body, {
|
|
62
|
+
baseURL: payload.basePath,
|
|
63
|
+
headers: payload.headers,
|
|
64
|
+
params: payload.params,
|
|
65
|
+
});
|
|
66
|
+
return response;
|
|
67
|
+
});
|
|
68
|
+
const processNetworkRequestPatch = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
69
|
+
const response = yield axiosInstance.patch(payload.url, payload.body, {
|
|
70
|
+
baseURL: payload.basePath,
|
|
71
|
+
headers: payload.headers,
|
|
72
|
+
params: payload.params,
|
|
73
|
+
});
|
|
74
|
+
return response;
|
|
75
|
+
});
|
|
76
|
+
const processNetworkRequestConnect = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
77
|
+
throw new Error('Function not implemented.');
|
|
78
|
+
});
|
|
79
|
+
const requestMethodMap = {
|
|
80
|
+
GET: processNetworkRequestGet,
|
|
81
|
+
POST: processNetworkRequestPost,
|
|
82
|
+
DELETE: processNetworkRequestDelete,
|
|
83
|
+
HEAD: processNetworkRequestHead,
|
|
84
|
+
OPTIONS: processNetworkRequestOptions,
|
|
85
|
+
PUT: processNetworkRequestPut,
|
|
86
|
+
PATCH: processNetworkRequestPatch,
|
|
87
|
+
CONNECT: processNetworkRequestConnect,
|
|
88
|
+
};
|
|
89
|
+
const processNetworkRequest = (payload) => __awaiter(void 0, void 0, void 0, function* () {
|
|
90
|
+
const requestMethod = requestMethodMap[payload.method];
|
|
91
|
+
if (!requestMethod) {
|
|
92
|
+
return (0, quidproquo_core_1.actionResultError)(quidproquo_core_1.ErrorTypeEnum.NotImplemented, `${payload.method}: Not implemented`);
|
|
93
|
+
}
|
|
94
|
+
const response = yield requestMethod(payload);
|
|
95
|
+
return (0, quidproquo_core_1.actionResult)({
|
|
96
|
+
headers: response.headers,
|
|
97
|
+
status: response.status,
|
|
98
|
+
statusText: response.statusText,
|
|
99
|
+
data: response.data,
|
|
100
|
+
});
|
|
101
|
+
});
|
|
102
|
+
exports.default = {
|
|
103
|
+
[quidproquo_core_1.NetworkActionType.Request]: processNetworkRequest,
|
|
104
|
+
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { PlatformDelayActionProcessor } from 'quidproquo-core';
|
|
1
2
|
declare const _default: {
|
|
2
|
-
"@quidproquo-core/Platform/Delay":
|
|
3
|
+
"@quidproquo-core/Platform/Delay": PlatformDelayActionProcessor;
|
|
3
4
|
};
|
|
4
5
|
export default _default;
|
|
@@ -10,9 +10,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
};
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
const quidproquo_core_1 = require("quidproquo-core");
|
|
13
|
-
const
|
|
14
|
-
return new Promise((resolve) => setTimeout(() => resolve(undefined),
|
|
13
|
+
const processPlatformDelay = ({ timeMs }) => __awaiter(void 0, void 0, void 0, function* () {
|
|
14
|
+
return new Promise((resolve) => setTimeout(() => resolve((0, quidproquo_core_1.actionResult)(undefined)), timeMs));
|
|
15
15
|
});
|
|
16
16
|
exports.default = {
|
|
17
|
-
[quidproquo_core_1.
|
|
17
|
+
[quidproquo_core_1.PlatformActionType.Delay]: processPlatformDelay,
|
|
18
18
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quidproquo-actionprocessor-node",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.js",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
-
"build": "npx rimraf lib && tsc"
|
|
12
|
+
"build": "npx rimraf lib && tsc",
|
|
13
|
+
"watch": "tsc -w"
|
|
13
14
|
},
|
|
14
15
|
"repository": {
|
|
15
16
|
"type": "git",
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
},
|
|
24
25
|
"homepage": "https://github.com/joe-coady/quidproquo#readme",
|
|
25
26
|
"dependencies": {
|
|
27
|
+
"axios": "^1.2.1",
|
|
26
28
|
"quidproquo-core": "*",
|
|
27
29
|
"uuid": "^9.0.0"
|
|
28
30
|
},
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
export declare function askRouteTransformEventParams(...params: any): Generator<any, any, any>;
|
|
2
|
-
export declare function askRouteTransformResponseResult(response: any): Generator<any, any, any>;
|
|
3
|
-
export declare function askRouteMatch(method: string, path: string): Generator<any, any, any>;
|
|
4
|
-
export declare function askRouteAutoRespond(http: any): Generator<any, any, any>;
|
|
@@ -1,23 +0,0 @@
|
|
|
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.askRouteAutoRespond = exports.askRouteMatch = exports.askRouteTransformResponseResult = exports.askRouteTransformEventParams = void 0;
|
|
7
|
-
const RouteActionTypeEnum_1 = __importDefault(require("./RouteActionTypeEnum"));
|
|
8
|
-
function* askRouteTransformEventParams(...params) {
|
|
9
|
-
return yield { type: RouteActionTypeEnum_1.default.TransformEventParams, payload: { params } };
|
|
10
|
-
}
|
|
11
|
-
exports.askRouteTransformEventParams = askRouteTransformEventParams;
|
|
12
|
-
function* askRouteTransformResponseResult(response) {
|
|
13
|
-
return yield { type: RouteActionTypeEnum_1.default.TransformResponseResult, payload: { response } };
|
|
14
|
-
}
|
|
15
|
-
exports.askRouteTransformResponseResult = askRouteTransformResponseResult;
|
|
16
|
-
function* askRouteMatch(method, path) {
|
|
17
|
-
return yield { type: RouteActionTypeEnum_1.default.Match, payload: { method, path } };
|
|
18
|
-
}
|
|
19
|
-
exports.askRouteMatch = askRouteMatch;
|
|
20
|
-
function* askRouteAutoRespond(http) {
|
|
21
|
-
return yield { type: RouteActionTypeEnum_1.default.AutoRespond, payload: { http } };
|
|
22
|
-
}
|
|
23
|
-
exports.askRouteAutoRespond = askRouteAutoRespond;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare enum RouteActionTypeEnum {
|
|
2
|
-
TransformEventParams = "@quidproquo-webserver/route/TransformEventParams",
|
|
3
|
-
TransformResponseResult = "@quidproquo-webserver/route/TransformResponseResult",
|
|
4
|
-
AutoRespond = "@quidproquo-webserver/route/AutoRespond",
|
|
5
|
-
Match = "@quidproquo-webserver/route/Match"
|
|
6
|
-
}
|
|
7
|
-
export default RouteActionTypeEnum;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.RouteActionTypeEnum = void 0;
|
|
4
|
-
var RouteActionTypeEnum;
|
|
5
|
-
(function (RouteActionTypeEnum) {
|
|
6
|
-
RouteActionTypeEnum["TransformEventParams"] = "@quidproquo-webserver/route/TransformEventParams";
|
|
7
|
-
RouteActionTypeEnum["TransformResponseResult"] = "@quidproquo-webserver/route/TransformResponseResult";
|
|
8
|
-
RouteActionTypeEnum["AutoRespond"] = "@quidproquo-webserver/route/AutoRespond";
|
|
9
|
-
RouteActionTypeEnum["Match"] = "@quidproquo-webserver/route/Match";
|
|
10
|
-
})(RouteActionTypeEnum = exports.RouteActionTypeEnum || (exports.RouteActionTypeEnum = {}));
|
|
11
|
-
exports.default = RouteActionTypeEnum;
|