diff options
| author | altaf-creator <dev@altafcreator.com> | 2025-11-16 19:08:29 +0800 |
|---|---|---|
| committer | altaf-creator <dev@altafcreator.com> | 2025-11-16 19:08:29 +0800 |
| commit | 434aa8343fdcbb4d5002f934979913c099489bee (patch) | |
| tree | 55bab4ec5a6151be57797d34f61faf5ea744471b /frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence | |
| parent | 893c388d4e99442a36005e5971a87730623f946e (diff) | |
sdk, del
Diffstat (limited to 'frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence')
5 files changed, 0 insertions, 149 deletions
diff --git a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/browser.d.ts b/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/browser.d.ts deleted file mode 100644 index 5635d97..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/browser.d.ts +++ /dev/null @@ -1,27 +0,0 @@ -/** - * @license - * Copyright 2019 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 { PersistenceValue, PersistenceType } from '../../core/persistence'; -export declare abstract class BrowserPersistenceClass { - protected readonly storageRetriever: () => Storage; - readonly type: PersistenceType; - protected constructor(storageRetriever: () => Storage, type: PersistenceType); - _isAvailable(): Promise<boolean>; - _set(key: string, value: PersistenceValue): Promise<void>; - _get<T extends PersistenceValue>(key: string): Promise<T | null>; - _remove(key: string): Promise<void>; - protected get storage(): Storage; -} diff --git a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/cookie_storage.d.ts b/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/cookie_storage.d.ts deleted file mode 100644 index f30bcef..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/cookie_storage.d.ts +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @license - * Copyright 2025 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 { Persistence } from '../../model/public_types'; -import { PersistenceInternal, PersistenceType, PersistenceValue, StorageEventListener } from '../../core/persistence'; -export declare class CookiePersistence implements PersistenceInternal { - static type: 'COOKIE'; - readonly type = PersistenceType.COOKIE; - listenerUnsubscribes: Map<StorageEventListener, () => void>; - _getFinalTarget(originalUrl: string): URL | string; - _isAvailable(): Promise<boolean>; - _set(_key: string, _value: PersistenceValue): Promise<void>; - _get<T extends PersistenceValue>(key: string): Promise<T | null>; - _remove(key: string): Promise<void>; - _addListener(key: string, listener: StorageEventListener): void; - _removeListener(_key: string, listener: StorageEventListener): void; -} -/** - * An implementation of {@link Persistence} of type `COOKIE`, for use on the client side in - * applications leveraging hybrid rendering and middleware. - * - * @remarks This persistence method requires companion middleware to function, such as that provided - * by {@link https://firebaseopensource.com/projects/firebaseextended/reactfire/ | ReactFire} for - * NextJS. - * @beta - */ -export declare const browserCookiePersistence: Persistence; diff --git a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/indexed_db.d.ts b/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/indexed_db.d.ts deleted file mode 100644 index 23c1604..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/indexed_db.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -/** - * @license - * Copyright 2019 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 { Persistence } from '../../model/public_types'; -import { PersistenceValue } from '../../core/persistence/'; -export declare const DB_NAME = "firebaseLocalStorageDb"; -export declare function _clearDatabase(db: IDBDatabase): Promise<void>; -export declare function _deleteDatabase(): Promise<void>; -export declare function _openDatabase(): Promise<IDBDatabase>; -export declare function _putObject(db: IDBDatabase, key: string, value: PersistenceValue | string): Promise<void>; -export declare function _deleteObject(db: IDBDatabase, key: string): Promise<void>; -export declare const _POLLING_INTERVAL_MS = 800; -export declare const _TRANSACTION_RETRY_COUNT = 3; -/** - * An implementation of {@link Persistence} of type `LOCAL` using `indexedDB` - * for the underlying storage. - * - * @public - */ -export declare const indexedDBLocalPersistence: Persistence; diff --git a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/local_storage.d.ts b/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/local_storage.d.ts deleted file mode 100644 index 34d8d64..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/local_storage.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 { Persistence } from '../../model/public_types'; -export declare const _POLLING_INTERVAL_MS = 1000; -/** - * An implementation of {@link Persistence} of type `LOCAL` using `localStorage` - * for the underlying storage. - * - * @public - */ -export declare const browserLocalPersistence: Persistence; diff --git a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/session_storage.d.ts b/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/session_storage.d.ts deleted file mode 100644 index 117c558..0000000 --- a/frontend-old/node_modules/@firebase/auth/dist/src/platform_browser/persistence/session_storage.d.ts +++ /dev/null @@ -1,24 +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 { Persistence } from '../../model/public_types'; -/** - * An implementation of {@link Persistence} of `SESSION` using `sessionStorage` - * for the underlying storage. - * - * @public - */ -export declare const browserSessionPersistence: Persistence; |
