Type Alias: MemberJwtPayload
MemberJwtPayload =
object
Defined in: types.ts:669
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:671 |
audience_member | Omit<AudienceMember, "meta"> | - | types.ts:686 |
authenticated | boolean | Whether the session has been fully authenticated (not just identified). | types.ts:679 |
exp | number | Expiry timestamp (Unix seconds). | types.ts:675 |
iat | number | Issued-at timestamp (Unix seconds). | types.ts:673 |
iss | string | - | types.ts:670 |
products | string[] | Slugs of products the user has an active entitlement to. | types.ts:685 |
session | object | - | types.ts:680 |
session.authenticated_at | string | null | - | types.ts:682 |
session.id | string | - | types.ts:681 |
sub | string | Audience Member ID. | types.ts:677 |