Skip to content

Commit

Permalink
fix: inconsistency in types
Browse files Browse the repository at this point in the history
Signed-off-by: Dakshesh Jain <dakshesh.jain14@gmail.com>
  • Loading branch information
dakshesh14 committed Jan 18, 2025
1 parent cbaaf07 commit 3af8693
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions plugins/login/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ export default plugin(loginId, {
EmailMask: '' as IntlString,
NoLimit: '' as IntlString,
InviteLimit: '' as IntlString,
PasswordMinLength: '' as IntlString<{ min: string }>,
PasswordMinSpecialChars: '' as IntlString<{ min: string }>,
PasswordMinDigits: '' as IntlString<{ min: string }>,
PasswordMinUpperChars: '' as IntlString<{ min: string }>,
PasswordMinLowerChars: '' as IntlString<{ min: string }>
PasswordMinLength: '' as IntlString<{ count: number }>,
PasswordMinSpecialChars: '' as IntlString<{ count: number }>,
PasswordMinDigits: '' as IntlString<{ count: number }>,
PasswordMinUpperChars: '' as IntlString<{ count: number }>,
PasswordMinLowerChars: '' as IntlString<{ count: number }>
},
function: {
SendInvite: '' as Resource<(email: string, personId?: Ref<Doc>, role?: AccountRole) => Promise<void>>,
Expand Down

0 comments on commit 3af8693

Please sign in to comment.