phecda-server 7.0.0-alpha.2 → 7.0.0-alpha.3

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.
Files changed (44) hide show
  1. package/assets/ps.json +1 -1
  2. package/bin/cli.mjs +1 -0
  3. package/dist/{chunk-NQIFUZL4.js → chunk-6EBEME3I.js} +51 -51
  4. package/dist/{chunk-XYVMNY2X.mjs → chunk-A53KNKY4.mjs} +1 -1
  5. package/dist/{chunk-HMVLXNV3.mjs → chunk-KUGFI6SC.mjs} +1 -1
  6. package/dist/{chunk-3FHZB3Z5.mjs → chunk-MMG73S64.mjs} +1 -1
  7. package/dist/{chunk-7YQ57BQS.js → chunk-PKSWGQLW.js} +18 -18
  8. package/dist/{chunk-MBCHNDAY.js → chunk-QCOBXM7F.js} +24 -24
  9. package/dist/{chunk-WHJ5FALK.mjs → chunk-QD3QR3NW.mjs} +3 -3
  10. package/dist/{chunk-J5CFUN4V.js → chunk-RQSQRZL4.js} +3 -3
  11. package/dist/helper.js +3 -3
  12. package/dist/helper.mjs +2 -2
  13. package/dist/http/elysia/index.js +40 -40
  14. package/dist/http/elysia/index.mjs +3 -3
  15. package/dist/http/express/index.js +37 -37
  16. package/dist/http/express/index.mjs +2 -2
  17. package/dist/http/fastify/index.js +38 -38
  18. package/dist/http/fastify/index.mjs +3 -3
  19. package/dist/http/h3/index.js +37 -37
  20. package/dist/http/h3/index.mjs +2 -2
  21. package/dist/http/hono/index.js +35 -35
  22. package/dist/http/hono/index.mjs +2 -2
  23. package/dist/http/hyper-express/index.js +35 -35
  24. package/dist/http/hyper-express/index.mjs +2 -2
  25. package/dist/http/koa/index.js +37 -37
  26. package/dist/http/koa/index.mjs +2 -2
  27. package/dist/index.js +38 -38
  28. package/dist/index.mjs +4 -4
  29. package/dist/rpc/bullmq/index.js +14 -14
  30. package/dist/rpc/bullmq/index.mjs +2 -2
  31. package/dist/rpc/kafka/index.js +14 -14
  32. package/dist/rpc/kafka/index.mjs +2 -2
  33. package/dist/rpc/nats/index.js +13 -13
  34. package/dist/rpc/nats/index.mjs +2 -2
  35. package/dist/rpc/rabbitmq/index.js +15 -15
  36. package/dist/rpc/rabbitmq/index.mjs +2 -2
  37. package/dist/rpc/redis/index.js +13 -13
  38. package/dist/rpc/redis/index.mjs +2 -2
  39. package/dist/test.d.mts +1 -1
  40. package/dist/test.d.ts +1 -1
  41. package/dist/test.js +6 -6
  42. package/dist/test.mjs +2 -2
  43. package/package.json +1 -1
  44. package/register/loader.mjs +1 -1
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkJ5CFUN4Vjs = require('./chunk-J5CFUN4V.js');
3
+ var _chunkRQSQRZL4js = require('./chunk-RQSQRZL4.js');
4
4
 
5
5
  // src/decorators/param.ts
6
6
  var _phecdacore = require('phecda-core');
@@ -10,42 +10,42 @@ function BaseParam(data) {
10
10
  _phecdacore.setMeta.call(void 0, target, property, index, data);
11
11
  };
12
12
  }
13
- _chunkJ5CFUN4Vjs.__name.call(void 0, BaseParam, "BaseParam");
13
+ _chunkRQSQRZL4js.__name.call(void 0, BaseParam, "BaseParam");
14
14
  function Body(key = "") {
15
15
  return BaseParam({
16
16
  type: "body",
17
17
  key
18
18
  });
19
19
  }
20
- _chunkJ5CFUN4Vjs.__name.call(void 0, Body, "Body");
20
+ _chunkRQSQRZL4js.__name.call(void 0, Body, "Body");
21
21
  function Head(key) {
22
22
  return BaseParam({
23
23
  type: "headers",
24
24
  key: key.toLowerCase()
25
25
  });
26
26
  }
27
- _chunkJ5CFUN4Vjs.__name.call(void 0, Head, "Head");
27
+ _chunkRQSQRZL4js.__name.call(void 0, Head, "Head");
28
28
  function Query(key = "") {
29
29
  return BaseParam({
30
30
  type: "query",
31
31
  key
32
32
  });
33
33
  }
34
- _chunkJ5CFUN4Vjs.__name.call(void 0, Query, "Query");
34
+ _chunkRQSQRZL4js.__name.call(void 0, Query, "Query");
35
35
  function Param(key) {
36
36
  return BaseParam({
37
37
  type: "params",
38
38
  key
39
39
  });
40
40
  }
41
- _chunkJ5CFUN4Vjs.__name.call(void 0, Param, "Param");
41
+ _chunkRQSQRZL4js.__name.call(void 0, Param, "Param");
42
42
  function Arg(target, k, index) {
43
43
  BaseParam({
44
44
  type: "args",
45
45
  key: `${index}`
46
46
  })(target, k, index);
47
47
  }
48
- _chunkJ5CFUN4Vjs.__name.call(void 0, Arg, "Arg");
48
+ _chunkRQSQRZL4js.__name.call(void 0, Arg, "Arg");
49
49
 
50
50
  // src/decorators/aop.ts
51
51
 
@@ -56,7 +56,7 @@ function Guard(...guards) {
56
56
  });
57
57
  };
58
58
  }
59
- _chunkJ5CFUN4Vjs.__name.call(void 0, Guard, "Guard");
59
+ _chunkRQSQRZL4js.__name.call(void 0, Guard, "Guard");
60
60
  function Addon(...addons) {
61
61
  return (target, property) => {
62
62
  _phecdacore.setMeta.call(void 0, target, property, void 0, {
@@ -64,7 +64,7 @@ function Addon(...addons) {
64
64
  });
65
65
  };
66
66
  }
67
- _chunkJ5CFUN4Vjs.__name.call(void 0, Addon, "Addon");
67
+ _chunkRQSQRZL4js.__name.call(void 0, Addon, "Addon");
68
68
  function Filter(filter) {
69
69
  return (target, property) => {
70
70
  _phecdacore.setMeta.call(void 0, target, property, void 0, {
@@ -72,7 +72,7 @@ function Filter(filter) {
72
72
  });
73
73
  };
74
74
  }
75
- _chunkJ5CFUN4Vjs.__name.call(void 0, Filter, "Filter");
75
+ _chunkRQSQRZL4js.__name.call(void 0, Filter, "Filter");
76
76
  function Pipe(pipe) {
77
77
  return (target, property, index) => {
78
78
  if (typeof index === "number") {
@@ -86,7 +86,7 @@ function Pipe(pipe) {
86
86
  });
87
87
  };
88
88
  }
89
- _chunkJ5CFUN4Vjs.__name.call(void 0, Pipe, "Pipe");
89
+ _chunkRQSQRZL4js.__name.call(void 0, Pipe, "Pipe");
90
90
 
91
91
  // src/decorators/http.ts
92
92
 
@@ -100,7 +100,7 @@ function Route(route, type) {
100
100
  });
101
101
  };
102
102
  }
103
- _chunkJ5CFUN4Vjs.__name.call(void 0, Route, "Route");
103
+ _chunkRQSQRZL4js.__name.call(void 0, Route, "Route");
104
104
  function Header(headers) {
105
105
  return (target, property) => {
106
106
  _phecdacore.setMeta.call(void 0, target, property, void 0, {
@@ -110,31 +110,31 @@ function Header(headers) {
110
110
  });
111
111
  };
112
112
  }
113
- _chunkJ5CFUN4Vjs.__name.call(void 0, Header, "Header");
113
+ _chunkRQSQRZL4js.__name.call(void 0, Header, "Header");
114
114
  function Get(route = "") {
115
115
  return Route(route, "get");
116
116
  }
117
- _chunkJ5CFUN4Vjs.__name.call(void 0, Get, "Get");
117
+ _chunkRQSQRZL4js.__name.call(void 0, Get, "Get");
118
118
  function Post(route = "") {
119
119
  return Route(route, "post");
120
120
  }
121
- _chunkJ5CFUN4Vjs.__name.call(void 0, Post, "Post");
121
+ _chunkRQSQRZL4js.__name.call(void 0, Post, "Post");
122
122
  function Put(route = "") {
123
123
  return Route(route, "put");
124
124
  }
125
- _chunkJ5CFUN4Vjs.__name.call(void 0, Put, "Put");
125
+ _chunkRQSQRZL4js.__name.call(void 0, Put, "Put");
126
126
  function Search(route = "") {
127
127
  return Route(route, "search");
128
128
  }
129
- _chunkJ5CFUN4Vjs.__name.call(void 0, Search, "Search");
129
+ _chunkRQSQRZL4js.__name.call(void 0, Search, "Search");
130
130
  function Patch(route = "") {
131
131
  return Route(route, "patch");
132
132
  }
133
- _chunkJ5CFUN4Vjs.__name.call(void 0, Patch, "Patch");
133
+ _chunkRQSQRZL4js.__name.call(void 0, Patch, "Patch");
134
134
  function Delete(route = "") {
135
135
  return Route(route, "delete");
136
136
  }
137
- _chunkJ5CFUN4Vjs.__name.call(void 0, Delete, "Delete");
137
+ _chunkRQSQRZL4js.__name.call(void 0, Delete, "Delete");
138
138
  function Controller(prefix = "") {
139
139
  return (target) => {
140
140
  _phecdacore.setMeta.call(void 0, target, void 0, void 0, {
@@ -145,7 +145,7 @@ function Controller(prefix = "") {
145
145
  });
146
146
  };
147
147
  }
148
- _chunkJ5CFUN4Vjs.__name.call(void 0, Controller, "Controller");
148
+ _chunkRQSQRZL4js.__name.call(void 0, Controller, "Controller");
149
149
 
150
150
  // src/decorators/rpc.ts
151
151
 
@@ -159,7 +159,7 @@ function Queue(queue = "", isEvent) {
159
159
  });
160
160
  };
161
161
  }
162
- _chunkJ5CFUN4Vjs.__name.call(void 0, Queue, "Queue");
162
+ _chunkRQSQRZL4js.__name.call(void 0, Queue, "Queue");
163
163
  function Rpc() {
164
164
  return (target) => {
165
165
  _phecdacore.setMeta.call(void 0, target, void 0, void 0, {
@@ -167,11 +167,11 @@ function Rpc() {
167
167
  });
168
168
  };
169
169
  }
170
- _chunkJ5CFUN4Vjs.__name.call(void 0, Rpc, "Rpc");
170
+ _chunkRQSQRZL4js.__name.call(void 0, Rpc, "Rpc");
171
171
 
172
172
  // src/decorators/ctx.ts
173
173
 
174
- var Ctx = /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (target, property) => {
174
+ var Ctx = /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (target, property) => {
175
175
  _phecdacore.setMeta.call(void 0, target, _phecdacore.SHARE_KEY, void 0, {
176
176
  ctxs: [
177
177
  property
@@ -200,7 +200,7 @@ function Define(key, value) {
200
200
  }
201
201
  };
202
202
  }
203
- _chunkJ5CFUN4Vjs.__name.call(void 0, Define, "Define");
203
+ _chunkRQSQRZL4js.__name.call(void 0, Define, "Define");
204
204
 
205
205
 
206
206
 
@@ -7,11 +7,11 @@ var IS_HMR = process.env.NODE_ENV === "development";
7
7
  var IS_ONLY_GENERATE = !!process.env.PS_GENERATE;
8
8
  var IS_STRICT = !!process.env.PS_STRICT;
9
9
  var LOG_LEVEL = Number(process.env.PS_LOG_LEVEL || 0);
10
- var PS_EXIT_CODE;
11
- (function(PS_EXIT_CODE2) {
10
+ var PS_EXIT_CODE = /* @__PURE__ */ function(PS_EXIT_CODE2) {
12
11
  PS_EXIT_CODE2[PS_EXIT_CODE2["RELAUNCH"] = 2] = "RELAUNCH";
13
12
  PS_EXIT_CODE2[PS_EXIT_CODE2["CODE"] = 4] = "CODE";
14
- })(PS_EXIT_CODE || (PS_EXIT_CODE = {}));
13
+ return PS_EXIT_CODE2;
14
+ }({});
15
15
 
16
16
  // src/utils.ts
17
17
  import pc from "picocolors";
@@ -7,11 +7,11 @@ var IS_HMR = process.env.NODE_ENV === "development";
7
7
  var IS_ONLY_GENERATE = !!process.env.PS_GENERATE;
8
8
  var IS_STRICT = !!process.env.PS_STRICT;
9
9
  var LOG_LEVEL = Number(process.env.PS_LOG_LEVEL || 0);
10
- var PS_EXIT_CODE;
11
- (function(PS_EXIT_CODE2) {
10
+ var PS_EXIT_CODE = /* @__PURE__ */ function(PS_EXIT_CODE2) {
12
11
  PS_EXIT_CODE2[PS_EXIT_CODE2["RELAUNCH"] = 2] = "RELAUNCH";
13
12
  PS_EXIT_CODE2[PS_EXIT_CODE2["CODE"] = 4] = "CODE";
14
- })(PS_EXIT_CODE || (PS_EXIT_CODE = exports.PS_EXIT_CODE = {}));
13
+ return PS_EXIT_CODE2;
14
+ }({});
15
15
 
16
16
  // src/utils.ts
17
17
  var _picocolors = require('picocolors'); var _picocolors2 = _interopRequireDefault(_picocolors);
package/dist/helper.js CHANGED
@@ -7,8 +7,8 @@
7
7
 
8
8
 
9
9
 
10
- var _chunkNQIFUZL4js = require('./chunk-NQIFUZL4.js');
11
- require('./chunk-J5CFUN4V.js');
10
+ var _chunk6EBEME3Ijs = require('./chunk-6EBEME3I.js');
11
+ require('./chunk-RQSQRZL4.js');
12
12
 
13
13
 
14
14
 
@@ -18,4 +18,4 @@ require('./chunk-J5CFUN4V.js');
18
18
 
19
19
 
20
20
 
21
- exports.HMR = _chunkNQIFUZL4js.HMR; exports.argToReq = _chunkNQIFUZL4js.argToReq; exports.createControllerMetaMap = _chunkNQIFUZL4js.createControllerMetaMap; exports.detectAopDep = _chunkNQIFUZL4js.detectAopDep; exports.genClientQueue = _chunkNQIFUZL4js.genClientQueue; exports.mergeObject = _chunkNQIFUZL4js.mergeObject; exports.resolveDep = _chunkNQIFUZL4js.resolveDep; exports.shallowClone = _chunkNQIFUZL4js.shallowClone;
21
+ exports.HMR = _chunk6EBEME3Ijs.HMR; exports.argToReq = _chunk6EBEME3Ijs.argToReq; exports.createControllerMetaMap = _chunk6EBEME3Ijs.createControllerMetaMap; exports.detectAopDep = _chunk6EBEME3Ijs.detectAopDep; exports.genClientQueue = _chunk6EBEME3Ijs.genClientQueue; exports.mergeObject = _chunk6EBEME3Ijs.mergeObject; exports.resolveDep = _chunk6EBEME3Ijs.resolveDep; exports.shallowClone = _chunk6EBEME3Ijs.shallowClone;
package/dist/helper.mjs CHANGED
@@ -7,8 +7,8 @@ import {
7
7
  mergeObject,
8
8
  resolveDep,
9
9
  shallowClone
10
- } from "./chunk-3FHZB3Z5.mjs";
11
- import "./chunk-WHJ5FALK.mjs";
10
+ } from "./chunk-MMG73S64.mjs";
11
+ import "./chunk-QD3QR3NW.mjs";
12
12
  export {
13
13
  HMR,
14
14
  argToReq,
@@ -1,16 +1,16 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
- var _chunkMBCHNDAYjs = require('../../chunk-MBCHNDAY.js');
3
+ var _chunkQCOBXM7Fjs = require('../../chunk-QCOBXM7F.js');
4
4
 
5
5
 
6
6
 
7
7
 
8
8
 
9
9
 
10
- var _chunkNQIFUZL4js = require('../../chunk-NQIFUZL4.js');
10
+ var _chunk6EBEME3Ijs = require('../../chunk-6EBEME3I.js');
11
11
 
12
12
 
13
- var _chunkJ5CFUN4Vjs = require('../../chunk-J5CFUN4V.js');
13
+ var _chunkRQSQRZL4js = require('../../chunk-RQSQRZL4.js');
14
14
 
15
15
  // src/http/elysia/bind.ts
16
16
  var _debug = require('debug'); var _debug2 = _interopRequireDefault(_debug);
@@ -19,14 +19,14 @@ var debug = _debug2.default.call(void 0, "phecda-server/elysia");
19
19
  function bind(app, data, opts = {}) {
20
20
  const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, dynamic = false } = opts;
21
21
  const { moduleMap, meta } = data;
22
- const metaMap = _chunkNQIFUZL4js.createControllerMetaMap.call(void 0, meta, (meta2) => {
22
+ const metaMap = _chunk6EBEME3Ijs.createControllerMetaMap.call(void 0, meta, (meta2) => {
23
23
  const { controller, http, func, tag } = meta2.data;
24
24
  if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.type])) {
25
25
  debug(`register method "${func}" in module "${tag}"`);
26
26
  return true;
27
27
  }
28
28
  });
29
- _chunkNQIFUZL4js.detectAopDep.call(void 0, meta, {
29
+ _chunk6EBEME3Ijs.detectAopDep.call(void 0, meta, {
30
30
  addons: [
31
31
  ...globalAddons,
32
32
  ...parallelAddons
@@ -35,29 +35,29 @@ function bind(app, data, opts = {}) {
35
35
  });
36
36
  registerRoute();
37
37
  function registerRoute() {
38
- _chunkNQIFUZL4js.Context.applyAddons(globalAddons, app, "elysia");
38
+ _chunk6EBEME3Ijs.Context.applyAddons(globalAddons, app, "elysia");
39
39
  if (parallelRoute) {
40
40
  const parallelRouter = new (0, _elysia.Elysia)();
41
- _chunkNQIFUZL4js.Context.applyAddons(parallelAddons, app, "elysia");
41
+ _chunk6EBEME3Ijs.Context.applyAddons(parallelAddons, app, "elysia");
42
42
  parallelRouter.post(parallelRoute, async (c) => {
43
43
  const { body } = c;
44
44
  async function errorHandler(e) {
45
- const error = await _chunkNQIFUZL4js.Context.filterRecord.default(e);
45
+ const error = await _chunk6EBEME3Ijs.Context.filterRecord.default(e);
46
46
  c.set.status = error.status;
47
47
  return error;
48
48
  }
49
- _chunkJ5CFUN4Vjs.__name.call(void 0, errorHandler, "errorHandler");
50
- if (!Array.isArray(body)) return errorHandler(new (0, _chunkNQIFUZL4js.BadRequestException)("data format should be an array"));
49
+ _chunkRQSQRZL4js.__name.call(void 0, errorHandler, "errorHandler");
50
+ if (!Array.isArray(body)) return errorHandler(new (0, _chunk6EBEME3Ijs.BadRequestException)("data format should be an array"));
51
51
  try {
52
52
  return Promise.all(body.map((item, i) => {
53
53
  return new Promise(async (resolve) => {
54
54
  const { tag, func } = item;
55
55
  debug(`(parallel)invoke method "${func}" in module "${tag}"`);
56
- if (!metaMap.has(tag)) return resolve(await _chunkNQIFUZL4js.Context.filterRecord.default(new (0, _chunkNQIFUZL4js.BadRequestException)(`module "${tag}" doesn't exist`)));
56
+ if (!metaMap.has(tag)) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`module "${tag}" doesn't exist`)));
57
57
  const meta2 = metaMap.get(tag)[func];
58
- if (!meta2) return resolve(await _chunkNQIFUZL4js.Context.filterRecord.default(new (0, _chunkNQIFUZL4js.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
58
+ if (!meta2) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
59
59
  const { data: { params } } = meta2;
60
- const aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
60
+ const aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
61
61
  globalGuards,
62
62
  globalFilter,
63
63
  globalPipe
@@ -73,24 +73,24 @@ function bind(app, data, opts = {}) {
73
73
  tag,
74
74
  func,
75
75
  app,
76
- ..._chunkNQIFUZL4js.argToReq.call(void 0, params, item.args, c.headers),
77
- getCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
78
- setCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
76
+ ..._chunk6EBEME3Ijs.argToReq.call(void 0, params, item.args, c.headers),
77
+ getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
78
+ setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
79
79
  ...opts2,
80
80
  value
81
81
  }), "setCookie"),
82
- delCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
83
- redirect: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
84
- setResHeaders: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
85
- setResStatus: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
86
- getRequest: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => {
82
+ delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
83
+ redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url) => c.redirect(url), "redirect"),
84
+ setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
85
+ setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
86
+ getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => {
87
87
  throw new Error("elysia can't support getRequest");
88
88
  }, "getRequest"),
89
- getResponse: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => {
89
+ getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => {
90
90
  throw new Error("elysia can't support getResponse");
91
91
  }, "getResponse")
92
92
  };
93
- const context = new (0, _chunkNQIFUZL4js.Context)(contextData);
93
+ const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
94
94
  context.run(aop, resolve, resolve);
95
95
  });
96
96
  })).then((ret) => {
@@ -112,13 +112,13 @@ function bind(app, data, opts = {}) {
112
112
  if (!_optionalChain([http, 'optionalAccess', _2 => _2.type])) continue;
113
113
  let aop;
114
114
  if (!dynamic) {
115
- aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
115
+ aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
116
116
  globalFilter,
117
117
  globalGuards,
118
118
  globalPipe
119
119
  });
120
120
  }
121
- _chunkNQIFUZL4js.Context.applyAddons(addons, subApp, "elysia");
121
+ _chunk6EBEME3Ijs.Context.applyAddons(addons, subApp, "elysia");
122
122
  subApp[http.type](http.prefix + http.route, async (c) => {
123
123
  debug(`invoke method "${func}" in module "${tag}"`);
124
124
  const contextData = {
@@ -134,33 +134,33 @@ function bind(app, data, opts = {}) {
134
134
  params: c.params,
135
135
  headers: c.headers,
136
136
  app,
137
- getCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
138
- setCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
137
+ getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => c.cookie[key].value, "getCookie"),
138
+ setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2 = {}) => c.cookie[key].set({
139
139
  ...opts2,
140
140
  value
141
141
  }), "setCookie"),
142
- delCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
143
- redirect: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (url) => c.redirect(url), "redirect"),
144
- setResHeaders: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
145
- setResStatus: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
146
- getRequest: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => {
142
+ delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => c.cookie[key].remove(), "delCookie"),
143
+ redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url) => c.redirect(url), "redirect"),
144
+ setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => Object.assign(c.set.headers, headers), "setResHeaders"),
145
+ setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (status) => c.set.status = status, "setResStatus"),
146
+ getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => {
147
147
  throw new Error("elysia can't support getRequest");
148
148
  }, "getRequest"),
149
- getResponse: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => {
149
+ getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => {
150
150
  throw new Error("elysia can't support getResponse");
151
151
  }, "getResponse")
152
152
  };
153
153
  if (dynamic) {
154
- aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
154
+ aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
155
155
  globalFilter,
156
156
  globalGuards,
157
157
  globalPipe
158
158
  });
159
159
  }
160
- const context = new (0, _chunkNQIFUZL4js.Context)(contextData);
160
+ const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
161
161
  if (http.headers) c.set.headers = http.headers;
162
162
  if (dynamic) {
163
- aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
163
+ aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
164
164
  globalFilter,
165
165
  globalGuards,
166
166
  globalPipe
@@ -175,13 +175,13 @@ function bind(app, data, opts = {}) {
175
175
  }
176
176
  }
177
177
  }
178
- _chunkJ5CFUN4Vjs.__name.call(void 0, registerRoute, "registerRoute");
178
+ _chunkRQSQRZL4js.__name.call(void 0, registerRoute, "registerRoute");
179
179
  }
180
- _chunkJ5CFUN4Vjs.__name.call(void 0, bind, "bind");
180
+ _chunkRQSQRZL4js.__name.call(void 0, bind, "bind");
181
181
  function Elysia(opts) {
182
- return _chunkMBCHNDAYjs.Define.call(void 0, "elysia", opts);
182
+ return _chunkQCOBXM7Fjs.Define.call(void 0, "elysia", opts);
183
183
  }
184
- _chunkJ5CFUN4Vjs.__name.call(void 0, Elysia, "Elysia");
184
+ _chunkRQSQRZL4js.__name.call(void 0, Elysia, "Elysia");
185
185
 
186
186
 
187
187
 
@@ -1,16 +1,16 @@
1
1
  import {
2
2
  Define
3
- } from "../../chunk-HMVLXNV3.mjs";
3
+ } from "../../chunk-KUGFI6SC.mjs";
4
4
  import {
5
5
  BadRequestException,
6
6
  Context,
7
7
  argToReq,
8
8
  createControllerMetaMap,
9
9
  detectAopDep
10
- } from "../../chunk-3FHZB3Z5.mjs";
10
+ } from "../../chunk-MMG73S64.mjs";
11
11
  import {
12
12
  __name
13
- } from "../../chunk-WHJ5FALK.mjs";
13
+ } from "../../chunk-QD3QR3NW.mjs";
14
14
 
15
15
  // src/http/elysia/bind.ts
16
16
  import Debug from "debug";
@@ -5,10 +5,10 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkNQIFUZL4js = require('../../chunk-NQIFUZL4.js');
8
+ var _chunk6EBEME3Ijs = require('../../chunk-6EBEME3I.js');
9
9
 
10
10
 
11
- var _chunkJ5CFUN4Vjs = require('../../chunk-J5CFUN4V.js');
11
+ var _chunkRQSQRZL4js = require('../../chunk-RQSQRZL4.js');
12
12
 
13
13
  // src/http/express/bind.ts
14
14
  var _express = require('express');
@@ -18,14 +18,14 @@ function bind(router, data, opts = {}) {
18
18
  const { globalGuards, parallelRoute = "/__PHECDA_SERVER__", globalAddons = [], parallelAddons = [], globalFilter, globalPipe, dynamic = false } = opts;
19
19
  const { moduleMap, meta } = data;
20
20
  const originStack = router.stack.slice(0, router.stack.length);
21
- const metaMap = _chunkNQIFUZL4js.createControllerMetaMap.call(void 0, meta, (meta2) => {
21
+ const metaMap = _chunk6EBEME3Ijs.createControllerMetaMap.call(void 0, meta, (meta2) => {
22
22
  const { controller, http, func, tag } = meta2.data;
23
23
  if (controller === "http" && _optionalChain([http, 'optionalAccess', _ => _.type])) {
24
24
  debug(`register method "${func}" in module "${tag}"`);
25
25
  return true;
26
26
  }
27
27
  });
28
- _chunkNQIFUZL4js.detectAopDep.call(void 0, meta, {
28
+ _chunk6EBEME3Ijs.detectAopDep.call(void 0, meta, {
29
29
  addons: [
30
30
  ...globalAddons,
31
31
  ...parallelAddons
@@ -33,33 +33,33 @@ function bind(router, data, opts = {}) {
33
33
  guards: globalGuards
34
34
  });
35
35
  registerRoute();
36
- _chunkNQIFUZL4js.HMR.call(void 0, async () => {
36
+ _chunk6EBEME3Ijs.HMR.call(void 0, async () => {
37
37
  router.stack = originStack;
38
38
  registerRoute();
39
39
  });
40
40
  function registerRoute() {
41
- _chunkNQIFUZL4js.Context.applyAddons(globalAddons, router, "express");
41
+ _chunk6EBEME3Ijs.Context.applyAddons(globalAddons, router, "express");
42
42
  if (parallelRoute) {
43
43
  const subRouter = _express.Router.call(void 0, );
44
- _chunkNQIFUZL4js.Context.applyAddons(parallelAddons, subRouter, "express");
44
+ _chunk6EBEME3Ijs.Context.applyAddons(parallelAddons, subRouter, "express");
45
45
  subRouter.use(async (req, res, next) => {
46
46
  const { body } = req;
47
47
  async function errorHandler(e) {
48
- const error = await _chunkNQIFUZL4js.Context.filterRecord.default(e);
48
+ const error = await _chunk6EBEME3Ijs.Context.filterRecord.default(e);
49
49
  return res.status(error.status).json(error);
50
50
  }
51
- _chunkJ5CFUN4Vjs.__name.call(void 0, errorHandler, "errorHandler");
52
- if (!Array.isArray(body)) return errorHandler(new (0, _chunkNQIFUZL4js.BadRequestException)("data format should be an array"));
51
+ _chunkRQSQRZL4js.__name.call(void 0, errorHandler, "errorHandler");
52
+ if (!Array.isArray(body)) return errorHandler(new (0, _chunk6EBEME3Ijs.BadRequestException)("data format should be an array"));
53
53
  try {
54
54
  return Promise.all(body.map((item, i) => {
55
55
  return new Promise(async (resolve) => {
56
56
  const { tag, func } = item;
57
57
  debug(`(parallel)invoke method "${func}" in module "${tag}"`);
58
- if (!metaMap.has(tag)) return resolve(await _chunkNQIFUZL4js.Context.filterRecord.default(new (0, _chunkNQIFUZL4js.BadRequestException)(`module "${tag}" doesn't exist`)));
58
+ if (!metaMap.has(tag)) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`module "${tag}" doesn't exist`)));
59
59
  const meta2 = metaMap.get(tag)[func];
60
- if (!meta2) return resolve(await _chunkNQIFUZL4js.Context.filterRecord.default(new (0, _chunkNQIFUZL4js.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
60
+ if (!meta2) return resolve(await _chunk6EBEME3Ijs.Context.filterRecord.default(new (0, _chunk6EBEME3Ijs.BadRequestException)(`"${func}" in "${tag}" doesn't exist`)));
61
61
  const { data: { params } } = meta2;
62
- const aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
62
+ const aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
63
63
  globalFilter,
64
64
  globalGuards,
65
65
  globalPipe
@@ -77,19 +77,19 @@ function bind(router, data, opts = {}) {
77
77
  func,
78
78
  next,
79
79
  app: router,
80
- ..._chunkNQIFUZL4js.argToReq.call(void 0, params, item.args, req.headers),
81
- getCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
82
- setCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
83
- delCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => res.cookie(key, "", {
80
+ ..._chunk6EBEME3Ijs.argToReq.call(void 0, params, item.args, req.headers),
81
+ getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
82
+ setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
83
+ delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => res.cookie(key, "", {
84
84
  expires: /* @__PURE__ */ new Date(0)
85
85
  }), "delCookie"),
86
- redirect: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
87
- setResHeaders: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
88
- setResStatus: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
89
- getRequest: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => req, "getRequest"),
90
- getResponse: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => res, "getResponse")
86
+ redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
87
+ setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
88
+ setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => res.status(code), "setResStatus"),
89
+ getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => req, "getRequest"),
90
+ getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => res, "getResponse")
91
91
  };
92
- const context = new (0, _chunkNQIFUZL4js.Context)(contextData);
92
+ const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
93
93
  context.run(aop, resolve, resolve);
94
94
  });
95
95
  })).then((ret) => {
@@ -108,14 +108,14 @@ function bind(router, data, opts = {}) {
108
108
  if (!_optionalChain([http, 'optionalAccess', _2 => _2.type])) continue;
109
109
  let aop;
110
110
  if (!dynamic) {
111
- aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
111
+ aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
112
112
  globalFilter,
113
113
  globalGuards,
114
114
  globalPipe
115
115
  });
116
116
  }
117
117
  const subRouter = _express.Router.call(void 0, );
118
- _chunkNQIFUZL4js.Context.applyAddons(addons, subRouter, "express");
118
+ _chunk6EBEME3Ijs.Context.applyAddons(addons, subRouter, "express");
119
119
  subRouter[http.type](http.prefix + http.route, async (req, res, next) => {
120
120
  debug(`invoke method "${func}" in module "${tag}"`);
121
121
  const contextData = {
@@ -133,21 +133,21 @@ function bind(router, data, opts = {}) {
133
133
  headers: req.headers,
134
134
  app: router,
135
135
  next,
136
- getCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
137
- setCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
138
- delCookie: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (key) => res.cookie(key, "", {
136
+ getCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => req.cookies[key], "getCookie"),
137
+ setCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key, value, opts2) => res.cookie(key, value, opts2 || {}), "setCookie"),
138
+ delCookie: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (key) => res.cookie(key, "", {
139
139
  expires: /* @__PURE__ */ new Date(0)
140
140
  }), "delCookie"),
141
- redirect: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
142
- setResHeaders: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
143
- setResStatus: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, (code) => res.status(code), "setResStatus"),
144
- getRequest: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => req, "getRequest"),
145
- getResponse: /* @__PURE__ */ _chunkJ5CFUN4Vjs.__name.call(void 0, () => res, "getResponse")
141
+ redirect: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (url, status) => status ? res.redirect(status, url) : res.redirect(url), "redirect"),
142
+ setResHeaders: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (headers) => res.set(headers), "setResHeaders"),
143
+ setResStatus: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, (code) => res.status(code), "setResStatus"),
144
+ getRequest: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => req, "getRequest"),
145
+ getResponse: /* @__PURE__ */ _chunkRQSQRZL4js.__name.call(void 0, () => res, "getResponse")
146
146
  };
147
- const context = new (0, _chunkNQIFUZL4js.Context)(contextData);
147
+ const context = new (0, _chunk6EBEME3Ijs.Context)(contextData);
148
148
  if (http.headers) res.set(http.headers);
149
149
  if (dynamic) {
150
- aop = _chunkNQIFUZL4js.Context.getAop(meta2, {
150
+ aop = _chunk6EBEME3Ijs.Context.getAop(meta2, {
151
151
  globalFilter,
152
152
  globalGuards,
153
153
  globalPipe
@@ -166,9 +166,9 @@ function bind(router, data, opts = {}) {
166
166
  }
167
167
  }
168
168
  }
169
- _chunkJ5CFUN4Vjs.__name.call(void 0, registerRoute, "registerRoute");
169
+ _chunkRQSQRZL4js.__name.call(void 0, registerRoute, "registerRoute");
170
170
  }
171
- _chunkJ5CFUN4Vjs.__name.call(void 0, bind, "bind");
171
+ _chunkRQSQRZL4js.__name.call(void 0, bind, "bind");
172
172
 
173
173
 
174
174
  exports.bind = bind;
@@ -5,10 +5,10 @@ import {
5
5
  argToReq,
6
6
  createControllerMetaMap,
7
7
  detectAopDep
8
- } from "../../chunk-3FHZB3Z5.mjs";
8
+ } from "../../chunk-MMG73S64.mjs";
9
9
  import {
10
10
  __name
11
- } from "../../chunk-WHJ5FALK.mjs";
11
+ } from "../../chunk-QD3QR3NW.mjs";
12
12
 
13
13
  // src/http/express/bind.ts
14
14
  import { Router } from "express";