We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e4675d commit 255e45aCopy full SHA for 255e45a
packages/core/src/bridge.ts
@@ -57,7 +57,7 @@ export interface Bridge {
57
context: JsonMap
58
): Promise<void>
59
identify(
60
- user: string,
+ user: string | null,
61
traits: JsonMap | null,
62
options: Options,
63
integrations: Integrations,
packages/core/src/middleware.ts
@@ -35,7 +35,7 @@ export interface IdentifyPayload
35
extends MiddlewarePayload<
36
'identify',
37
{
38
- user: string
+ user: string | null
39
traits: JsonMap | null
40
options: JsonMap
41
integrations: Integrations
0 commit comments