We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fb2d0b commit 859efe2Copy full SHA for 859efe2
1 file changed
sentry_sdk/_types.py
@@ -310,7 +310,7 @@ class SDKInfo(TypedDict):
310
"timestamp": Optional[datetime],
311
"origin": str,
312
"tags": NotRequired[dict[str, str]],
313
- "data": dict[str, Any],
+ "data": NotRequired[dict[str, Any]],
314
"name": str,
315
"source": TransactionSource,
316
"sampled": Optional[bool],
@@ -333,6 +333,7 @@ class SDKInfo(TypedDict):
333
"aws_event": NotRequired[Any],
334
"aws_context": NotRequired[Any],
335
"gcp_env": NotRequired[dict[str, Any]],
336
+ "gcp_event": NotRequired[Any],
337
},
338
)
339
SamplingContext = Union[_SamplingContextTyped, dict[str, Any]]
0 commit comments