Deployed the page to Github Pages.

This commit is contained in:
Batuhan Berk Başoğlu 2024-11-03 21:30:09 -05:00
parent 1d79754e93
commit 2c89899458
Signed by: batuhan-basoglu
SSH key fingerprint: SHA256:kEsnuHX+qbwhxSAXPUQ4ox535wFHu/hIRaa53FzxRpo
62797 changed files with 6551425 additions and 15279 deletions

View file

@ -0,0 +1,5 @@
/**
* Generated bundle index. Do not edit.
*/
/// <amd-module name="@angular/fire/compat/auth" />
export * from './public_api';

49
node_modules/@angular/fire/compat/auth/auth.d.ts generated vendored Normal file
View file

@ -0,0 +1,49 @@
import { NgZone, InjectionToken } from '@angular/core';
import { Observable } from 'rxjs';
import { ɵAngularFireSchedulers } from '@angular/fire';
import { ɵPromiseProxy } from '@angular/fire/compat';
import { FirebaseApp } from '@angular/fire/compat';
import { FirebaseOptions } from 'firebase/app';
import firebase from 'firebase/compat/app';
import { AppCheckInstances } from '@angular/fire/app-check';
import * as i0 from "@angular/core";
export interface AngularFireAuth extends ɵPromiseProxy<firebase.auth.Auth> {
}
declare type UseEmulatorArguments = Parameters<firebase.auth.Auth['useEmulator']>;
export declare const USE_EMULATOR: InjectionToken<[url: string]>;
export declare const SETTINGS: InjectionToken<firebase.auth.AuthSettings>;
export declare const TENANT_ID: InjectionToken<string>;
export declare const LANGUAGE_CODE: InjectionToken<string>;
export declare const USE_DEVICE_LANGUAGE: InjectionToken<boolean>;
export declare const PERSISTENCE: InjectionToken<string>;
export declare const ɵauthFactory: (app: FirebaseApp, zone: NgZone, useEmulator: UseEmulatorArguments | null, tenantId: string, languageCode: string | null, useDeviceLanguage: boolean | null, settings: firebase.auth.AuthSettings | null, persistence: string | null) => firebase.auth.Auth;
export declare class AngularFireAuth {
/**
* Observable of authentication state; as of Firebase 4.0 this is only triggered via sign-in/out
*/
readonly authState: Observable<firebase.User | null>;
/**
* Observable of the currently signed-in user's JWT token used to identify the user to a Firebase service (or null).
*/
readonly idToken: Observable<string | null>;
/**
* Observable of the currently signed-in user (or null).
*/
readonly user: Observable<firebase.User | null>;
/**
* Observable of the currently signed-in user's IdTokenResult object which contains the ID token JWT string and other
* helper properties for getting different data associated with the token as well as all the decoded payload claims
* (or null).
*/
readonly idTokenResult: Observable<firebase.auth.IdTokenResult | null>;
/**
* Observable of the currently signed-in user's credential, or null
*/
readonly credential: Observable<Required<firebase.auth.UserCredential> | null>;
constructor(options: FirebaseOptions, name: string | null | undefined, platformId: Object, zone: NgZone, schedulers: ɵAngularFireSchedulers, useEmulator: any, // can't use the tuple here
settings: any, // can't use firebase.auth.AuthSettings here
tenantId: string | null, languageCode: string | null, useDeviceLanguage: boolean | null, persistence: string | null, _appCheckInstances: AppCheckInstances);
static ɵfac: i0.ɵɵFactoryDeclaration<AngularFireAuth, [null, { optional: true; }, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<AngularFireAuth>;
}
export {};

View file

@ -0,0 +1,7 @@
import * as i0 from "@angular/core";
export declare class AngularFireAuthModule {
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<AngularFireAuthModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<AngularFireAuthModule, never, never, never>;
static ɵinj: i0.ɵɵInjectorDeclaration<AngularFireAuthModule>;
}

36
node_modules/@angular/fire/compat/auth/base.d.ts generated vendored Normal file
View file

@ -0,0 +1,36 @@
export declare const proxyPolyfillCompat: {
name: any;
config: any;
emulatorConfig: any;
app: any;
applyActionCode: any;
checkActionCode: any;
confirmPasswordReset: any;
createUserWithEmailAndPassword: any;
currentUser: any;
fetchSignInMethodsForEmail: any;
isSignInWithEmailLink: any;
getRedirectResult: any;
languageCode: any;
settings: any;
onAuthStateChanged: any;
onIdTokenChanged: any;
sendSignInLinkToEmail: any;
sendPasswordResetEmail: any;
setPersistence: any;
signInAndRetrieveDataWithCredential: any;
signInAnonymously: any;
signInWithCredential: any;
signInWithCustomToken: any;
signInWithEmailAndPassword: any;
signInWithPhoneNumber: any;
signInWithEmailLink: any;
signInWithPopup: any;
signInWithRedirect: any;
signOut: any;
tenantId: any;
updateCurrentUser: any;
useDeviceLanguage: any;
useEmulator: any;
verifyPasswordResetCode: any;
};

11
node_modules/@angular/fire/compat/auth/package.json generated vendored Normal file
View file

@ -0,0 +1,11 @@
{
"$schema": "../../../node_modules/ng-packagr/package.schema.json",
"main": "../../bundles/angular-fire-compat-auth.umd.js",
"module": "../../fesm2015/angular-fire-compat-auth.js",
"es2015": "../../fesm2015/angular-fire-compat-auth.js",
"esm2015": "../../esm2015/compat/auth/angular-fire-compat-auth.js",
"fesm2015": "../../fesm2015/angular-fire-compat-auth.js",
"typings": "angular-fire-compat-auth.d.ts",
"sideEffects": false,
"name": "@angular/fire/compat/auth"
}

View file

@ -0,0 +1,3 @@
import 'firebase/compat/auth';
export * from './auth';
export * from './auth.module';