diff --git a/bun.lockb b/bun.lockb index 0f9b89e..f9c30e8 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 63dc068..ee4b045 100644 --- a/package.json +++ b/package.json @@ -26,22 +26,22 @@ "base64-js": "^1.5.1", "json-stable-stringify": "^1.1.1", "jtd-ts": "^0.1.0", - "uuid": "^9.0.1" + "uuid": "^10.0.0" }, "devDependencies": { - "@eslint/js": "^9.0.0", - "@types/bun": "^1.1.0", + "@eslint/js": "^9.11.0", + "@types/bun": "^1.1.10", "@types/json-stable-stringify": "^1.0.36", - "@types/uuid": "^9.0.8", - "@typescript-eslint/eslint-plugin": "^7.6.0", - "eslint": "^9.0.0", + "@types/uuid": "^10.0.0", + "@typescript-eslint/eslint-plugin": "^8.6.0", + "eslint": "^9.11.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-spellcheck": "^0.0.20", - "eslint-plugin-tsdoc": "^0.2.17", - "prettier": "^3.2.5", - "prettier-plugin-organize-imports": "^3.2.4", - "typedoc": "^0.25.13", - "typescript": "^5.4.5", - "typescript-eslint": "^7.6.0" + "eslint-plugin-tsdoc": "^0.3.0", + "prettier": "^3.3.3", + "prettier-plugin-organize-imports": "^4.1.0", + "typedoc": "^0.26.7", + "typescript": "^5.6.2", + "typescript-eslint": "^8.6.0" } } diff --git a/src/index.ts b/src/index.ts index fe163d8..5f31910 100644 --- a/src/index.ts +++ b/src/index.ts @@ -244,7 +244,7 @@ export interface ResponseLike { /** stripped down version of fetch */ export interface FetchLike { /** the rough interface to fetch */ - (url: string, options?: RequestInitLike | undefined): Promise; + (url: string, options?: RequestInitLike): Promise; } /** an error that results from a failed request */ diff --git a/src/test-utils.ts b/src/test-utils.ts index d02f8a6..3b1bebb 100644 --- a/src/test-utils.ts +++ b/src/test-utils.ts @@ -50,7 +50,7 @@ export function createMockFetch( const mockFetch = async ( url: string, - options?: RequestInitLike | undefined, + options?: RequestInitLike, ): Promise => { pastRequests.push({ url,