Skip to content

Commit e9d5140

Browse files
committed
feat: make auth_id nullable to sync it with the Node implementation
1 parent 0361e85 commit e9d5140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firebase_functions/firestore_fn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Event(_core.CloudEvent[_core.T]):
9595
class AuthEvent(Event[_core.T]):
9696
auth_type: AuthType
9797
"""The type of principal that triggered the event"""
98-
auth_id: str
98+
auth_id: str | None
9999
"""The unique identifier for the principal"""
100100

101101

0 commit comments

Comments
 (0)