diff options
Diffstat (limited to 'frontend-old/node_modules/@firebase/auth/dist/node/src/api')
18 files changed, 0 insertions, 989 deletions
diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/account.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/account.d.ts deleted file mode 100644 index f106e93..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/account.d.ts +++ /dev/null @@ -1,59 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { MfaEnrollment } from './mfa'; -import { Auth } from '../../model/public_types'; -export interface DeleteAccountRequest { - idToken: string; -} -export declare function deleteAccount(auth: Auth, request: DeleteAccountRequest): Promise<void>; -export interface ProviderUserInfo { - providerId: string; - rawId?: string; - email?: string; - displayName?: string; - photoUrl?: string; - phoneNumber?: string; -} -export interface DeleteLinkedAccountsRequest { - idToken: string; - deleteProvider: string[]; -} -export interface DeleteLinkedAccountsResponse { - providerUserInfo: ProviderUserInfo[]; -} -export declare function deleteLinkedAccounts(auth: Auth, request: DeleteLinkedAccountsRequest): Promise<DeleteLinkedAccountsResponse>; -export interface APIUserInfo { - localId?: string; - displayName?: string; - photoUrl?: string; - email?: string; - emailVerified?: boolean; - phoneNumber?: string; - lastLoginAt?: number; - createdAt?: number; - tenantId?: string; - passwordHash?: string; - providerUserInfo?: ProviderUserInfo[]; - mfaInfo?: MfaEnrollment[]; -} -export interface GetAccountInfoRequest { - idToken: string; -} -export interface GetAccountInfoResponse { - users: APIUserInfo[]; -} -export declare function getAccountInfo(auth: Auth, request: GetAccountInfoRequest): Promise<GetAccountInfoResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/email_and_password.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/email_and_password.d.ts deleted file mode 100644 index 5a3bb06..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/email_and_password.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { ActionCodeOperation, Auth } from '../../model/public_types'; -import { IdTokenResponse } from '../../model/id_token'; -import { MfaEnrollment } from './mfa'; -import { SignUpRequest, SignUpResponse } from '../authentication/sign_up'; -export interface ResetPasswordRequest { - oobCode: string; - newPassword?: string; - tenantId?: string; -} -export interface ResetPasswordResponse { - email: string; - newEmail?: string; - requestType?: ActionCodeOperation; - mfaInfo?: MfaEnrollment; -} -export declare function resetPassword(auth: Auth, request: ResetPasswordRequest): Promise<ResetPasswordResponse>; -export interface UpdateEmailPasswordRequest { - idToken: string; - returnSecureToken?: boolean; - email?: string; - password?: string; -} -export interface UpdateEmailPasswordResponse extends IdTokenResponse { -} -export declare function updateEmailPassword(auth: Auth, request: UpdateEmailPasswordRequest): Promise<UpdateEmailPasswordResponse>; -export declare function linkEmailPassword(auth: Auth, request: SignUpRequest): Promise<SignUpResponse>; -export interface ApplyActionCodeRequest { - oobCode: string; - tenantId?: string; -} -export interface ApplyActionCodeResponse { -} -export declare function applyActionCode(auth: Auth, request: ApplyActionCodeRequest): Promise<ApplyActionCodeResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/mfa.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/mfa.d.ts deleted file mode 100644 index 8db0c0d..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/mfa.d.ts +++ /dev/null @@ -1,107 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { SignInWithPhoneNumberRequest } from '../authentication/sms'; -import { FinalizeMfaResponse } from '../authentication/mfa'; -import { AuthInternal } from '../../model/auth'; -/** - * MFA Info as returned by the API. - */ -interface BaseMfaEnrollment { - mfaEnrollmentId: string; - enrolledAt: number; - displayName?: string; -} -/** - * An MFA provided by SMS verification. - */ -export interface PhoneMfaEnrollment extends BaseMfaEnrollment { - phoneInfo: string; -} -/** - * An MFA provided by TOTP (Time-based One Time Password). - */ -export interface TotpMfaEnrollment extends BaseMfaEnrollment { -} -/** - * MfaEnrollment can be any subtype of BaseMfaEnrollment, currently only PhoneMfaEnrollment and TotpMfaEnrollment are supported. - */ -export type MfaEnrollment = PhoneMfaEnrollment | TotpMfaEnrollment; -export interface StartPhoneMfaEnrollmentRequest { - idToken: string; - phoneEnrollmentInfo: { - phoneNumber: string; - recaptchaToken?: string; - captchaResponse?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; - }; - tenantId?: string; -} -export interface StartPhoneMfaEnrollmentResponse { - phoneSessionInfo: { - sessionInfo: string; - }; -} -export declare function startEnrollPhoneMfa(auth: AuthInternal, request: StartPhoneMfaEnrollmentRequest): Promise<StartPhoneMfaEnrollmentResponse>; -export interface FinalizePhoneMfaEnrollmentRequest { - idToken: string; - phoneVerificationInfo: SignInWithPhoneNumberRequest; - displayName?: string | null; - tenantId?: string; -} -export interface FinalizePhoneMfaEnrollmentResponse extends FinalizeMfaResponse { -} -export declare function finalizeEnrollPhoneMfa(auth: AuthInternal, request: FinalizePhoneMfaEnrollmentRequest): Promise<FinalizePhoneMfaEnrollmentResponse>; -export interface StartTotpMfaEnrollmentRequest { - idToken: string; - totpEnrollmentInfo: {}; - tenantId?: string; -} -export interface StartTotpMfaEnrollmentResponse { - totpSessionInfo: { - sharedSecretKey: string; - verificationCodeLength: number; - hashingAlgorithm: string; - periodSec: number; - sessionInfo: string; - finalizeEnrollmentTime: number; - }; -} -export declare function startEnrollTotpMfa(auth: AuthInternal, request: StartTotpMfaEnrollmentRequest): Promise<StartTotpMfaEnrollmentResponse>; -export interface TotpVerificationInfo { - sessionInfo: string; - verificationCode: string; -} -export interface FinalizeTotpMfaEnrollmentRequest { - idToken: string; - totpVerificationInfo: TotpVerificationInfo; - displayName?: string | null; - tenantId?: string; -} -export interface FinalizeTotpMfaEnrollmentResponse extends FinalizeMfaResponse { -} -export declare function finalizeEnrollTotpMfa(auth: AuthInternal, request: FinalizeTotpMfaEnrollmentRequest): Promise<FinalizeTotpMfaEnrollmentResponse>; -export interface WithdrawMfaRequest { - idToken: string; - mfaEnrollmentId: string; - tenantId?: string; -} -export interface WithdrawMfaResponse extends FinalizeMfaResponse { -} -export declare function withdrawMfa(auth: AuthInternal, request: WithdrawMfaRequest): Promise<WithdrawMfaResponse>; -export {}; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/profile.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/profile.d.ts deleted file mode 100644 index 9b1d591..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/account_management/profile.d.ts +++ /dev/null @@ -1,29 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface UpdateProfileRequest { - idToken: string; - displayName?: string | null; - photoUrl?: string | null; - returnSecureToken: boolean; -} -export interface UpdateProfileResponse extends IdTokenResponse { - displayName?: string | null; - photoUrl?: string | null; -} -export declare function updateProfile(auth: Auth, request: UpdateProfileRequest): Promise<UpdateProfileResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/create_auth_uri.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/create_auth_uri.d.ts deleted file mode 100644 index 8c2db00..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/create_auth_uri.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { Auth } from '../../model/public_types'; -export interface CreateAuthUriRequest { - identifier: string; - continueUri: string; - tenantId?: string; -} -export interface CreateAuthUriResponse { - signinMethods: string[]; -} -export declare function createAuthUri(auth: Auth, request: CreateAuthUriRequest): Promise<CreateAuthUriResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/custom_token.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/custom_token.d.ts deleted file mode 100644 index ad776c7..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/custom_token.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface SignInWithCustomTokenRequest { - token: string; - returnSecureToken: boolean; - tenantId?: string; -} -export interface SignInWithCustomTokenResponse extends IdTokenResponse { -} -export declare function signInWithCustomToken(auth: Auth, request: SignInWithCustomTokenRequest): Promise<SignInWithCustomTokenResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_and_password.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_and_password.d.ts deleted file mode 100644 index 90028bd..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_and_password.d.ts +++ /dev/null @@ -1,86 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { ActionCodeOperation, Auth } from '../../model/public_types'; -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { IdToken, IdTokenResponse } from '../../model/id_token'; -export interface SignInWithPasswordRequest { - returnSecureToken?: boolean; - email: string; - password: string; - tenantId?: string; - captchaResponse?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; -} -export interface SignInWithPasswordResponse extends IdTokenResponse { - email: string; - displayName: string; -} -export declare function signInWithPassword(auth: Auth, request: SignInWithPasswordRequest): Promise<SignInWithPasswordResponse>; -export interface GetOobCodeRequest { - email?: string; - continueUrl?: string; - iOSBundleId?: string; - iosAppStoreId?: string; - androidPackageName?: string; - androidInstallApp?: boolean; - androidMinimumVersionCode?: string; - canHandleCodeInApp?: boolean; - dynamicLinkDomain?: string; - tenantId?: string; - targetProjectid?: string; - linkDomain?: string; -} -export interface VerifyEmailRequest extends GetOobCodeRequest { - requestType: ActionCodeOperation.VERIFY_EMAIL; - idToken: IdToken; -} -export interface PasswordResetRequest extends GetOobCodeRequest { - requestType: ActionCodeOperation.PASSWORD_RESET; - email: string; - captchaResp?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; -} -export interface EmailSignInRequest extends GetOobCodeRequest { - requestType: ActionCodeOperation.EMAIL_SIGNIN; - email: string; - captchaResp?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; -} -export interface VerifyAndChangeEmailRequest extends GetOobCodeRequest { - requestType: ActionCodeOperation.VERIFY_AND_CHANGE_EMAIL; - idToken: IdToken; - newEmail: string; -} -interface GetOobCodeResponse { - email: string; -} -export interface VerifyEmailResponse extends GetOobCodeResponse { -} -export interface PasswordResetResponse extends GetOobCodeResponse { -} -export interface EmailSignInResponse extends GetOobCodeResponse { -} -export interface VerifyAndChangeEmailResponse extends GetOobCodeRequest { -} -export declare function sendEmailVerification(auth: Auth, request: VerifyEmailRequest): Promise<VerifyEmailResponse>; -export declare function sendPasswordResetEmail(auth: Auth, request: PasswordResetRequest): Promise<PasswordResetResponse>; -export declare function sendSignInLinkToEmail(auth: Auth, request: EmailSignInRequest): Promise<EmailSignInResponse>; -export declare function verifyAndChangeEmail(auth: Auth, request: VerifyAndChangeEmailRequest): Promise<VerifyAndChangeEmailResponse>; -export {}; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_link.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_link.d.ts deleted file mode 100644 index eef24a5..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/email_link.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface SignInWithEmailLinkRequest { - email: string; - oobCode: string; - tenantId?: string; -} -export interface SignInWithEmailLinkResponse extends IdTokenResponse { - email: string; - isNewUser: boolean; -} -export declare function signInWithEmailLink(auth: Auth, request: SignInWithEmailLinkRequest): Promise<SignInWithEmailLinkResponse>; -export interface SignInWithEmailLinkForLinkingRequest extends SignInWithEmailLinkRequest { - idToken: string; -} -export declare function signInWithEmailLinkForLinking(auth: Auth, request: SignInWithEmailLinkForLinkingRequest): Promise<SignInWithEmailLinkResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/idp.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/idp.d.ts deleted file mode 100644 index dd75832..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/idp.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { IdToken, IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface SignInWithIdpRequest { - requestUri: string; - postBody?: string; - sessionId?: string; - tenantId?: string; - returnSecureToken: boolean; - returnIdpCredential?: boolean; - idToken?: IdToken; - autoCreate?: boolean; - pendingToken?: string; -} -/** - * @internal - */ -export interface SignInWithIdpResponse extends IdTokenResponse { - oauthAccessToken?: string; - oauthTokenSecret?: string; - nonce?: string; - oauthIdToken?: string; - pendingToken?: string; -} -export declare function signInWithIdp(auth: Auth, request: SignInWithIdpRequest): Promise<SignInWithIdpResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/mfa.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/mfa.d.ts deleted file mode 100644 index 0d2abed..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/mfa.d.ts +++ /dev/null @@ -1,73 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { Auth } from '../../model/public_types'; -import { IdTokenResponse } from '../../model/id_token'; -import { MfaEnrollment } from '../account_management/mfa'; -import { SignInWithIdpResponse } from './idp'; -import { SignInWithPhoneNumberRequest, SignInWithPhoneNumberResponse } from './sms'; -export interface FinalizeMfaResponse { - idToken: string; - refreshToken: string; -} -/** - * @internal - */ -export interface IdTokenMfaResponse extends IdTokenResponse { - mfaPendingCredential?: string; - mfaInfo?: MfaEnrollment[]; -} -export interface StartPhoneMfaSignInRequest { - mfaPendingCredential: string; - mfaEnrollmentId: string; - phoneSignInInfo: { - recaptchaToken?: string; - captchaResponse?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; - }; - tenantId?: string; -} -export interface StartPhoneMfaSignInResponse { - phoneResponseInfo: { - sessionInfo: string; - }; -} -export declare function startSignInPhoneMfa(auth: Auth, request: StartPhoneMfaSignInRequest): Promise<StartPhoneMfaSignInResponse>; -export interface FinalizePhoneMfaSignInRequest { - mfaPendingCredential: string; - phoneVerificationInfo: SignInWithPhoneNumberRequest; - tenantId?: string; -} -export interface FinalizeTotpMfaSignInRequest { - mfaPendingCredential: string; - totpVerificationInfo: { - verificationCode: string; - }; - tenantId?: string; - mfaEnrollmentId: string; -} -export interface FinalizePhoneMfaSignInResponse extends FinalizeMfaResponse { -} -export interface FinalizeTotpMfaSignInResponse extends FinalizeMfaResponse { -} -export declare function finalizeSignInPhoneMfa(auth: Auth, request: FinalizePhoneMfaSignInRequest): Promise<FinalizePhoneMfaSignInResponse>; -export declare function finalizeSignInTotpMfa(auth: Auth, request: FinalizeTotpMfaSignInRequest): Promise<FinalizeTotpMfaSignInResponse>; -/** - * @internal - */ -export type PhoneOrOauthTokenResponse = SignInWithPhoneNumberResponse | SignInWithIdpResponse | IdTokenResponse; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/recaptcha.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/recaptcha.d.ts deleted file mode 100644 index e324d6d..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/recaptcha.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { Auth } from '../../model/public_types'; -export declare function getRecaptchaParams(auth: Auth): Promise<string>; -interface GetRecaptchaConfigRequest { - tenantId?: string; - clientType?: RecaptchaClientType; - version?: RecaptchaVersion; -} -export interface RecaptchaEnforcementProviderState { - provider: string; - enforcementState: string; -} -export interface GetRecaptchaConfigResponse { - recaptchaKey: string; - recaptchaEnforcementState: RecaptchaEnforcementProviderState[]; -} -export declare function getRecaptchaConfig(auth: Auth, request: GetRecaptchaConfigRequest): Promise<GetRecaptchaConfigResponse>; -export {}; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sign_up.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sign_up.d.ts deleted file mode 100644 index 78f0838..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sign_up.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface SignUpRequest { - idToken?: string; - returnSecureToken?: boolean; - email?: string; - password?: string; - tenantId?: string; - captchaResponse?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; -} -export interface SignUpResponse extends IdTokenResponse { - displayName?: string; - email?: string; -} -export declare function signUp(auth: Auth, request: SignUpRequest): Promise<SignUpResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sms.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sms.d.ts deleted file mode 100644 index 617aa64..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/sms.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { RecaptchaClientType, RecaptchaVersion } from '../index'; -import { IdTokenResponse } from '../../model/id_token'; -import { Auth } from '../../model/public_types'; -export interface SendPhoneVerificationCodeRequest { - phoneNumber: string; - recaptchaToken?: string; - tenantId?: string; - captchaResponse?: string; - clientType?: RecaptchaClientType; - recaptchaVersion?: RecaptchaVersion; -} -export interface SendPhoneVerificationCodeResponse { - sessionInfo: string; -} -export declare function sendPhoneVerificationCode(auth: Auth, request: SendPhoneVerificationCodeRequest): Promise<SendPhoneVerificationCodeResponse>; -/** - * @internal - */ -export interface SignInWithPhoneNumberRequest { - temporaryProof?: string; - phoneNumber?: string; - sessionInfo?: string; - code?: string; - tenantId?: string; -} -export interface LinkWithPhoneNumberRequest extends SignInWithPhoneNumberRequest { - idToken: string; -} -/** - * @internal - */ -export interface SignInWithPhoneNumberResponse extends IdTokenResponse { - temporaryProof?: string; - phoneNumber?: string; -} -export declare function signInWithPhoneNumber(auth: Auth, request: SignInWithPhoneNumberRequest): Promise<SignInWithPhoneNumberResponse>; -export declare function linkWithPhoneNumber(auth: Auth, request: LinkWithPhoneNumberRequest): Promise<SignInWithPhoneNumberResponse>; -export declare function verifyPhoneNumberForExisting(auth: Auth, request: SignInWithPhoneNumberRequest): Promise<SignInWithPhoneNumberResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/token.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/token.d.ts deleted file mode 100644 index 1433eae..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/authentication/token.d.ts +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { Auth } from '../../model/public_types'; -export declare const enum TokenType { - REFRESH_TOKEN = "REFRESH_TOKEN", - ACCESS_TOKEN = "ACCESS_TOKEN" -} -export interface RequestStsTokenResponse { - accessToken: string; - expiresIn: string; - refreshToken: string; -} -export interface RevokeTokenRequest { - providerId: string; - tokenType: TokenType; - token: string; - idToken: string; - tenantId?: string; -} -export interface RevokeTokenResponse { -} -export declare function requestStsToken(auth: Auth, refreshToken: string): Promise<RequestStsTokenResponse>; -export declare function revokeToken(auth: Auth, request: RevokeTokenRequest): Promise<RevokeTokenResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/errors.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/errors.d.ts deleted file mode 100644 index 208e19d..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/errors.d.ts +++ /dev/null @@ -1,129 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { AuthErrorCode } from '../core/errors'; -/** - * Errors that can be returned by the backend - */ -export declare const enum ServerError { - ADMIN_ONLY_OPERATION = "ADMIN_ONLY_OPERATION", - BLOCKING_FUNCTION_ERROR_RESPONSE = "BLOCKING_FUNCTION_ERROR_RESPONSE", - CAPTCHA_CHECK_FAILED = "CAPTCHA_CHECK_FAILED", - CORS_UNSUPPORTED = "CORS_UNSUPPORTED", - CREDENTIAL_MISMATCH = "CREDENTIAL_MISMATCH", - CREDENTIAL_TOO_OLD_LOGIN_AGAIN = "CREDENTIAL_TOO_OLD_LOGIN_AGAIN", - DYNAMIC_LINK_NOT_ACTIVATED = "DYNAMIC_LINK_NOT_ACTIVATED", - EMAIL_CHANGE_NEEDS_VERIFICATION = "EMAIL_CHANGE_NEEDS_VERIFICATION", - EMAIL_EXISTS = "EMAIL_EXISTS", - EMAIL_NOT_FOUND = "EMAIL_NOT_FOUND", - EXPIRED_OOB_CODE = "EXPIRED_OOB_CODE", - FEDERATED_USER_ID_ALREADY_LINKED = "FEDERATED_USER_ID_ALREADY_LINKED", - INVALID_APP_CREDENTIAL = "INVALID_APP_CREDENTIAL", - INVALID_APP_ID = "INVALID_APP_ID", - INVALID_CERT_HASH = "INVALID_CERT_HASH", - INVALID_CODE = "INVALID_CODE", - INVALID_CONTINUE_URI = "INVALID_CONTINUE_URI", - INVALID_CUSTOM_TOKEN = "INVALID_CUSTOM_TOKEN", - INVALID_DYNAMIC_LINK_DOMAIN = "INVALID_DYNAMIC_LINK_DOMAIN", - INVALID_EMAIL = "INVALID_EMAIL", - INVALID_ID_TOKEN = "INVALID_ID_TOKEN", - INVALID_IDP_RESPONSE = "INVALID_IDP_RESPONSE", - INVALID_IDENTIFIER = "INVALID_IDENTIFIER", - INVALID_LOGIN_CREDENTIALS = "INVALID_LOGIN_CREDENTIALS", - INVALID_MESSAGE_PAYLOAD = "INVALID_MESSAGE_PAYLOAD", - INVALID_MFA_PENDING_CREDENTIAL = "INVALID_MFA_PENDING_CREDENTIAL", - INVALID_OAUTH_CLIENT_ID = "INVALID_OAUTH_CLIENT_ID", - INVALID_OOB_CODE = "INVALID_OOB_CODE", - INVALID_PASSWORD = "INVALID_PASSWORD", - INVALID_PENDING_TOKEN = "INVALID_PENDING_TOKEN", - INVALID_PHONE_NUMBER = "INVALID_PHONE_NUMBER", - INVALID_PROVIDER_ID = "INVALID_PROVIDER_ID", - INVALID_RECIPIENT_EMAIL = "INVALID_RECIPIENT_EMAIL", - INVALID_SENDER = "INVALID_SENDER", - INVALID_SESSION_INFO = "INVALID_SESSION_INFO", - INVALID_TEMPORARY_PROOF = "INVALID_TEMPORARY_PROOF", - INVALID_TENANT_ID = "INVALID_TENANT_ID", - MFA_ENROLLMENT_NOT_FOUND = "MFA_ENROLLMENT_NOT_FOUND", - MISSING_ANDROID_PACKAGE_NAME = "MISSING_ANDROID_PACKAGE_NAME", - MISSING_APP_CREDENTIAL = "MISSING_APP_CREDENTIAL", - MISSING_CODE = "MISSING_CODE", - MISSING_CONTINUE_URI = "MISSING_CONTINUE_URI", - MISSING_CUSTOM_TOKEN = "MISSING_CUSTOM_TOKEN", - MISSING_IOS_BUNDLE_ID = "MISSING_IOS_BUNDLE_ID", - MISSING_MFA_ENROLLMENT_ID = "MISSING_MFA_ENROLLMENT_ID", - MISSING_MFA_PENDING_CREDENTIAL = "MISSING_MFA_PENDING_CREDENTIAL", - MISSING_OOB_CODE = "MISSING_OOB_CODE", - MISSING_OR_INVALID_NONCE = "MISSING_OR_INVALID_NONCE", - MISSING_PASSWORD = "MISSING_PASSWORD", - MISSING_REQ_TYPE = "MISSING_REQ_TYPE", - MISSING_PHONE_NUMBER = "MISSING_PHONE_NUMBER", - MISSING_SESSION_INFO = "MISSING_SESSION_INFO", - OPERATION_NOT_ALLOWED = "OPERATION_NOT_ALLOWED", - PASSWORD_LOGIN_DISABLED = "PASSWORD_LOGIN_DISABLED", - QUOTA_EXCEEDED = "QUOTA_EXCEEDED", - RESET_PASSWORD_EXCEED_LIMIT = "RESET_PASSWORD_EXCEED_LIMIT", - REJECTED_CREDENTIAL = "REJECTED_CREDENTIAL", - SECOND_FACTOR_EXISTS = "SECOND_FACTOR_EXISTS", - SECOND_FACTOR_LIMIT_EXCEEDED = "SECOND_FACTOR_LIMIT_EXCEEDED", - SESSION_EXPIRED = "SESSION_EXPIRED", - TENANT_ID_MISMATCH = "TENANT_ID_MISMATCH", - TOKEN_EXPIRED = "TOKEN_EXPIRED", - TOO_MANY_ATTEMPTS_TRY_LATER = "TOO_MANY_ATTEMPTS_TRY_LATER", - UNSUPPORTED_FIRST_FACTOR = "UNSUPPORTED_FIRST_FACTOR", - UNSUPPORTED_TENANT_OPERATION = "UNSUPPORTED_TENANT_OPERATION", - UNAUTHORIZED_DOMAIN = "UNAUTHORIZED_DOMAIN", - UNVERIFIED_EMAIL = "UNVERIFIED_EMAIL", - USER_CANCELLED = "USER_CANCELLED", - USER_DISABLED = "USER_DISABLED", - USER_NOT_FOUND = "USER_NOT_FOUND", - WEAK_PASSWORD = "WEAK_PASSWORD", - RECAPTCHA_NOT_ENABLED = "RECAPTCHA_NOT_ENABLED", - MISSING_RECAPTCHA_TOKEN = "MISSING_RECAPTCHA_TOKEN", - INVALID_RECAPTCHA_TOKEN = "INVALID_RECAPTCHA_TOKEN", - INVALID_RECAPTCHA_ACTION = "INVALID_RECAPTCHA_ACTION", - MISSING_CLIENT_TYPE = "MISSING_CLIENT_TYPE", - MISSING_RECAPTCHA_VERSION = "MISSING_RECAPTCHA_VERSION", - INVALID_RECAPTCHA_VERSION = "INVALID_RECAPTCHA_VERSION", - INVALID_REQ_TYPE = "INVALID_REQ_TYPE", - PASSWORD_DOES_NOT_MEET_REQUIREMENTS = "PASSWORD_DOES_NOT_MEET_REQUIREMENTS", - INVALID_HOSTING_LINK_DOMAIN = "INVALID_HOSTING_LINK_DOMAIN" -} -/** - * API Response in the event of an error - */ -export interface JsonError { - error: { - code: number; - message: string; - errors?: [ - { - message: ServerError; - domain: string; - reason: string; - } - ]; - }; -} -/** - * Type definition for a map from server errors to developer visible errors - */ -export declare type ServerErrorMap<ApiError extends string> = { - readonly [K in ApiError]: AuthErrorCode; -}; -/** - * Map from errors returned by the server to errors to developer visible errors - */ -export declare const SERVER_ERROR_MAP: Partial<ServerErrorMap<ServerError>>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/index.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/index.d.ts deleted file mode 100644 index 1df9f79..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/index.d.ts +++ /dev/null @@ -1,101 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { FirebaseError } from '@firebase/util'; -import { AuthErrorCode } from '../core/errors'; -import { Delay } from '../core/util/delay'; -import { Auth } from '../model/public_types'; -import { IdTokenResponse } from '../model/id_token'; -import { ServerError, ServerErrorMap } from './errors'; -export declare const enum HttpMethod { - POST = "POST", - GET = "GET" -} -export declare const enum HttpHeader { - CONTENT_TYPE = "Content-Type", - X_FIREBASE_LOCALE = "X-Firebase-Locale", - X_CLIENT_VERSION = "X-Client-Version", - X_FIREBASE_GMPID = "X-Firebase-gmpid", - X_FIREBASE_CLIENT = "X-Firebase-Client", - X_FIREBASE_APP_CHECK = "X-Firebase-AppCheck" -} -export declare const enum Endpoint { - CREATE_AUTH_URI = "/v1/accounts:createAuthUri", - DELETE_ACCOUNT = "/v1/accounts:delete", - RESET_PASSWORD = "/v1/accounts:resetPassword", - SIGN_UP = "/v1/accounts:signUp", - SIGN_IN_WITH_CUSTOM_TOKEN = "/v1/accounts:signInWithCustomToken", - SIGN_IN_WITH_EMAIL_LINK = "/v1/accounts:signInWithEmailLink", - SIGN_IN_WITH_IDP = "/v1/accounts:signInWithIdp", - SIGN_IN_WITH_PASSWORD = "/v1/accounts:signInWithPassword", - SIGN_IN_WITH_PHONE_NUMBER = "/v1/accounts:signInWithPhoneNumber", - SEND_VERIFICATION_CODE = "/v1/accounts:sendVerificationCode", - SEND_OOB_CODE = "/v1/accounts:sendOobCode", - SET_ACCOUNT_INFO = "/v1/accounts:update", - GET_ACCOUNT_INFO = "/v1/accounts:lookup", - GET_RECAPTCHA_PARAM = "/v1/recaptchaParams", - START_MFA_ENROLLMENT = "/v2/accounts/mfaEnrollment:start", - FINALIZE_MFA_ENROLLMENT = "/v2/accounts/mfaEnrollment:finalize", - START_MFA_SIGN_IN = "/v2/accounts/mfaSignIn:start", - FINALIZE_MFA_SIGN_IN = "/v2/accounts/mfaSignIn:finalize", - WITHDRAW_MFA = "/v2/accounts/mfaEnrollment:withdraw", - GET_PROJECT_CONFIG = "/v1/projects", - GET_RECAPTCHA_CONFIG = "/v2/recaptchaConfig", - GET_PASSWORD_POLICY = "/v2/passwordPolicy", - TOKEN = "/v1/token", - REVOKE_TOKEN = "/v2/accounts:revokeToken" -} -export declare const enum RecaptchaClientType { - WEB = "CLIENT_TYPE_WEB", - ANDROID = "CLIENT_TYPE_ANDROID", - IOS = "CLIENT_TYPE_IOS" -} -export declare const enum RecaptchaVersion { - ENTERPRISE = "RECAPTCHA_ENTERPRISE" -} -export declare const enum RecaptchaActionName { - SIGN_IN_WITH_PASSWORD = "signInWithPassword", - GET_OOB_CODE = "getOobCode", - SIGN_UP_PASSWORD = "signUpPassword", - SEND_VERIFICATION_CODE = "sendVerificationCode", - MFA_SMS_ENROLLMENT = "mfaSmsEnrollment", - MFA_SMS_SIGNIN = "mfaSmsSignIn" -} -export declare const enum EnforcementState { - ENFORCE = "ENFORCE", - AUDIT = "AUDIT", - OFF = "OFF", - ENFORCEMENT_STATE_UNSPECIFIED = "ENFORCEMENT_STATE_UNSPECIFIED" -} -export declare const enum RecaptchaAuthProvider { - EMAIL_PASSWORD_PROVIDER = "EMAIL_PASSWORD_PROVIDER", - PHONE_PROVIDER = "PHONE_PROVIDER" -} -export declare const DEFAULT_API_TIMEOUT_MS: Delay; -export declare function _addTidIfNecessary<T extends { - tenantId?: string; -}>(auth: Auth, request: T): T; -export declare function _performApiRequest<T, V>(auth: Auth, method: HttpMethod, path: Endpoint, request?: T, customErrorMap?: Partial<ServerErrorMap<ServerError>>): Promise<V>; -export declare function _performFetchWithErrorHandling<V>(auth: Auth, customErrorMap: Partial<ServerErrorMap<ServerError>>, fetchFn: () => Promise<Response>): Promise<V>; -export declare function _performSignInRequest<T, V extends IdTokenResponse>(auth: Auth, method: HttpMethod, path: Endpoint, request?: T, customErrorMap?: Partial<ServerErrorMap<ServerError>>): Promise<V>; -export declare function _getFinalTarget(auth: Auth, host: string, path: string, query: string): Promise<string>; -export declare function _parseEnforcementState(enforcementStateStr: string): EnforcementState; -interface PotentialResponse extends IdTokenResponse { - email?: string; - phoneNumber?: string; -} -export declare function _makeTaggedError(auth: Auth, code: AuthErrorCode, response: PotentialResponse): FirebaseError; -export {}; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/password_policy/get_password_policy.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/password_policy/get_password_policy.d.ts deleted file mode 100644 index f8a90e9..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/password_policy/get_password_policy.d.ts +++ /dev/null @@ -1,48 +0,0 @@ -/** - * @license - * Copyright 2023 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { Auth } from '../../model/public_types'; -/** - * Request object for fetching the password policy. - */ -export interface GetPasswordPolicyRequest { - tenantId?: string; -} -/** - * Response object for fetching the password policy. - */ -export interface GetPasswordPolicyResponse { - customStrengthOptions: { - minPasswordLength?: number; - maxPasswordLength?: number; - containsLowercaseCharacter?: boolean; - containsUppercaseCharacter?: boolean; - containsNumericCharacter?: boolean; - containsNonAlphanumericCharacter?: boolean; - }; - allowedNonAlphanumericCharacters?: string[]; - enforcementState: string; - forceUpgradeOnSignin?: boolean; - schemaVersion: number; -} -/** - * Fetches the password policy for the currently set tenant or the project if no tenant is set. - * - * @param auth Auth object. - * @param request Password policy request. - * @returns Password policy response. - */ -export declare function _getPasswordPolicy(auth: Auth, request?: GetPasswordPolicyRequest): Promise<GetPasswordPolicyResponse>; diff --git a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/project_config/get_project_config.d.ts b/frontend-old/node_modules/@firebase/auth/dist/node/src/api/project_config/get_project_config.d.ts deleted file mode 100644 index c7a881a..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/node/src/api/project_config/get_project_config.d.ts +++ /dev/null @@ -1,25 +0,0 @@ -/** - * @license - * Copyright 2020 Google LLC - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -import { Auth } from '../../model/public_types'; -export interface GetProjectConfigRequest { - androidPackageName?: string; - iosBundleId?: string; -} -export interface GetProjectConfigResponse { - authorizedDomains: string[]; -} -export declare function _getProjectConfig(auth: Auth, request?: GetProjectConfigRequest): Promise<GetProjectConfigResponse>; |
