better-call 0.2.13-beta.2 → 0.2.13-beta.4
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 -1
- package/dist/adapter/node.cjs +210 -0
- package/dist/adapter/node.d.cts +19 -0
- package/dist/adapter/node.d.mts +19 -0
- package/dist/adapter/node.d.ts +19 -0
- package/dist/adapter/node.mjs +206 -0
- package/dist/client.d.cts +4 -4
- package/dist/client.d.mts +4 -4
- package/dist/client.d.ts +4 -4
- package/dist/index.cjs +94 -20
- package/dist/index.d.cts +19 -2
- package/dist/index.d.mts +19 -2
- package/dist/index.d.ts +19 -2
- package/dist/index.mjs +95 -20
- package/dist/shared/{better-call.342be6c5.d.cts → better-call.7c5f7404.d.cts} +335 -59
- package/dist/shared/{better-call.342be6c5.d.mts → better-call.7c5f7404.d.mts} +335 -59
- package/dist/shared/{better-call.342be6c5.d.ts → better-call.7c5f7404.d.ts} +335 -59
- package/package.json +7 -2
package/dist/index.cjs
CHANGED
|
@@ -1,27 +1,14 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const crypto = require('uncrypto');
|
|
4
|
+
const zodToOpenapi = require('@asteasolutions/zod-to-openapi');
|
|
5
|
+
const zod = require('zod');
|
|
4
6
|
const rou3 = require('rou3');
|
|
5
7
|
|
|
6
8
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
|
|
7
9
|
|
|
8
10
|
const crypto__default = /*#__PURE__*/_interopDefaultCompat(crypto);
|
|
9
11
|
|
|
10
|
-
function createJSON({
|
|
11
|
-
asResponse,
|
|
12
|
-
response
|
|
13
|
-
}) {
|
|
14
|
-
return async function json(json, routerResponse) {
|
|
15
|
-
if (!asResponse) {
|
|
16
|
-
return json;
|
|
17
|
-
}
|
|
18
|
-
return {
|
|
19
|
-
body: json,
|
|
20
|
-
routerResponse,
|
|
21
|
-
_flag: "json"
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
}
|
|
25
12
|
function runValidation(options, context) {
|
|
26
13
|
let request = {
|
|
27
14
|
body: void 0,
|
|
@@ -332,6 +319,17 @@ const getSignedCookie = async (header, secret, key, prefix) => {
|
|
|
332
319
|
return obj[finalKey];
|
|
333
320
|
};
|
|
334
321
|
|
|
322
|
+
function paramToZod(path) {
|
|
323
|
+
const parts = path.split("/");
|
|
324
|
+
const params = parts.filter((part) => part.startsWith(":"));
|
|
325
|
+
const zod$1 = zod.z.object({});
|
|
326
|
+
for (const param of params) {
|
|
327
|
+
zod$1.merge(zod.z.object({ [param.slice(1)]: zod.z.string() }));
|
|
328
|
+
}
|
|
329
|
+
return zod$1;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
zodToOpenapi.extendZodWithOpenApi(zod.z);
|
|
335
333
|
const createResponse = (handlerResponse, response) => {
|
|
336
334
|
if (handlerResponse instanceof Response) {
|
|
337
335
|
response.headers.forEach((value, key) => {
|
|
@@ -384,10 +382,16 @@ const createEndpoint = (path, options, handler) => {
|
|
|
384
382
|
throw new APIError(error.message, 400);
|
|
385
383
|
}
|
|
386
384
|
const context = {
|
|
387
|
-
json:
|
|
388
|
-
asResponse
|
|
389
|
-
|
|
390
|
-
|
|
385
|
+
json: (json, routerResponse) => {
|
|
386
|
+
if (!asResponse) {
|
|
387
|
+
return json;
|
|
388
|
+
}
|
|
389
|
+
return {
|
|
390
|
+
body: json,
|
|
391
|
+
routerResponse,
|
|
392
|
+
_flag: "json"
|
|
393
|
+
};
|
|
394
|
+
},
|
|
391
395
|
body: "body" in data ? data.body : void 0,
|
|
392
396
|
path,
|
|
393
397
|
method: "method" in ctx ? ctx.method : void 0,
|
|
@@ -450,8 +454,66 @@ const createEndpoint = (path, options, handler) => {
|
|
|
450
454
|
};
|
|
451
455
|
internalHandler.path = path;
|
|
452
456
|
internalHandler.options = options;
|
|
457
|
+
const registry = new zodToOpenapi.OpenAPIRegistry();
|
|
458
|
+
registry.registerPath({
|
|
459
|
+
path,
|
|
460
|
+
method: Array.isArray(options.method) ? options.method[0].toLowerCase() : options.method.toLowerCase(),
|
|
461
|
+
request: {
|
|
462
|
+
...options.body ? {
|
|
463
|
+
body: {
|
|
464
|
+
content: {
|
|
465
|
+
"application/json": {
|
|
466
|
+
schema: options.body
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
}
|
|
470
|
+
} : {},
|
|
471
|
+
...options.query ? {
|
|
472
|
+
query: options.query
|
|
473
|
+
} : {},
|
|
474
|
+
params: paramToZod(path)
|
|
475
|
+
},
|
|
476
|
+
responses: {
|
|
477
|
+
200: {
|
|
478
|
+
description: "Successful response",
|
|
479
|
+
content: {
|
|
480
|
+
"application/json": {
|
|
481
|
+
schema: zod.z.record(zod.z.unknown())
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
400: {
|
|
486
|
+
description: "Bad request",
|
|
487
|
+
content: {
|
|
488
|
+
"application/json": {
|
|
489
|
+
schema: zod.z.object({
|
|
490
|
+
message: zod.z.string()
|
|
491
|
+
})
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
...options.openAPI?.responses
|
|
496
|
+
}
|
|
497
|
+
});
|
|
498
|
+
internalHandler.openAPI = {
|
|
499
|
+
definitions: registry.definitions
|
|
500
|
+
};
|
|
453
501
|
return internalHandler;
|
|
454
502
|
};
|
|
503
|
+
function createEndpointCreator(opts) {
|
|
504
|
+
return (path, options, handler) => {
|
|
505
|
+
const res = createEndpoint(
|
|
506
|
+
path,
|
|
507
|
+
{
|
|
508
|
+
...options,
|
|
509
|
+
use: [...options?.use || [], ...opts?.use || []]
|
|
510
|
+
},
|
|
511
|
+
handler
|
|
512
|
+
);
|
|
513
|
+
return res;
|
|
514
|
+
};
|
|
515
|
+
}
|
|
516
|
+
createEndpoint.creator = createEndpointCreator;
|
|
455
517
|
|
|
456
518
|
async function getBody(request) {
|
|
457
519
|
const contentType = request.headers.get("content-type") || "";
|
|
@@ -648,10 +710,22 @@ function createMiddleware(optionsOrHandler, handler) {
|
|
|
648
710
|
);
|
|
649
711
|
return endpoint;
|
|
650
712
|
}
|
|
713
|
+
function createMiddlewareCreator(opts) {
|
|
714
|
+
return (handler) => {
|
|
715
|
+
const res = createMiddleware(
|
|
716
|
+
{
|
|
717
|
+
method: "*",
|
|
718
|
+
use: opts.use
|
|
719
|
+
},
|
|
720
|
+
handler
|
|
721
|
+
);
|
|
722
|
+
return res;
|
|
723
|
+
};
|
|
724
|
+
}
|
|
725
|
+
createMiddleware.creator = createMiddlewareCreator;
|
|
651
726
|
|
|
652
727
|
exports.createEndpoint = createEndpoint;
|
|
653
728
|
exports.createGetHeader = createGetHeader;
|
|
654
|
-
exports.createJSON = createJSON;
|
|
655
729
|
exports.createMiddleware = createMiddleware;
|
|
656
730
|
exports.createRouter = createRouter;
|
|
657
731
|
exports.createSetHeader = createSetHeader;
|
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,28 @@
|
|
|
1
|
-
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.
|
|
2
|
-
export {
|
|
1
|
+
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, I as InferUse, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.7c5f7404.cjs';
|
|
2
|
+
export { j as Context, o as Cookie, p as CookieConstraint, H as HasRequiredKeys, m as InferResponse, g as Input, i as IsEmptyObject, J as JSONResponse, P as Prettify, h as RequiredKeysOf, R as Router, S as SignedCookie, U as UnionToIntersection, e as createEndpoint, l as createGetHeader, f as createRouter, k as createSetHeader, n as fromError, q as parse, s as parseSigned, r as runValidation, t as serialize, u as serializeSigned } from './shared/better-call.7c5f7404.cjs';
|
|
3
3
|
import { BufferSource } from 'stream/web';
|
|
4
4
|
import 'zod';
|
|
5
|
+
import '@asteasolutions/zod-to-openapi/dist/zod-extensions';
|
|
6
|
+
import '@asteasolutions/zod-to-openapi';
|
|
7
|
+
import '@asteasolutions/zod-to-openapi/dist/openapi-registry';
|
|
5
8
|
|
|
6
9
|
type MiddlewareHandler<Options extends EndpointOptions, R extends EndpointResponse> = (context: EndpointContext<any, Options>) => Promise<R>;
|
|
7
10
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
8
11
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: Opts, handler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
12
|
+
declare namespace createMiddleware {
|
|
13
|
+
var creator: typeof createMiddlewareCreator;
|
|
14
|
+
}
|
|
15
|
+
declare function createMiddlewareCreator<E extends {
|
|
16
|
+
use: Endpoint[];
|
|
17
|
+
}>(opts: E): <R extends EndpointResponse>(handler: <InferE extends EndpointContext<any, any>>(ctx: Omit<InferE, "context"> & {
|
|
18
|
+
context: InferUse<E["use"]>;
|
|
19
|
+
}) => Promise<R>) => Endpoint<MiddlewareHandler<{
|
|
20
|
+
method: "*";
|
|
21
|
+
use: Endpoint[];
|
|
22
|
+
}, R>, {
|
|
23
|
+
method: "*";
|
|
24
|
+
use: Endpoint[];
|
|
25
|
+
}>;
|
|
9
26
|
|
|
10
27
|
declare const getCookie: (cookie: string, key: string, prefix?: CookiePrefixOptions) => string | undefined;
|
|
11
28
|
declare const setCookie: (header: Headers, name: string, value: string, opt?: CookieOptions) => void;
|
package/dist/index.d.mts
CHANGED
|
@@ -1,11 +1,28 @@
|
|
|
1
|
-
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.
|
|
2
|
-
export {
|
|
1
|
+
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, I as InferUse, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.7c5f7404.mjs';
|
|
2
|
+
export { j as Context, o as Cookie, p as CookieConstraint, H as HasRequiredKeys, m as InferResponse, g as Input, i as IsEmptyObject, J as JSONResponse, P as Prettify, h as RequiredKeysOf, R as Router, S as SignedCookie, U as UnionToIntersection, e as createEndpoint, l as createGetHeader, f as createRouter, k as createSetHeader, n as fromError, q as parse, s as parseSigned, r as runValidation, t as serialize, u as serializeSigned } from './shared/better-call.7c5f7404.mjs';
|
|
3
3
|
import { BufferSource } from 'stream/web';
|
|
4
4
|
import 'zod';
|
|
5
|
+
import '@asteasolutions/zod-to-openapi/dist/zod-extensions';
|
|
6
|
+
import '@asteasolutions/zod-to-openapi';
|
|
7
|
+
import '@asteasolutions/zod-to-openapi/dist/openapi-registry';
|
|
5
8
|
|
|
6
9
|
type MiddlewareHandler<Options extends EndpointOptions, R extends EndpointResponse> = (context: EndpointContext<any, Options>) => Promise<R>;
|
|
7
10
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
8
11
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: Opts, handler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
12
|
+
declare namespace createMiddleware {
|
|
13
|
+
var creator: typeof createMiddlewareCreator;
|
|
14
|
+
}
|
|
15
|
+
declare function createMiddlewareCreator<E extends {
|
|
16
|
+
use: Endpoint[];
|
|
17
|
+
}>(opts: E): <R extends EndpointResponse>(handler: <InferE extends EndpointContext<any, any>>(ctx: Omit<InferE, "context"> & {
|
|
18
|
+
context: InferUse<E["use"]>;
|
|
19
|
+
}) => Promise<R>) => Endpoint<MiddlewareHandler<{
|
|
20
|
+
method: "*";
|
|
21
|
+
use: Endpoint[];
|
|
22
|
+
}, R>, {
|
|
23
|
+
method: "*";
|
|
24
|
+
use: Endpoint[];
|
|
25
|
+
}>;
|
|
9
26
|
|
|
10
27
|
declare const getCookie: (cookie: string, key: string, prefix?: CookiePrefixOptions) => string | undefined;
|
|
11
28
|
declare const setCookie: (header: Headers, name: string, value: string, opt?: CookieOptions) => void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,28 @@
|
|
|
1
|
-
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.
|
|
2
|
-
export {
|
|
1
|
+
import { E as EndpointOptions, a as EndpointResponse, b as Endpoint, c as EndpointContext, I as InferUse, C as CookiePrefixOptions, d as CookieOptions } from './shared/better-call.7c5f7404.js';
|
|
2
|
+
export { j as Context, o as Cookie, p as CookieConstraint, H as HasRequiredKeys, m as InferResponse, g as Input, i as IsEmptyObject, J as JSONResponse, P as Prettify, h as RequiredKeysOf, R as Router, S as SignedCookie, U as UnionToIntersection, e as createEndpoint, l as createGetHeader, f as createRouter, k as createSetHeader, n as fromError, q as parse, s as parseSigned, r as runValidation, t as serialize, u as serializeSigned } from './shared/better-call.7c5f7404.js';
|
|
3
3
|
import { BufferSource } from 'stream/web';
|
|
4
4
|
import 'zod';
|
|
5
|
+
import '@asteasolutions/zod-to-openapi/dist/zod-extensions';
|
|
6
|
+
import '@asteasolutions/zod-to-openapi';
|
|
7
|
+
import '@asteasolutions/zod-to-openapi/dist/openapi-registry';
|
|
5
8
|
|
|
6
9
|
type MiddlewareHandler<Options extends EndpointOptions, R extends EndpointResponse> = (context: EndpointContext<any, Options>) => Promise<R>;
|
|
7
10
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
8
11
|
declare function createMiddleware<Opts extends EndpointOptions, R extends EndpointResponse>(optionsOrHandler: Opts, handler: MiddlewareHandler<Opts, R>): Endpoint<MiddlewareHandler<Opts, R>, Opts>;
|
|
12
|
+
declare namespace createMiddleware {
|
|
13
|
+
var creator: typeof createMiddlewareCreator;
|
|
14
|
+
}
|
|
15
|
+
declare function createMiddlewareCreator<E extends {
|
|
16
|
+
use: Endpoint[];
|
|
17
|
+
}>(opts: E): <R extends EndpointResponse>(handler: <InferE extends EndpointContext<any, any>>(ctx: Omit<InferE, "context"> & {
|
|
18
|
+
context: InferUse<E["use"]>;
|
|
19
|
+
}) => Promise<R>) => Endpoint<MiddlewareHandler<{
|
|
20
|
+
method: "*";
|
|
21
|
+
use: Endpoint[];
|
|
22
|
+
}, R>, {
|
|
23
|
+
method: "*";
|
|
24
|
+
use: Endpoint[];
|
|
25
|
+
}>;
|
|
9
26
|
|
|
10
27
|
declare const getCookie: (cookie: string, key: string, prefix?: CookiePrefixOptions) => string | undefined;
|
|
11
28
|
declare const setCookie: (header: Headers, name: string, value: string, opt?: CookieOptions) => void;
|
package/dist/index.mjs
CHANGED
|
@@ -1,21 +1,8 @@
|
|
|
1
1
|
import crypto from 'uncrypto';
|
|
2
|
+
import { extendZodWithOpenApi, OpenAPIRegistry } from '@asteasolutions/zod-to-openapi';
|
|
3
|
+
import { z } from 'zod';
|
|
2
4
|
import { createRouter as createRouter$1, addRoute, findRoute, findAllRoutes } from 'rou3';
|
|
3
5
|
|
|
4
|
-
function createJSON({
|
|
5
|
-
asResponse,
|
|
6
|
-
response
|
|
7
|
-
}) {
|
|
8
|
-
return async function json(json, routerResponse) {
|
|
9
|
-
if (!asResponse) {
|
|
10
|
-
return json;
|
|
11
|
-
}
|
|
12
|
-
return {
|
|
13
|
-
body: json,
|
|
14
|
-
routerResponse,
|
|
15
|
-
_flag: "json"
|
|
16
|
-
};
|
|
17
|
-
};
|
|
18
|
-
}
|
|
19
6
|
function runValidation(options, context) {
|
|
20
7
|
let request = {
|
|
21
8
|
body: void 0,
|
|
@@ -326,6 +313,17 @@ const getSignedCookie = async (header, secret, key, prefix) => {
|
|
|
326
313
|
return obj[finalKey];
|
|
327
314
|
};
|
|
328
315
|
|
|
316
|
+
function paramToZod(path) {
|
|
317
|
+
const parts = path.split("/");
|
|
318
|
+
const params = parts.filter((part) => part.startsWith(":"));
|
|
319
|
+
const zod = z.object({});
|
|
320
|
+
for (const param of params) {
|
|
321
|
+
zod.merge(z.object({ [param.slice(1)]: z.string() }));
|
|
322
|
+
}
|
|
323
|
+
return zod;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
extendZodWithOpenApi(z);
|
|
329
327
|
const createResponse = (handlerResponse, response) => {
|
|
330
328
|
if (handlerResponse instanceof Response) {
|
|
331
329
|
response.headers.forEach((value, key) => {
|
|
@@ -378,10 +376,16 @@ const createEndpoint = (path, options, handler) => {
|
|
|
378
376
|
throw new APIError(error.message, 400);
|
|
379
377
|
}
|
|
380
378
|
const context = {
|
|
381
|
-
json:
|
|
382
|
-
asResponse
|
|
383
|
-
|
|
384
|
-
|
|
379
|
+
json: (json, routerResponse) => {
|
|
380
|
+
if (!asResponse) {
|
|
381
|
+
return json;
|
|
382
|
+
}
|
|
383
|
+
return {
|
|
384
|
+
body: json,
|
|
385
|
+
routerResponse,
|
|
386
|
+
_flag: "json"
|
|
387
|
+
};
|
|
388
|
+
},
|
|
385
389
|
body: "body" in data ? data.body : void 0,
|
|
386
390
|
path,
|
|
387
391
|
method: "method" in ctx ? ctx.method : void 0,
|
|
@@ -444,8 +448,66 @@ const createEndpoint = (path, options, handler) => {
|
|
|
444
448
|
};
|
|
445
449
|
internalHandler.path = path;
|
|
446
450
|
internalHandler.options = options;
|
|
451
|
+
const registry = new OpenAPIRegistry();
|
|
452
|
+
registry.registerPath({
|
|
453
|
+
path,
|
|
454
|
+
method: Array.isArray(options.method) ? options.method[0].toLowerCase() : options.method.toLowerCase(),
|
|
455
|
+
request: {
|
|
456
|
+
...options.body ? {
|
|
457
|
+
body: {
|
|
458
|
+
content: {
|
|
459
|
+
"application/json": {
|
|
460
|
+
schema: options.body
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
} : {},
|
|
465
|
+
...options.query ? {
|
|
466
|
+
query: options.query
|
|
467
|
+
} : {},
|
|
468
|
+
params: paramToZod(path)
|
|
469
|
+
},
|
|
470
|
+
responses: {
|
|
471
|
+
200: {
|
|
472
|
+
description: "Successful response",
|
|
473
|
+
content: {
|
|
474
|
+
"application/json": {
|
|
475
|
+
schema: z.record(z.unknown())
|
|
476
|
+
}
|
|
477
|
+
}
|
|
478
|
+
},
|
|
479
|
+
400: {
|
|
480
|
+
description: "Bad request",
|
|
481
|
+
content: {
|
|
482
|
+
"application/json": {
|
|
483
|
+
schema: z.object({
|
|
484
|
+
message: z.string()
|
|
485
|
+
})
|
|
486
|
+
}
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
...options.openAPI?.responses
|
|
490
|
+
}
|
|
491
|
+
});
|
|
492
|
+
internalHandler.openAPI = {
|
|
493
|
+
definitions: registry.definitions
|
|
494
|
+
};
|
|
447
495
|
return internalHandler;
|
|
448
496
|
};
|
|
497
|
+
function createEndpointCreator(opts) {
|
|
498
|
+
return (path, options, handler) => {
|
|
499
|
+
const res = createEndpoint(
|
|
500
|
+
path,
|
|
501
|
+
{
|
|
502
|
+
...options,
|
|
503
|
+
use: [...options?.use || [], ...opts?.use || []]
|
|
504
|
+
},
|
|
505
|
+
handler
|
|
506
|
+
);
|
|
507
|
+
return res;
|
|
508
|
+
};
|
|
509
|
+
}
|
|
510
|
+
createEndpoint.creator = createEndpointCreator;
|
|
449
511
|
|
|
450
512
|
async function getBody(request) {
|
|
451
513
|
const contentType = request.headers.get("content-type") || "";
|
|
@@ -642,5 +704,18 @@ function createMiddleware(optionsOrHandler, handler) {
|
|
|
642
704
|
);
|
|
643
705
|
return endpoint;
|
|
644
706
|
}
|
|
707
|
+
function createMiddlewareCreator(opts) {
|
|
708
|
+
return (handler) => {
|
|
709
|
+
const res = createMiddleware(
|
|
710
|
+
{
|
|
711
|
+
method: "*",
|
|
712
|
+
use: opts.use
|
|
713
|
+
},
|
|
714
|
+
handler
|
|
715
|
+
);
|
|
716
|
+
return res;
|
|
717
|
+
};
|
|
718
|
+
}
|
|
719
|
+
createMiddleware.creator = createMiddlewareCreator;
|
|
645
720
|
|
|
646
|
-
export { createEndpoint, createGetHeader,
|
|
721
|
+
export { createEndpoint, createGetHeader, createMiddleware, createRouter, createSetHeader, fromError, getCookie, getSignedCookie, parse, parseSigned, runValidation, serialize, serializeSigned, setCookie, setSignedCookie };
|