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 70205bc commit a34d432Copy full SHA for a34d432
src/user-management/user-management.ts
@@ -48,6 +48,7 @@ import {
48
SerializedCreateMagicAuthOptions,
49
SerializedCreatePasswordResetOptions,
50
SerializedCreateUserOptions,
51
+ SerializedListSessionsOptions,
52
SerializedListUsersOptions,
53
SerializedResetPasswordOptions,
54
SerializedVerifyEmailOptions,
@@ -742,7 +743,7 @@ export class UserManagement {
742
743
async listSessions(
744
userId: string,
745
options?: ListSessionsOptions,
- ): Promise<AutoPaginatable<Session>> {
746
+ ): Promise<AutoPaginatable<Session, SerializedListSessionsOptions>> {
747
return new AutoPaginatable(
748
await fetchAndDeserialize<SessionResponse, Session>(
749
this.workos,
0 commit comments