two-stroke 5.8.0 → 5.8.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/package.json CHANGED
@@ -52,7 +52,7 @@
52
52
  "name": "two-stroke",
53
53
  "packageManager": "yarn@4.6.0",
54
54
  "type": "module",
55
- "version": "5.8.0",
55
+ "version": "5.8.1",
56
56
  "devDependencies": {
57
57
  "@types/eslint": "^9.6.1",
58
58
  "eslint": "^9.33.0",
package/src/index.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { verify as jwkVerify } from "jwk-subtle";
2
2
  import { verify as pbkdfVerify } from "pbkdf-subtle";
3
3
  import { Toucan } from "toucan-js";
4
- import { ZodSafeParseResult, ZodObject, z, ZodType } from "zod/v4";
4
+ import { type ZodSafeParseResult, ZodObject, z, ZodType } from "zod/v4";
5
5
  import { openAPI } from "./open-api";
6
- import { Env, Handler, Route } from "./types";
6
+ import { type Env, type Handler, type Route } from "./types";
7
7
 
8
8
  // eslint-disable-next-line @typescript-eslint/require-await
9
9
  const noAuth = async () => null;
package/src/open-api.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { z, ZodType } from "zod/v4";
2
- import { Env, Route } from "./types";
2
+ import { type Env, type Route } from "./types";
3
3
 
4
4
  export const openAPI =
5
5
  <T extends Env, A>(
package/src/test.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { JWTPayload, SignJWT, exportJWK, generateKeyPair } from "jose";
1
+ import { type JWTPayload, SignJWT, exportJWK, generateKeyPair } from "jose";
2
2
  import { fetchMock, SELF, env } from "cloudflare:test";
3
3
  import createClient from "openapi-fetch";
4
4