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 b3aaa50 commit 9362edcCopy full SHA for 9362edc
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,
@@ -711,7 +712,7 @@ export class UserManagement {
711
712
async listSessions(
713
userId: string,
714
options?: ListSessionsOptions,
- ): Promise<AutoPaginatable<Session>> {
715
+ ): Promise<AutoPaginatable<Session, SerializedListSessionsOptions>> {
716
return new AutoPaginatable(
717
await fetchAndDeserialize<SessionResponse, Session>(
718
this.workos,
0 commit comments