Skip to content

Commit 9d84fe9

Browse files
committed
fix: 🐛 Fixed users list output type in the sdk-db package
1 parent 4bb3274 commit 9d84fe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/db/src/users.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export type SafeUserType = z.infer<typeof SafeUserSchema>;
5656
* Type definition for sanitized Users records list,
5757
* inferred from UsersListOutputSchema.
5858
*/
59-
export type UsersListOutputSchema = z.infer<typeof UsersListOutputSchema>;
59+
export type UsersListOutputSchemaType = z.infer<typeof UsersListOutputSchema>;
6060

6161
/**
6262
* Interface defining the properties of UsersDb initialization options.

0 commit comments

Comments
 (0)