Type Alias: MemberJwtPayload
MemberJwtPayload =
object
Defined in: types.ts:545
Decoded payload of the Allegro session JWT.
Read via MemberNamespace.sessionFromJwt — no network request required.
Indexable
[
key:string]:unknown
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
aud | string | - | types.ts:547 |
audience_member | Omit<AudienceMember, "meta"> | - | types.ts:560 |
authenticated | boolean | Whether the session has been fully authenticated (not just identified). | types.ts:555 |
exp | number | Expiry timestamp (Unix seconds). | types.ts:551 |
iat | number | Issued-at timestamp (Unix seconds). | types.ts:549 |
iss | string | - | types.ts:546 |
session | object | - | types.ts:556 |
session.authenticated_at | string | null | - | types.ts:558 |
session.id | string | - | types.ts:557 |
sub | string | Audience Member ID. | types.ts:553 |