authhero 4.103.0 → 4.103.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46752,6 +46752,7 @@ export declare const refreshTokenSchema: z.ZodObject<{
46752
46752
  }>, "many">;
46753
46753
  rotating: z.ZodBoolean;
46754
46754
  created_at: z.ZodString;
46755
+ revoked_at: z.ZodOptional<z.ZodString>;
46755
46756
  }, "strip", z.ZodTypeAny, {
46756
46757
  created_at: string;
46757
46758
  id: string;
@@ -46772,6 +46773,7 @@ export declare const refreshTokenSchema: z.ZodObject<{
46772
46773
  }[];
46773
46774
  rotating: boolean;
46774
46775
  expires_at?: string | undefined;
46776
+ revoked_at?: string | undefined;
46775
46777
  idle_expires_at?: string | undefined;
46776
46778
  last_exchanged_at?: string | undefined;
46777
46779
  }, {
@@ -46794,6 +46796,7 @@ export declare const refreshTokenSchema: z.ZodObject<{
46794
46796
  }[];
46795
46797
  rotating: boolean;
46796
46798
  expires_at?: string | undefined;
46799
+ revoked_at?: string | undefined;
46797
46800
  idle_expires_at?: string | undefined;
46798
46801
  last_exchanged_at?: string | undefined;
46799
46802
  }>;
@@ -49004,6 +49007,7 @@ export interface RefreshTokensAdapter {
49004
49007
  list(tenant_id: string, params?: ListParams): Promise<ListRefreshTokenResponse>;
49005
49008
  update: (tenant_id: string, id: string, refresh_token: Partial<RefreshToken>) => Promise<boolean>;
49006
49009
  remove: (tenant_id: string, id: string) => Promise<boolean>;
49010
+ revokeByLoginSession: (tenant_id: string, login_session_id: string, revoked_at: string) => Promise<number>;
49007
49011
  }
49008
49012
  export interface ListFormsResponse extends Totals {
49009
49013
  forms: Form[];