elysia 0.8.13 → 0.8.15
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/dist/bun/{index-kJIc86qB.d.ts → index-3yRrZCrW.d.ts} +2 -2
- package/dist/bun/index.d.ts +1 -1
- package/dist/bun/index.js +98 -98
- package/dist/bun/index.js.map +7 -7
- package/dist/cjs/compose.d.ts +1 -1
- package/dist/cjs/context.d.ts +1 -1
- package/dist/cjs/cookie.d.ts +1 -1
- package/dist/cjs/dynamic-handle.d.ts +1 -1
- package/dist/cjs/dynamic-handle.js +2 -2
- package/dist/cjs/error.d.ts +1 -1
- package/dist/cjs/handler.d.ts +1 -1
- package/dist/cjs/{index-kJIc86qB.d.ts → index-3yRrZCrW.d.ts} +2 -2
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +19 -20
- package/dist/cjs/trace.d.ts +1 -1
- package/dist/cjs/type-system.d.ts +1 -1
- package/dist/cjs/types.d.ts +1 -1
- package/dist/cjs/utils.d.ts +1 -1
- package/dist/cjs/ws/index.d.ts +1 -1
- package/dist/cjs/ws/types.d.ts +1 -1
- package/dist/compose.d.ts +1 -1
- package/dist/context.d.ts +1 -1
- package/dist/cookie.d.ts +1 -1
- package/dist/dynamic-handle.d.ts +1 -1
- package/dist/dynamic-handle.mjs +2 -2
- package/dist/error.d.ts +1 -1
- package/dist/handler.d.ts +1 -1
- package/dist/{index-kJIc86qB.d.ts → index-3yRrZCrW.d.ts} +2 -2
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +19 -20
- package/dist/trace.d.ts +1 -1
- package/dist/type-system.d.ts +1 -1
- package/dist/types.d.ts +1 -1
- package/dist/utils.d.ts +1 -1
- package/dist/ws/index.d.ts +1 -1
- package/dist/ws/types.d.ts +1 -1
- package/package.json +31 -17
|
@@ -128,8 +128,8 @@ declare class Cookie<T = unknown> implements CookieOptions {
|
|
|
128
128
|
set path(value: string | undefined);
|
|
129
129
|
get priority(): "low" | "medium" | "high" | undefined;
|
|
130
130
|
set priority(value: "low" | "medium" | "high" | undefined);
|
|
131
|
-
get sameSite(): boolean | "
|
|
132
|
-
set sameSite(value: boolean | "
|
|
131
|
+
get sameSite(): boolean | "none" | "lax" | "strict" | undefined;
|
|
132
|
+
set sameSite(value: boolean | "none" | "lax" | "strict" | undefined);
|
|
133
133
|
get secure(): boolean | undefined;
|
|
134
134
|
set secure(value: boolean | undefined);
|
|
135
135
|
toString(): string;
|
package/dist/bun/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import 'bun';
|
|
2
2
|
export { Static, TSchema } from '@sinclair/typebox';
|
|
3
|
-
export { J as AfterHandler, _ as BodyHandler, a9 as Checksum, c as ComposedHandler, C as Context, g as Cookie, f as CookieOptions, D as DecoratorBase, s as DefinitionBase, E as Elysia, b as ElysiaConfig, a0 as ErrorHandler, z as HTTPMethod, H as Handler, A as InputSchema, a3 as InternalRoute, I as InternalServerError, n as InvalidCookieSignature, x as LifeCycleEvent, L as LifeCycleStore, a4 as ListenCallback, a2 as LocalHook, q as MaybePromise, B as MergeSchema, N as NotFoundError, F as OptionalHandler, m as ParseError, aw as PreContext, P as PreHandler, t as RouteBase, u as RouteSchema, S as SchemaValidator, X as TraceEvent, d as TraceHandler, Y as TraceProcess, T as TraceReporter, e as TraceStream, v as UnwrapRoute, U as UnwrapSchema, V as ValidationError, Q as VoidHandler, E as default, l as error, ak as getResponseSchemaValidator, aj as getSchemaValidator, aJ as mapCompactResponse, aI as mapEarlyResponse, aH as mapResponse, ae as mergeDeep, ai as mergeHook, ag as mergeObjectArray, aA as t } from './index-
|
|
3
|
+
export { J as AfterHandler, _ as BodyHandler, a9 as Checksum, c as ComposedHandler, C as Context, g as Cookie, f as CookieOptions, D as DecoratorBase, s as DefinitionBase, E as Elysia, b as ElysiaConfig, a0 as ErrorHandler, z as HTTPMethod, H as Handler, A as InputSchema, a3 as InternalRoute, I as InternalServerError, n as InvalidCookieSignature, x as LifeCycleEvent, L as LifeCycleStore, a4 as ListenCallback, a2 as LocalHook, q as MaybePromise, B as MergeSchema, N as NotFoundError, F as OptionalHandler, m as ParseError, aw as PreContext, P as PreHandler, t as RouteBase, u as RouteSchema, S as SchemaValidator, X as TraceEvent, d as TraceHandler, Y as TraceProcess, T as TraceReporter, e as TraceStream, v as UnwrapRoute, U as UnwrapSchema, V as ValidationError, Q as VoidHandler, E as default, l as error, ak as getResponseSchemaValidator, aj as getSchemaValidator, aJ as mapCompactResponse, aI as mapEarlyResponse, aH as mapResponse, ae as mergeDeep, ai as mergeHook, ag as mergeObjectArray, aA as t } from './index-3yRrZCrW.js';
|
|
4
4
|
import '@sinclair/typebox/compiler';
|
|
5
5
|
import '@sinclair/typebox/system';
|
|
6
6
|
import 'openapi-types';
|