phecda-server 8.3.1 → 8.4.1
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/bin/cli.mjs +0 -3
- package/dist/{chunk-LYLSA56Y.mjs → chunk-3OKDXHO7.mjs} +3 -11
- package/dist/{chunk-C424F7TV.js → chunk-RS6H6TEX.js} +3 -11
- package/dist/http/elysia/index.js +2 -2
- package/dist/http/elysia/index.mjs +1 -1
- package/dist/http/fastify/index.js +2 -2
- package/dist/http/fastify/index.mjs +1 -1
- package/dist/index.d.mts +2 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +4 -6
- package/dist/index.mjs +4 -6
- package/dist/test.d.mts +2 -1
- package/dist/test.d.ts +2 -1
- package/dist/test.js +4 -2
- package/dist/test.mjs +4 -2
- package/package.json +1 -1
package/bin/cli.mjs
CHANGED
|
@@ -46,20 +46,13 @@ function Arg(target, k, index) {
|
|
|
46
46
|
})(target, k, index);
|
|
47
47
|
}
|
|
48
48
|
__name(Arg, "Arg");
|
|
49
|
-
function
|
|
49
|
+
function UploadFile(key = "") {
|
|
50
50
|
return BaseParam({
|
|
51
51
|
type: "file",
|
|
52
52
|
key
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
|
-
__name(
|
|
56
|
-
function ManyFiles(key = "") {
|
|
57
|
-
return BaseParam({
|
|
58
|
-
type: "files",
|
|
59
|
-
key
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
__name(ManyFiles, "ManyFiles");
|
|
55
|
+
__name(UploadFile, "UploadFile");
|
|
63
56
|
|
|
64
57
|
// src/decorators/aop.ts
|
|
65
58
|
import { setMeta as setMeta2 } from "phecda-core";
|
|
@@ -234,8 +227,7 @@ export {
|
|
|
234
227
|
Query,
|
|
235
228
|
Param,
|
|
236
229
|
Arg,
|
|
237
|
-
|
|
238
|
-
ManyFiles,
|
|
230
|
+
UploadFile,
|
|
239
231
|
Guard,
|
|
240
232
|
Addon,
|
|
241
233
|
Filter,
|
|
@@ -46,20 +46,13 @@ function Arg(target, k, index) {
|
|
|
46
46
|
})(target, k, index);
|
|
47
47
|
}
|
|
48
48
|
_chunkOUQM7GZHjs.__name.call(void 0, Arg, "Arg");
|
|
49
|
-
function
|
|
49
|
+
function UploadFile(key = "") {
|
|
50
50
|
return BaseParam({
|
|
51
51
|
type: "file",
|
|
52
52
|
key
|
|
53
53
|
});
|
|
54
54
|
}
|
|
55
|
-
_chunkOUQM7GZHjs.__name.call(void 0,
|
|
56
|
-
function ManyFiles(key = "") {
|
|
57
|
-
return BaseParam({
|
|
58
|
-
type: "files",
|
|
59
|
-
key
|
|
60
|
-
});
|
|
61
|
-
}
|
|
62
|
-
_chunkOUQM7GZHjs.__name.call(void 0, ManyFiles, "ManyFiles");
|
|
55
|
+
_chunkOUQM7GZHjs.__name.call(void 0, UploadFile, "UploadFile");
|
|
63
56
|
|
|
64
57
|
// src/decorators/aop.ts
|
|
65
58
|
|
|
@@ -253,5 +246,4 @@ _chunkOUQM7GZHjs.__name.call(void 0, ApiDoc, "ApiDoc");
|
|
|
253
246
|
|
|
254
247
|
|
|
255
248
|
|
|
256
|
-
|
|
257
|
-
exports.BaseParam = BaseParam; exports.Body = Body; exports.Head = Head; exports.Query = Query; exports.Param = Param; exports.Arg = Arg; exports.OneFile = OneFile; exports.ManyFiles = ManyFiles; exports.Guard = Guard; exports.Addon = Addon; exports.Filter = Filter; exports.Pipe = Pipe; exports.Route = Route; exports.Header = Header; exports.Get = Get; exports.Post = Post; exports.Put = Put; exports.Search = Search; exports.Patch = Patch; exports.Delete = Delete; exports.Controller = Controller; exports.Queue = Queue; exports.Rpc = Rpc; exports.Ctx = Ctx; exports.Define = Define; exports.ApiDoc = ApiDoc;
|
|
249
|
+
exports.BaseParam = BaseParam; exports.Body = Body; exports.Head = Head; exports.Query = Query; exports.Param = Param; exports.Arg = Arg; exports.UploadFile = UploadFile; exports.Guard = Guard; exports.Addon = Addon; exports.Filter = Filter; exports.Pipe = Pipe; exports.Route = Route; exports.Header = Header; exports.Get = Get; exports.Post = Post; exports.Put = Put; exports.Search = Search; exports.Patch = Patch; exports.Delete = Delete; exports.Controller = Controller; exports.Queue = Queue; exports.Rpc = Rpc; exports.Ctx = Ctx; exports.Define = Define; exports.ApiDoc = ApiDoc;
|
|
@@ -1,6 +1,6 @@
|
|
|
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
|
|
3
|
+
var _chunkRS6H6TEXjs = require('../../chunk-RS6H6TEX.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -177,7 +177,7 @@ function bind(app, data, opts = {}) {
|
|
|
177
177
|
}
|
|
178
178
|
_chunkOUQM7GZHjs.__name.call(void 0, bind, "bind");
|
|
179
179
|
function Elysia(opts) {
|
|
180
|
-
return
|
|
180
|
+
return _chunkRS6H6TEXjs.Define.call(void 0, "elysia", opts);
|
|
181
181
|
}
|
|
182
182
|
_chunkOUQM7GZHjs.__name.call(void 0, Elysia, "Elysia");
|
|
183
183
|
|
|
@@ -1,6 +1,6 @@
|
|
|
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
|
|
3
|
+
var _chunkRS6H6TEXjs = require('../../chunk-RS6H6TEX.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
|
|
@@ -166,7 +166,7 @@ function bind(fastify, data, opts = {}) {
|
|
|
166
166
|
}
|
|
167
167
|
_chunkOUQM7GZHjs.__name.call(void 0, bind, "bind");
|
|
168
168
|
function Fastify(opts) {
|
|
169
|
-
return
|
|
169
|
+
return _chunkRS6H6TEXjs.Define.call(void 0, "fastify", opts);
|
|
170
170
|
}
|
|
171
171
|
_chunkOUQM7GZHjs.__name.call(void 0, Fastify, "Fastify");
|
|
172
172
|
|
package/dist/index.d.mts
CHANGED
|
@@ -201,8 +201,7 @@ declare function Head(key: string): ParameterDecorator;
|
|
|
201
201
|
declare function Query(key?: string): ParameterDecorator;
|
|
202
202
|
declare function Param(key: string): ParameterDecorator;
|
|
203
203
|
declare function Arg(target: any, k: string, index: number): void;
|
|
204
|
-
declare function
|
|
205
|
-
declare function ManyFiles(key?: string): ParameterDecorator;
|
|
204
|
+
declare function UploadFile(key?: string): ParameterDecorator;
|
|
206
205
|
|
|
207
206
|
declare function Guard(...guards: string[]): (target: any, property?: PropertyKey) => void;
|
|
208
207
|
declare function Addon(...addons: string[]): (target: any, property?: PropertyKey) => void;
|
|
@@ -357,4 +356,4 @@ declare class PExtension extends ServerBase {
|
|
|
357
356
|
|
|
358
357
|
declare const defaultFilter: FilterType;
|
|
359
358
|
|
|
360
|
-
export { type AOP, Addon, ApiDoc, Arg, BadGatewayException, BadRequestException, BaseCtx, BaseError, BaseParam, Body, ConflictException, Context, Controller, ControllerMeta, ControllerMetaData, Ctx, DefaultOptions, Define, Delete, DocGenerator, Emitter, Exception, Filter, type FilterType, ForbiddenException, FrameworkException, Generator, Get, GraphGenerator, Guard, type GuardType, HTTPGenerator, Head, Header, HttpBase, HttpCtx, InvalidInputException, type LogLevel, type Logger,
|
|
359
|
+
export { type AOP, Addon, ApiDoc, Arg, BadGatewayException, BadRequestException, BaseCtx, BaseError, BaseParam, Body, ConflictException, Context, Controller, ControllerMeta, ControllerMetaData, Ctx, DefaultOptions, Define, Delete, DocGenerator, Emitter, Exception, Filter, type FilterType, ForbiddenException, FrameworkException, Generator, Get, GraphGenerator, Guard, type GuardType, HTTPGenerator, Head, Header, HttpBase, HttpCtx, InvalidInputException, type LogLevel, type Logger, Meta, NotFoundException, type OpenAPIConfig, OpenAPIGenerator, PAddon, PExtension, PFilter, PGuard, PPipe, Param, Patch, PayloadLargeException, Pipe, type PipeArg, type PipeType, Post, Put, Query, Queue, RPCGenerator, Route, Rpc, RpcBase, RpcCtx, Search, ServerBase, ServiceUnavailableException, TimeoutException, TimerException, UnauthorizedException, UndefinedException, UnsupportedMediaTypeException, UploadFile, ValidateException, WorkerException, addAddon, addFilter, addGuard, addPipe, defaultFilter, defaultPipe, getLogger, log, runMiddleware, setLogger };
|
package/dist/index.d.ts
CHANGED
|
@@ -201,8 +201,7 @@ declare function Head(key: string): ParameterDecorator;
|
|
|
201
201
|
declare function Query(key?: string): ParameterDecorator;
|
|
202
202
|
declare function Param(key: string): ParameterDecorator;
|
|
203
203
|
declare function Arg(target: any, k: string, index: number): void;
|
|
204
|
-
declare function
|
|
205
|
-
declare function ManyFiles(key?: string): ParameterDecorator;
|
|
204
|
+
declare function UploadFile(key?: string): ParameterDecorator;
|
|
206
205
|
|
|
207
206
|
declare function Guard(...guards: string[]): (target: any, property?: PropertyKey) => void;
|
|
208
207
|
declare function Addon(...addons: string[]): (target: any, property?: PropertyKey) => void;
|
|
@@ -357,4 +356,4 @@ declare class PExtension extends ServerBase {
|
|
|
357
356
|
|
|
358
357
|
declare const defaultFilter: FilterType;
|
|
359
358
|
|
|
360
|
-
export { type AOP, Addon, ApiDoc, Arg, BadGatewayException, BadRequestException, BaseCtx, BaseError, BaseParam, Body, ConflictException, Context, Controller, ControllerMeta, ControllerMetaData, Ctx, DefaultOptions, Define, Delete, DocGenerator, Emitter, Exception, Filter, type FilterType, ForbiddenException, FrameworkException, Generator, Get, GraphGenerator, Guard, type GuardType, HTTPGenerator, Head, Header, HttpBase, HttpCtx, InvalidInputException, type LogLevel, type Logger,
|
|
359
|
+
export { type AOP, Addon, ApiDoc, Arg, BadGatewayException, BadRequestException, BaseCtx, BaseError, BaseParam, Body, ConflictException, Context, Controller, ControllerMeta, ControllerMetaData, Ctx, DefaultOptions, Define, Delete, DocGenerator, Emitter, Exception, Filter, type FilterType, ForbiddenException, FrameworkException, Generator, Get, GraphGenerator, Guard, type GuardType, HTTPGenerator, Head, Header, HttpBase, HttpCtx, InvalidInputException, type LogLevel, type Logger, Meta, NotFoundException, type OpenAPIConfig, OpenAPIGenerator, PAddon, PExtension, PFilter, PGuard, PPipe, Param, Patch, PayloadLargeException, Pipe, type PipeArg, type PipeType, Post, Put, Query, Queue, RPCGenerator, Route, Rpc, RpcBase, RpcCtx, Search, ServerBase, ServiceUnavailableException, TimeoutException, TimerException, UnauthorizedException, UndefinedException, UnsupportedMediaTypeException, UploadFile, ValidateException, WorkerException, addAddon, addFilter, addGuard, addPipe, defaultFilter, defaultPipe, getLogger, log, runMiddleware, setLogger };
|
package/dist/index.js
CHANGED
|
@@ -33,8 +33,7 @@ var _chunkSRPCXPAQjs = require('./chunk-SRPCXPAQ.js');
|
|
|
33
33
|
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
var _chunkC424F7TVjs = require('./chunk-C424F7TV.js');
|
|
36
|
+
var _chunkRS6H6TEXjs = require('./chunk-RS6H6TEX.js');
|
|
38
37
|
|
|
39
38
|
|
|
40
39
|
|
|
@@ -115,7 +114,7 @@ var HttpBase = class extends ServerBase {
|
|
|
115
114
|
|
|
116
115
|
};
|
|
117
116
|
_ts_decorate([
|
|
118
|
-
|
|
117
|
+
_chunkRS6H6TEXjs.Ctx,
|
|
119
118
|
_ts_metadata("design:type", typeof Ctx === "undefined" ? Object : Ctx)
|
|
120
119
|
], HttpBase.prototype, "context", void 0);
|
|
121
120
|
var RpcBase = class extends ServerBase {
|
|
@@ -125,7 +124,7 @@ var RpcBase = class extends ServerBase {
|
|
|
125
124
|
|
|
126
125
|
};
|
|
127
126
|
_ts_decorate([
|
|
128
|
-
|
|
127
|
+
_chunkRS6H6TEXjs.Ctx,
|
|
129
128
|
_ts_metadata("design:type", typeof Ctx === "undefined" ? Object : Ctx)
|
|
130
129
|
], RpcBase.prototype, "context", void 0);
|
|
131
130
|
|
|
@@ -539,5 +538,4 @@ var GraphGenerator = (_class9 = class extends Generator {constructor(...args6) {
|
|
|
539
538
|
|
|
540
539
|
|
|
541
540
|
|
|
542
|
-
|
|
543
|
-
exports.Addon = _chunkC424F7TVjs.Addon; exports.ApiDoc = _chunkC424F7TVjs.ApiDoc; exports.Arg = _chunkC424F7TVjs.Arg; exports.BadGatewayException = _chunkR73A7HS3js.BadGatewayException; exports.BadRequestException = _chunkR73A7HS3js.BadRequestException; exports.BaseParam = _chunkC424F7TVjs.BaseParam; exports.Body = _chunkC424F7TVjs.Body; exports.ConflictException = _chunkR73A7HS3js.ConflictException; exports.Context = _chunkR73A7HS3js.Context; exports.Controller = _chunkC424F7TVjs.Controller; exports.Ctx = _chunkC424F7TVjs.Ctx; exports.CustomResponse = CustomResponse; exports.Define = _chunkC424F7TVjs.Define; exports.Delete = _chunkC424F7TVjs.Delete; exports.DocGenerator = DocGenerator; exports.ERROR_SYMBOL = _chunkOUQM7GZHjs.ERROR_SYMBOL; exports.Exception = _chunkR73A7HS3js.Exception; exports.Factory = _chunkSRPCXPAQjs.Factory; exports.Filter = _chunkC424F7TVjs.Filter; exports.ForbiddenException = _chunkR73A7HS3js.ForbiddenException; exports.FrameworkException = _chunkR73A7HS3js.FrameworkException; exports.Generator = Generator; exports.Get = _chunkC424F7TVjs.Get; exports.GraphGenerator = GraphGenerator; exports.Guard = _chunkC424F7TVjs.Guard; exports.HTTPGenerator = HTTPGenerator; exports.Head = _chunkC424F7TVjs.Head; exports.Header = _chunkC424F7TVjs.Header; exports.HttpBase = HttpBase; exports.IS_DEV = _chunkOUQM7GZHjs.IS_DEV; exports.IS_ONLY_GENERATE = _chunkOUQM7GZHjs.IS_ONLY_GENERATE; exports.IS_PURE = _chunkOUQM7GZHjs.IS_PURE; exports.IS_STRICT = _chunkOUQM7GZHjs.IS_STRICT; exports.InvalidInputException = _chunkR73A7HS3js.InvalidInputException; exports.LOG_LEVEL = _chunkOUQM7GZHjs.LOG_LEVEL; exports.ManyFiles = _chunkC424F7TVjs.ManyFiles; exports.Meta = _chunkSRPCXPAQjs.Meta; exports.Mixin = _chunkOUQM7GZHjs.Mixin; exports.NotFoundException = _chunkR73A7HS3js.NotFoundException; exports.OneFile = _chunkC424F7TVjs.OneFile; exports.OpenAPIGenerator = OpenAPIGenerator; exports.PAddon = PAddon; exports.PExtension = PExtension; exports.PFilter = PFilter; exports.PGuard = PGuard; exports.PPipe = PPipe; exports.PS_EXIT_CODE = _chunkOUQM7GZHjs.PS_EXIT_CODE; exports.Param = _chunkC424F7TVjs.Param; exports.Patch = _chunkC424F7TVjs.Patch; exports.PayloadLargeException = _chunkR73A7HS3js.PayloadLargeException; exports.Pipe = _chunkC424F7TVjs.Pipe; exports.Post = _chunkC424F7TVjs.Post; exports.Put = _chunkC424F7TVjs.Put; exports.Query = _chunkC424F7TVjs.Query; exports.Queue = _chunkC424F7TVjs.Queue; exports.RPCGenerator = RPCGenerator; exports.Route = _chunkC424F7TVjs.Route; exports.Rpc = _chunkC424F7TVjs.Rpc; exports.RpcBase = RpcBase; exports.Search = _chunkC424F7TVjs.Search; exports.ServerBase = ServerBase; exports.ServerPhecda = _chunkSRPCXPAQjs.ServerPhecda; exports.ServiceUnavailableException = _chunkR73A7HS3js.ServiceUnavailableException; exports.TimeoutException = _chunkR73A7HS3js.TimeoutException; exports.TimerException = _chunkR73A7HS3js.TimerException; exports.UnauthorizedException = _chunkR73A7HS3js.UnauthorizedException; exports.UndefinedException = _chunkR73A7HS3js.UndefinedException; exports.UnsupportedMediaTypeException = _chunkR73A7HS3js.UnsupportedMediaTypeException; exports.ValidateException = _chunkR73A7HS3js.ValidateException; exports.WorkerException = _chunkR73A7HS3js.WorkerException; exports.addAddon = _chunkR73A7HS3js.addAddon; exports.addFilter = _chunkR73A7HS3js.addFilter; exports.addGuard = _chunkR73A7HS3js.addGuard; exports.addPipe = _chunkR73A7HS3js.addPipe; exports.defaultFilter = _chunkR73A7HS3js.defaultFilter; exports.defaultPipe = _chunkR73A7HS3js.defaultPipe; exports.defaultServerInject = _chunkSRPCXPAQjs.defaultServerInject; exports.emitter = _chunkSRPCXPAQjs.emitter; exports.getLogger = _chunkOUQM7GZHjs.getLogger; exports.log = _chunkOUQM7GZHjs.log; exports.phecdaNamespace = _chunkSRPCXPAQjs.phecdaNamespace; exports.runMiddleware = _chunkOUQM7GZHjs.runMiddleware; exports.setLogger = _chunkOUQM7GZHjs.setLogger; exports.useS = _chunkSRPCXPAQjs.useS;
|
|
541
|
+
exports.Addon = _chunkRS6H6TEXjs.Addon; exports.ApiDoc = _chunkRS6H6TEXjs.ApiDoc; exports.Arg = _chunkRS6H6TEXjs.Arg; exports.BadGatewayException = _chunkR73A7HS3js.BadGatewayException; exports.BadRequestException = _chunkR73A7HS3js.BadRequestException; exports.BaseParam = _chunkRS6H6TEXjs.BaseParam; exports.Body = _chunkRS6H6TEXjs.Body; exports.ConflictException = _chunkR73A7HS3js.ConflictException; exports.Context = _chunkR73A7HS3js.Context; exports.Controller = _chunkRS6H6TEXjs.Controller; exports.Ctx = _chunkRS6H6TEXjs.Ctx; exports.CustomResponse = CustomResponse; exports.Define = _chunkRS6H6TEXjs.Define; exports.Delete = _chunkRS6H6TEXjs.Delete; exports.DocGenerator = DocGenerator; exports.ERROR_SYMBOL = _chunkOUQM7GZHjs.ERROR_SYMBOL; exports.Exception = _chunkR73A7HS3js.Exception; exports.Factory = _chunkSRPCXPAQjs.Factory; exports.Filter = _chunkRS6H6TEXjs.Filter; exports.ForbiddenException = _chunkR73A7HS3js.ForbiddenException; exports.FrameworkException = _chunkR73A7HS3js.FrameworkException; exports.Generator = Generator; exports.Get = _chunkRS6H6TEXjs.Get; exports.GraphGenerator = GraphGenerator; exports.Guard = _chunkRS6H6TEXjs.Guard; exports.HTTPGenerator = HTTPGenerator; exports.Head = _chunkRS6H6TEXjs.Head; exports.Header = _chunkRS6H6TEXjs.Header; exports.HttpBase = HttpBase; exports.IS_DEV = _chunkOUQM7GZHjs.IS_DEV; exports.IS_ONLY_GENERATE = _chunkOUQM7GZHjs.IS_ONLY_GENERATE; exports.IS_PURE = _chunkOUQM7GZHjs.IS_PURE; exports.IS_STRICT = _chunkOUQM7GZHjs.IS_STRICT; exports.InvalidInputException = _chunkR73A7HS3js.InvalidInputException; exports.LOG_LEVEL = _chunkOUQM7GZHjs.LOG_LEVEL; exports.Meta = _chunkSRPCXPAQjs.Meta; exports.Mixin = _chunkOUQM7GZHjs.Mixin; exports.NotFoundException = _chunkR73A7HS3js.NotFoundException; exports.OpenAPIGenerator = OpenAPIGenerator; exports.PAddon = PAddon; exports.PExtension = PExtension; exports.PFilter = PFilter; exports.PGuard = PGuard; exports.PPipe = PPipe; exports.PS_EXIT_CODE = _chunkOUQM7GZHjs.PS_EXIT_CODE; exports.Param = _chunkRS6H6TEXjs.Param; exports.Patch = _chunkRS6H6TEXjs.Patch; exports.PayloadLargeException = _chunkR73A7HS3js.PayloadLargeException; exports.Pipe = _chunkRS6H6TEXjs.Pipe; exports.Post = _chunkRS6H6TEXjs.Post; exports.Put = _chunkRS6H6TEXjs.Put; exports.Query = _chunkRS6H6TEXjs.Query; exports.Queue = _chunkRS6H6TEXjs.Queue; exports.RPCGenerator = RPCGenerator; exports.Route = _chunkRS6H6TEXjs.Route; exports.Rpc = _chunkRS6H6TEXjs.Rpc; exports.RpcBase = RpcBase; exports.Search = _chunkRS6H6TEXjs.Search; exports.ServerBase = ServerBase; exports.ServerPhecda = _chunkSRPCXPAQjs.ServerPhecda; exports.ServiceUnavailableException = _chunkR73A7HS3js.ServiceUnavailableException; exports.TimeoutException = _chunkR73A7HS3js.TimeoutException; exports.TimerException = _chunkR73A7HS3js.TimerException; exports.UnauthorizedException = _chunkR73A7HS3js.UnauthorizedException; exports.UndefinedException = _chunkR73A7HS3js.UndefinedException; exports.UnsupportedMediaTypeException = _chunkR73A7HS3js.UnsupportedMediaTypeException; exports.UploadFile = _chunkRS6H6TEXjs.UploadFile; exports.ValidateException = _chunkR73A7HS3js.ValidateException; exports.WorkerException = _chunkR73A7HS3js.WorkerException; exports.addAddon = _chunkR73A7HS3js.addAddon; exports.addFilter = _chunkR73A7HS3js.addFilter; exports.addGuard = _chunkR73A7HS3js.addGuard; exports.addPipe = _chunkR73A7HS3js.addPipe; exports.defaultFilter = _chunkR73A7HS3js.defaultFilter; exports.defaultPipe = _chunkR73A7HS3js.defaultPipe; exports.defaultServerInject = _chunkSRPCXPAQjs.defaultServerInject; exports.emitter = _chunkSRPCXPAQjs.emitter; exports.getLogger = _chunkOUQM7GZHjs.getLogger; exports.log = _chunkOUQM7GZHjs.log; exports.phecdaNamespace = _chunkSRPCXPAQjs.phecdaNamespace; exports.runMiddleware = _chunkOUQM7GZHjs.runMiddleware; exports.setLogger = _chunkOUQM7GZHjs.setLogger; exports.useS = _chunkSRPCXPAQjs.useS;
|
package/dist/index.mjs
CHANGED
|
@@ -22,8 +22,6 @@ import {
|
|
|
22
22
|
Guard,
|
|
23
23
|
Head,
|
|
24
24
|
Header,
|
|
25
|
-
ManyFiles,
|
|
26
|
-
OneFile,
|
|
27
25
|
Param,
|
|
28
26
|
Patch,
|
|
29
27
|
Pipe,
|
|
@@ -33,8 +31,9 @@ import {
|
|
|
33
31
|
Queue,
|
|
34
32
|
Route,
|
|
35
33
|
Rpc,
|
|
36
|
-
Search
|
|
37
|
-
|
|
34
|
+
Search,
|
|
35
|
+
UploadFile
|
|
36
|
+
} from "./chunk-3OKDXHO7.mjs";
|
|
38
37
|
import {
|
|
39
38
|
BadGatewayException,
|
|
40
39
|
BadRequestException,
|
|
@@ -491,11 +490,9 @@ export {
|
|
|
491
490
|
IS_STRICT,
|
|
492
491
|
InvalidInputException,
|
|
493
492
|
LOG_LEVEL,
|
|
494
|
-
ManyFiles,
|
|
495
493
|
Meta,
|
|
496
494
|
Mixin,
|
|
497
495
|
NotFoundException,
|
|
498
|
-
OneFile,
|
|
499
496
|
OpenAPIGenerator,
|
|
500
497
|
PAddon,
|
|
501
498
|
PExtension,
|
|
@@ -524,6 +521,7 @@ export {
|
|
|
524
521
|
UnauthorizedException,
|
|
525
522
|
UndefinedException,
|
|
526
523
|
UnsupportedMediaTypeException,
|
|
524
|
+
UploadFile,
|
|
527
525
|
ValidateException,
|
|
528
526
|
WorkerException,
|
|
529
527
|
addAddon,
|
package/dist/test.d.mts
CHANGED
|
@@ -15,8 +15,9 @@ declare function TestFactory<T extends Construct[]>(...Modules: T): Promise<{
|
|
|
15
15
|
type SuperTestRequest<T> = {
|
|
16
16
|
[K in keyof T]: T[K] extends (...args: infer R) => any ? (...args: R) => Test : never;
|
|
17
17
|
};
|
|
18
|
-
declare function TestHttp(app: Server | any, { moduleMap, meta }: Awaited<ReturnType<typeof Factory>>, isAgent?: boolean): Promise<
|
|
18
|
+
declare function TestHttp(app: Server | any, { moduleMap, meta }: Awaited<ReturnType<typeof Factory>>, isAgent?: boolean): Promise<{
|
|
19
19
|
module: <T extends Construct>(Module: T) => SuperTestRequest<PickFunc<InstanceType<T>>>;
|
|
20
|
+
agent: typeof supertest.agent;
|
|
20
21
|
}>;
|
|
21
22
|
|
|
22
23
|
export { type PickFunc, type SuperTestRequest, TestFactory, TestHttp };
|
package/dist/test.d.ts
CHANGED
|
@@ -15,8 +15,9 @@ declare function TestFactory<T extends Construct[]>(...Modules: T): Promise<{
|
|
|
15
15
|
type SuperTestRequest<T> = {
|
|
16
16
|
[K in keyof T]: T[K] extends (...args: infer R) => any ? (...args: R) => Test : never;
|
|
17
17
|
};
|
|
18
|
-
declare function TestHttp(app: Server | any, { moduleMap, meta }: Awaited<ReturnType<typeof Factory>>, isAgent?: boolean): Promise<
|
|
18
|
+
declare function TestHttp(app: Server | any, { moduleMap, meta }: Awaited<ReturnType<typeof Factory>>, isAgent?: boolean): Promise<{
|
|
19
19
|
module: <T extends Construct>(Module: T) => SuperTestRequest<PickFunc<InstanceType<T>>>;
|
|
20
|
+
agent: typeof supertest.agent;
|
|
20
21
|
}>;
|
|
21
22
|
|
|
22
23
|
export { type PickFunc, type SuperTestRequest, TestFactory, TestHttp };
|
package/dist/test.js
CHANGED
|
@@ -60,8 +60,10 @@ async function TestHttp(app, { moduleMap, meta }, isAgent = true) {
|
|
|
60
60
|
});
|
|
61
61
|
}
|
|
62
62
|
_chunkOUQM7GZHjs.__name.call(void 0, module, "module");
|
|
63
|
-
|
|
64
|
-
|
|
63
|
+
return {
|
|
64
|
+
module,
|
|
65
|
+
agent
|
|
66
|
+
};
|
|
65
67
|
}
|
|
66
68
|
_chunkOUQM7GZHjs.__name.call(void 0, TestHttp, "TestHttp");
|
|
67
69
|
|
package/dist/test.mjs
CHANGED