We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
slug
sms.created
1 parent c9ef591 commit fece720Copy full SHA for fece720
.changeset/fair-worms-joke.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clerk/backend": patch
3
4
+
5
+Add missing `slug` property in TS type declaration for SMS webhook events
packages/backend/src/api/resources/JSON.ts
@@ -272,6 +272,7 @@ export interface SMSMessageJSON extends ClerkResourceJSON {
272
user_id?: string;
273
message: string;
274
status: string;
275
+ slug?: string | null;
276
data?: Record<string, any> | null;
277
delivered_by_clerk: boolean;
278
}
0 commit comments