@kuckit/app-web 3.0.2 → 3.0.4
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.ts +18 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -746,6 +746,24 @@ declare function useAuth(): {
|
|
|
746
746
|
readonly FAILED_TO_UNLINK_LAST_ACCOUNT: "You can't unlink your last account";
|
|
747
747
|
readonly ACCOUNT_NOT_FOUND: "Account not found";
|
|
748
748
|
readonly USER_ALREADY_HAS_PASSWORD: "User already has a password. Provide that to delete the account.";
|
|
749
|
+
readonly CROSS_SITE_NAVIGATION_LOGIN_BLOCKED: "Cross-site navigation login blocked. This request appears to be a CSRF attack.";
|
|
750
|
+
readonly VERIFICATION_EMAIL_NOT_ENABLED: "Verification email isn't enabled";
|
|
751
|
+
readonly EMAIL_ALREADY_VERIFIED: "Email is already verified";
|
|
752
|
+
readonly EMAIL_MISMATCH: "Email mismatch";
|
|
753
|
+
readonly SESSION_NOT_FRESH: "Session is not fresh";
|
|
754
|
+
readonly LINKED_ACCOUNT_ALREADY_EXISTS: "Linked account already exists";
|
|
755
|
+
readonly INVALID_ORIGIN: "Invalid origin";
|
|
756
|
+
readonly INVALID_CALLBACK_URL: "Invalid callbackURL";
|
|
757
|
+
readonly INVALID_REDIRECT_URL: "Invalid redirectURL";
|
|
758
|
+
readonly INVALID_ERROR_CALLBACK_URL: "Invalid errorCallbackURL";
|
|
759
|
+
readonly INVALID_NEW_USER_CALLBACK_URL: "Invalid newUserCallbackURL";
|
|
760
|
+
readonly MISSING_OR_NULL_ORIGIN: "Missing or null Origin";
|
|
761
|
+
readonly CALLBACK_URL_REQUIRED: "callbackURL is required";
|
|
762
|
+
readonly FAILED_TO_CREATE_VERIFICATION: "Unable to create verification";
|
|
763
|
+
readonly FIELD_NOT_ALLOWED: "Field not allowed to be set";
|
|
764
|
+
readonly ASYNC_VALIDATION_NOT_SUPPORTED: "Async validation is not supported";
|
|
765
|
+
readonly VALIDATION_ERROR: "Validation Error";
|
|
766
|
+
readonly MISSING_FIELD: "Field is required";
|
|
749
767
|
};
|
|
750
768
|
};
|
|
751
769
|
declare function useQueryClient(): _tanstack_react_query0.QueryClient;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kuckit/app-web",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"prepublishOnly": "npm run build && node ../../scripts/resolve-workspace-protocols.cjs && node ../../scripts/check-no-workspace-protocol.cjs"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@kuckit/sdk-react": "^3.0.
|
|
27
|
-
"@kuckit/api": "^3.0.
|
|
28
|
-
"@kuckit/auth": "^3.0.
|
|
26
|
+
"@kuckit/sdk-react": "^3.0.4",
|
|
27
|
+
"@kuckit/api": "^3.0.4",
|
|
28
|
+
"@kuckit/auth": "^3.0.4",
|
|
29
29
|
"@tanstack/react-query": "^5.85.5",
|
|
30
30
|
"@tanstack/react-router": "^1.114.25",
|
|
31
31
|
"@orpc/client": "^1.10.0",
|