We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18bad96 commit da33599Copy full SHA for da33599
src/user-management/user-management.ts
@@ -42,6 +42,7 @@ import {
42
SerializedCreateMagicAuthOptions,
43
SerializedCreatePasswordResetOptions,
44
SerializedCreateUserOptions,
45
+ SerializedListSessionsOptions,
46
SerializedListUsersOptions,
47
SerializedResetPasswordOptions,
48
SerializedVerifyEmailOptions,
@@ -709,7 +710,7 @@ export class UserManagement {
709
710
async listSessions(
711
userId: string,
712
options?: ListSessionsOptions,
- ): Promise<AutoPaginatable<Session>> {
713
+ ): Promise<AutoPaginatable<Session, SerializedListSessionsOptions>> {
714
return new AutoPaginatable(
715
await fetchAndDeserialize<SessionResponse, Session>(
716
this.workos,
0 commit comments