From b4fe4d6f841500e4a81df964af294aa49458ab3a Mon Sep 17 00:00:00 2001 From: Alan Bridgeman Date: Sat, 24 Jan 2026 10:09:54 -0600 Subject: [PATCH] Forgot to make webhooks optional for registration --- src/oauth/types/BridgemanAccessibleAppClaims.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oauth/types/BridgemanAccessibleAppClaims.ts b/src/oauth/types/BridgemanAccessibleAppClaims.ts index 27c3deb..d04ad5c 100644 --- a/src/oauth/types/BridgemanAccessibleAppClaims.ts +++ b/src/oauth/types/BridgemanAccessibleAppClaims.ts @@ -30,7 +30,7 @@ export interface BridgemanAccessibleAppClaims extends ClientCustomClaims { client_abbreviation: string; /** The webhooks registered for this app */ - webhooks: Webhook[]; + webhooks?: Webhook[]; /** Whether a paid subscription is mandatory to use the app */ subscription_required: boolean;