From b250cddd012d4107faab97b58b94c0a3161fc51b Mon Sep 17 00:00:00 2001 From: Ahmed8881 Date: Fri, 28 Aug 2026 13:10:30 +0500 Subject: [PATCH] Make urlBase protected to support makeFetchRequest overrides makeFetchRequest is protected specifically so subclasses can override the HTTP transport, but urlBase was private, so an override had no way to read the configured base URL and had to hardcode/duplicate the production/sandbox/local-testing hosts itself. Fixes #424 (urlBase visibility part; the request timeout part of that issue was already addressed in #425). --- index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ts b/index.ts index 67ba4c1..70203e8 100644 --- a/index.ts +++ b/index.ts @@ -202,7 +202,7 @@ export class AppStoreServerAPIClient { private keyId: string private signingKey: string private bundleId: string - private urlBase: string + protected urlBase: string /** * Create an App Store Server API client