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 70ce5b5 commit e9ed206Copy full SHA for e9ed206
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,
@@ -740,7 +741,7 @@ export class UserManagement {
740
741
async listSessions(
742
userId: string,
743
options?: ListSessionsOptions,
- ): Promise<AutoPaginatable<Session>> {
744
+ ): Promise<AutoPaginatable<Session, SerializedListSessionsOptions>> {
745
return new AutoPaginatable(
746
await fetchAndDeserialize<SessionResponse, Session>(
747
this.workos,
0 commit comments