@bagelink/auth 1.4.5 → 1.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +2 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -140,4 +140,5 @@ declare function useAuth(): {
|
|
|
140
140
|
deleteUser: (userId: string) => Promise<void>;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
export { AuthApi,
|
|
143
|
+
export { AuthApi, initAuth, useAuth };
|
|
144
|
+
export type { CreateUserResponse, DeleteUserResponse, GetMeResponse, GetUserResponse, GetUsersResponse, LoginResponse, NewPassword, NewUser, PasswordRecovery, PasswordRecoveryResponse, ResetPasswordResponse, SanitizedUserList, SanitizedUserOut, SignupResponse, Token, UpdateMeResponse, UpdatePassword, UpdatePasswordForm, UpdatePasswordResponse, UpdateUserResponse, User, UserCreate, UserRegister, UserUpdate, UserUpdateMe };
|
package/dist/index.d.mts
CHANGED
|
@@ -140,4 +140,5 @@ declare function useAuth(): {
|
|
|
140
140
|
deleteUser: (userId: string) => Promise<void>;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
export { AuthApi,
|
|
143
|
+
export { AuthApi, initAuth, useAuth };
|
|
144
|
+
export type { CreateUserResponse, DeleteUserResponse, GetMeResponse, GetUserResponse, GetUsersResponse, LoginResponse, NewPassword, NewUser, PasswordRecovery, PasswordRecoveryResponse, ResetPasswordResponse, SanitizedUserList, SanitizedUserOut, SignupResponse, Token, UpdateMeResponse, UpdatePassword, UpdatePasswordForm, UpdatePasswordResponse, UpdateUserResponse, User, UserCreate, UserRegister, UserUpdate, UserUpdateMe };
|
package/dist/index.d.ts
CHANGED
|
@@ -140,4 +140,5 @@ declare function useAuth(): {
|
|
|
140
140
|
deleteUser: (userId: string) => Promise<void>;
|
|
141
141
|
};
|
|
142
142
|
|
|
143
|
-
export { AuthApi,
|
|
143
|
+
export { AuthApi, initAuth, useAuth };
|
|
144
|
+
export type { CreateUserResponse, DeleteUserResponse, GetMeResponse, GetUserResponse, GetUsersResponse, LoginResponse, NewPassword, NewUser, PasswordRecovery, PasswordRecoveryResponse, ResetPasswordResponse, SanitizedUserList, SanitizedUserOut, SignupResponse, Token, UpdateMeResponse, UpdatePassword, UpdatePasswordForm, UpdatePasswordResponse, UpdateUserResponse, User, UserCreate, UserRegister, UserUpdate, UserUpdateMe };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bagelink/auth",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.10",
|
|
5
5
|
"description": "Bagelink auth package",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Bagel Studio",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"unbuild": "^3.5.0",
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
46
46
|
"@typescript-eslint/parser": "^8.32.1",
|
|
47
|
-
"eslint": "^9.
|
|
47
|
+
"eslint": "^9.27.0",
|
|
48
48
|
"rimraf": "^6.0.1",
|
|
49
|
-
"tsup": "^8.
|
|
49
|
+
"tsup": "^8.5.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"vue": "^3.0.0"
|