fix: commit vendored @kuns/zitadel-auth dist (was excluded by dist/ gitignore)

This commit is contained in:
2026-06-10 08:22:38 +00:00
parent 7331fe75e8
commit ab2f9affd1
24 changed files with 1707 additions and 1 deletions

16
vendor/zitadel-auth/dist/vue.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
import { Ref } from 'vue';
import { Router } from 'vue-router';
import { Z as ZitadelAuthConfig, a as ZitadelUser } from './types-C5b7Bv-t.js';
interface ZitadelAuthReturn {
isAuthenticated: Ref<boolean>;
isLoading: Ref<boolean>;
user: Ref<ZitadelUser | null>;
error: Ref<string | null>;
login: () => void;
logout: () => Promise<void>;
fetch: (url: string, init?: RequestInit) => Promise<Response>;
}
declare function useZitadelAuth(router: Router, config: ZitadelAuthConfig): ZitadelAuthReturn;
export { useZitadelAuth };