From c8fbff60c305f2e2641bcc9266927071e236103b Mon Sep 17 00:00:00 2001 From: Revolt CI Date: Sat, 10 May 2025 16:02:14 +0000 Subject: [PATCH] chore: build library from latest spec [skip ci] --- src/schema.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/schema.ts b/src/schema.ts index 487454a..e42a5fb 100644 --- a/src/schema.ts +++ b/src/schema.ts @@ -2541,6 +2541,10 @@ export interface components { token: string; /** @description Display name */ name: string; + /** @description When the session was last logged in (iso8601 timestamp) */ + last_seen: string; + /** @description What is the session origin? This could be used to differentiate sessions that come from staging/test vs prod, etc. Authifier will set this to None by default. The application must fill it in. */ + origin?: string | null; /** @description Web Push subscription */ subscription?: components["schemas"]["WebPushSubscription"] | null; }