Type Alias PayloadWithoutInternallySetKeys

PayloadWithoutInternallySetKeys: DisallowKeys<
    Record<string, any>,
    InternallySetPayloadKeys,
>

Many standard payload properties are set automatically on Vincent JWTs, and will be overridden if you try to pass them in the raw payload when creating a new JWT.

This interface identifies the keys that should not be provided in your payload, as they are internally managed.

See InternallySetPayloadKeys for the list.