( payload: IDecrementPayload, context: TrackContext )
| 326 | } |
| 327 | |
| 328 | async function handleDecrement( |
| 329 | payload: IDecrementPayload, |
| 330 | context: TrackContext |
| 331 | ): Promise<void> { |
| 332 | await adjustProfileProperty(payload, context.projectId, -1); |
| 333 | } |
| 334 | |
| 335 | // Replay only needs the server-issued session id (the SDK echoes it back). Trust |
| 336 | // it — scoped to the authed project, unguessable, same trust level as event data. |
no test coverage detected