Skip to main content
PayloadWithoutInternallySetKeys = DisallowKeys<Record<string, any>, InternallySetPayloadKeys>
Defined in: app-sdk/src/jwt/types.ts:37 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.
I