summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/installations-compat/dist
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-old/node_modules/@firebase/installations-compat/dist')
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js70
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js.map1
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/package.json1
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/index.d.ts33
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.d.ts28
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.test.d.ts17
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/setup.d.ts17
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/util.d.ts20
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js76
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js.map1
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/src/index.d.ts33
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.d.ts28
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.test.d.ts17
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/setup.d.ts17
-rw-r--r--frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/util.d.ts20
15 files changed, 0 insertions, 379 deletions
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js
deleted file mode 100644
index 2c6b46e..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js
+++ /dev/null
@@ -1,70 +0,0 @@
-import firebase from '@firebase/app-compat';
-import { Component } from '@firebase/component';
-import { getId, getToken, deleteInstallations, onIdChange } from '@firebase/installations';
-
-const name = "@firebase/installations-compat";
-const version = "0.2.19";
-
-/**
- * @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.
- */
-class InstallationsCompat {
- constructor(app, _delegate) {
- this.app = app;
- this._delegate = _delegate;
- }
- getId() {
- return getId(this._delegate);
- }
- getToken(forceRefresh) {
- return getToken(this._delegate, forceRefresh);
- }
- delete() {
- return deleteInstallations(this._delegate);
- }
- onIdChange(callback) {
- return onIdChange(this._delegate, callback);
- }
-}
-
-/**
- * @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.
- */
-function registerInstallations(instance) {
- instance.INTERNAL.registerComponent(new Component('installations-compat', container => {
- const app = container.getProvider('app-compat').getImmediate();
- const installations = container
- .getProvider('installations')
- .getImmediate();
- return new InstallationsCompat(app, installations);
- }, "PUBLIC" /* ComponentType.PUBLIC */));
- instance.registerVersion(name, version);
-}
-registerInstallations(firebase);
-//# sourceMappingURL=index.esm.js.map
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js.map b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js.map
deleted file mode 100644
index ab9376b..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/index.esm.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.esm.js","sources":["../../src/installationsCompat.ts","../../src/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';\nimport { FirebaseApp, _FirebaseService } from '@firebase/app-compat';\nimport {\n Installations,\n deleteInstallations,\n getId,\n getToken,\n IdChangeCallbackFn,\n IdChangeUnsubscribeFn,\n onIdChange\n} from '@firebase/installations';\n\nexport class InstallationsCompat\n implements FirebaseInstallationsCompat, _FirebaseService\n{\n constructor(public app: FirebaseApp, readonly _delegate: Installations) {}\n\n getId(): Promise<string> {\n return getId(this._delegate);\n }\n getToken(forceRefresh?: boolean): Promise<string> {\n return getToken(this._delegate, forceRefresh);\n }\n delete(): Promise<void> {\n return deleteInstallations(this._delegate);\n }\n onIdChange(callback: IdChangeCallbackFn): IdChangeUnsubscribeFn {\n return onIdChange(this._delegate, callback);\n }\n}\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport firebase, { _FirebaseNamespace } from '@firebase/app-compat';\nimport { name, version } from '../package.json';\nimport { Component, ComponentType } from '@firebase/component';\nimport { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';\nimport { InstallationsCompat } from './installationsCompat';\n\ndeclare module '@firebase/component' {\n interface NameServiceMapping {\n 'installations-compat': FirebaseInstallationsCompat;\n }\n}\n\nfunction registerInstallations(instance: _FirebaseNamespace): void {\n instance.INTERNAL.registerComponent(\n new Component(\n 'installations-compat',\n container => {\n const app = container.getProvider('app-compat').getImmediate()!;\n const installations = container\n .getProvider('installations')\n .getImmediate()!;\n return new InstallationsCompat(app, installations);\n },\n ComponentType.PUBLIC\n )\n );\n\n instance.registerVersion(name, version);\n}\n\nregisterInstallations(firebase as _FirebaseNamespace);\n\n/**\n * Define extension behavior of `registerInstallations`\n */\ndeclare module '@firebase/app-compat' {\n interface FirebaseNamespace {\n installations(app?: FirebaseApp): FirebaseInstallationsCompat;\n }\n interface FirebaseApp {\n installations(): FirebaseInstallationsCompat;\n }\n}\n"],"names":[],"mappings":";;;;;;;AAAA;;;;;;;;;;;;;;;AAeG;MAcU,mBAAmB,CAAA;IAG9B,WAAmB,CAAA,GAAgB,EAAW,SAAwB,EAAA;QAAnD,IAAG,CAAA,GAAA,GAAH,GAAG,CAAa;QAAW,IAAS,CAAA,SAAA,GAAT,SAAS,CAAe;KAAI;IAE1E,KAAK,GAAA;AACH,QAAA,OAAO,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;KAC9B;AACD,IAAA,QAAQ,CAAC,YAAsB,EAAA;QAC7B,OAAO,QAAQ,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;KAC/C;IACD,MAAM,GAAA;AACJ,QAAA,OAAO,mBAAmB,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;KAC5C;AACD,IAAA,UAAU,CAAC,QAA4B,EAAA;QACrC,OAAO,UAAU,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;KAC7C;AACF;;AC9CD;;;;;;;;;;;;;;;AAeG;AAcH,SAAS,qBAAqB,CAAC,QAA4B,EAAA;AACzD,IAAA,QAAQ,CAAC,QAAQ,CAAC,iBAAiB,CACjC,IAAI,SAAS,CACX,sBAAsB,EACtB,SAAS,IAAG;QACV,MAAM,GAAG,GAAG,SAAS,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,YAAY,EAAG,CAAC;QAChE,MAAM,aAAa,GAAG,SAAS;aAC5B,WAAW,CAAC,eAAe,CAAC;AAC5B,aAAA,YAAY,EAAG,CAAC;AACnB,QAAA,OAAO,IAAI,mBAAmB,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;KACpD,EAAA,QAAA,4BAEF,CACF,CAAC;AAEF,IAAA,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AAC1C,CAAC;AAED,qBAAqB,CAAC,QAA8B,CAAC"} \ No newline at end of file
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/package.json b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/package.json
deleted file mode 100644
index 7c34deb..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/package.json
+++ /dev/null
@@ -1 +0,0 @@
-{"type":"module"} \ No newline at end of file
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/index.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/index.d.ts
deleted file mode 100644
index 1d6f1ac..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/index.d.ts
+++ /dev/null
@@ -1,33 +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 { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';
-declare module '@firebase/component' {
- interface NameServiceMapping {
- 'installations-compat': FirebaseInstallationsCompat;
- }
-}
-/**
- * Define extension behavior of `registerInstallations`
- */
-declare module '@firebase/app-compat' {
- interface FirebaseNamespace {
- installations(app?: FirebaseApp): FirebaseInstallationsCompat;
- }
- interface FirebaseApp {
- installations(): FirebaseInstallationsCompat;
- }
-}
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.d.ts
deleted file mode 100644
index de08cca..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.d.ts
+++ /dev/null
@@ -1,28 +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 { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';
-import { FirebaseApp, _FirebaseService } from '@firebase/app-compat';
-import { Installations, IdChangeCallbackFn, IdChangeUnsubscribeFn } from '@firebase/installations';
-export declare class InstallationsCompat implements FirebaseInstallationsCompat, _FirebaseService {
- app: FirebaseApp;
- readonly _delegate: Installations;
- constructor(app: FirebaseApp, _delegate: Installations);
- getId(): Promise<string>;
- getToken(forceRefresh?: boolean): Promise<string>;
- delete(): Promise<void>;
- onIdChange(callback: IdChangeCallbackFn): IdChangeUnsubscribeFn;
-}
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.test.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.test.d.ts
deleted file mode 100644
index b219bb7..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/installationsCompat.test.d.ts
+++ /dev/null
@@ -1,17 +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 './testing/setup';
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/setup.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/setup.d.ts
deleted file mode 100644
index 731d2d9..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/setup.d.ts
+++ /dev/null
@@ -1,17 +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.
- */
-export {};
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/util.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/util.d.ts
deleted file mode 100644
index b944c7d..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/esm/src/testing/util.d.ts
+++ /dev/null
@@ -1,20 +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 { FirebaseApp } from '@firebase/app-compat';
-import { Installations } from '@firebase/installations';
-export declare function getFakeApp(): FirebaseApp;
-export declare function getFakeInstallations(): Installations;
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js b/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js
deleted file mode 100644
index 3bcb2f9..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js
+++ /dev/null
@@ -1,76 +0,0 @@
-'use strict';
-
-var firebase = require('@firebase/app-compat');
-var component = require('@firebase/component');
-var installations = require('@firebase/installations');
-
-function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
-
-var firebase__default = /*#__PURE__*/_interopDefaultLegacy(firebase);
-
-const name = "@firebase/installations-compat";
-const version = "0.2.19";
-
-/**
- * @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.
- */
-class InstallationsCompat {
- constructor(app, _delegate) {
- this.app = app;
- this._delegate = _delegate;
- }
- getId() {
- return installations.getId(this._delegate);
- }
- getToken(forceRefresh) {
- return installations.getToken(this._delegate, forceRefresh);
- }
- delete() {
- return installations.deleteInstallations(this._delegate);
- }
- onIdChange(callback) {
- return installations.onIdChange(this._delegate, callback);
- }
-}
-
-/**
- * @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.
- */
-function registerInstallations(instance) {
- instance.INTERNAL.registerComponent(new component.Component('installations-compat', container => {
- const app = container.getProvider('app-compat').getImmediate();
- const installations = container
- .getProvider('installations')
- .getImmediate();
- return new InstallationsCompat(app, installations);
- }, "PUBLIC" /* ComponentType.PUBLIC */));
- instance.registerVersion(name, version);
-}
-registerInstallations(firebase__default["default"]);
-//# sourceMappingURL=index.cjs.js.map
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js.map b/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js.map
deleted file mode 100644
index 79117cb..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/index.cjs.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"file":"index.cjs.js","sources":["../src/installationsCompat.ts","../src/index.ts"],"sourcesContent":["/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';\nimport { FirebaseApp, _FirebaseService } from '@firebase/app-compat';\nimport {\n Installations,\n deleteInstallations,\n getId,\n getToken,\n IdChangeCallbackFn,\n IdChangeUnsubscribeFn,\n onIdChange\n} from '@firebase/installations';\n\nexport class InstallationsCompat\n implements FirebaseInstallationsCompat, _FirebaseService\n{\n constructor(public app: FirebaseApp, readonly _delegate: Installations) {}\n\n getId(): Promise<string> {\n return getId(this._delegate);\n }\n getToken(forceRefresh?: boolean): Promise<string> {\n return getToken(this._delegate, forceRefresh);\n }\n delete(): Promise<void> {\n return deleteInstallations(this._delegate);\n }\n onIdChange(callback: IdChangeCallbackFn): IdChangeUnsubscribeFn {\n return onIdChange(this._delegate, callback);\n }\n}\n","/**\n * @license\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport firebase, { _FirebaseNamespace } from '@firebase/app-compat';\nimport { name, version } from '../package.json';\nimport { Component, ComponentType } from '@firebase/component';\nimport { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';\nimport { InstallationsCompat } from './installationsCompat';\n\ndeclare module '@firebase/component' {\n interface NameServiceMapping {\n 'installations-compat': FirebaseInstallationsCompat;\n }\n}\n\nfunction registerInstallations(instance: _FirebaseNamespace): void {\n instance.INTERNAL.registerComponent(\n new Component(\n 'installations-compat',\n container => {\n const app = container.getProvider('app-compat').getImmediate()!;\n const installations = container\n .getProvider('installations')\n .getImmediate()!;\n return new InstallationsCompat(app, installations);\n },\n ComponentType.PUBLIC\n )\n );\n\n instance.registerVersion(name, version);\n}\n\nregisterInstallations(firebase as _FirebaseNamespace);\n\n/**\n * Define extension behavior of `registerInstallations`\n */\ndeclare module '@firebase/app-compat' {\n interface FirebaseNamespace {\n installations(app?: FirebaseApp): FirebaseInstallationsCompat;\n }\n interface FirebaseApp {\n installations(): FirebaseInstallationsCompat;\n }\n}\n"],"names":["getId","getToken","deleteInstallations","onIdChange","Component","firebase"],"mappings":";;;;;;;;;;;;;AAAA;;;;;;;;;;;;;;;AAeG;MAcU,mBAAmB,CAAA;IAG9B,WAAmB,CAAA,GAAgB,EAAW,SAAwB,EAAA;QAAnD,IAAG,CAAA,GAAA,GAAH,GAAG,CAAa;QAAW,IAAS,CAAA,SAAA,GAAT,SAAS,CAAe;KAAI;IAE1E,KAAK,GAAA;AACH,QAAA,OAAOA,mBAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;KAC9B;AACD,IAAA,QAAQ,CAAC,YAAsB,EAAA;QAC7B,OAAOC,sBAAQ,CAAC,IAAI,CAAC,SAAS,EAAE,YAAY,CAAC,CAAC;KAC/C;IACD,MAAM,GAAA;AACJ,QAAA,OAAOC,iCAAmB,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;KAC5C;AACD,IAAA,UAAU,CAAC,QAA4B,EAAA;QACrC,OAAOC,wBAAU,CAAC,IAAI,CAAC,SAAS,EAAE,QAAQ,CAAC,CAAC;KAC7C;AACF;;AC9CD;;;;;;;;;;;;;;;AAeG;AAcH,SAAS,qBAAqB,CAAC,QAA4B,EAAA;AACzD,IAAA,QAAQ,CAAC,QAAQ,CAAC,iBAAiB,CACjC,IAAIC,mBAAS,CACX,sBAAsB,EACtB,SAAS,IAAG;QACV,MAAM,GAAG,GAAG,SAAS,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,YAAY,EAAG,CAAC;QAChE,MAAM,aAAa,GAAG,SAAS;aAC5B,WAAW,CAAC,eAAe,CAAC;AAC5B,aAAA,YAAY,EAAG,CAAC;AACnB,QAAA,OAAO,IAAI,mBAAmB,CAAC,GAAG,EAAE,aAAa,CAAC,CAAC;KACpD,EAAA,QAAA,4BAEF,CACF,CAAC;AAEF,IAAA,QAAQ,CAAC,eAAe,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;AAC1C,CAAC;AAED,qBAAqB,CAACC,4BAA8B,CAAC;;"} \ No newline at end of file
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/src/index.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/src/index.d.ts
deleted file mode 100644
index 1d6f1ac..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/src/index.d.ts
+++ /dev/null
@@ -1,33 +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 { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';
-declare module '@firebase/component' {
- interface NameServiceMapping {
- 'installations-compat': FirebaseInstallationsCompat;
- }
-}
-/**
- * Define extension behavior of `registerInstallations`
- */
-declare module '@firebase/app-compat' {
- interface FirebaseNamespace {
- installations(app?: FirebaseApp): FirebaseInstallationsCompat;
- }
- interface FirebaseApp {
- installations(): FirebaseInstallationsCompat;
- }
-}
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.d.ts
deleted file mode 100644
index de08cca..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.d.ts
+++ /dev/null
@@ -1,28 +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 { FirebaseInstallations as FirebaseInstallationsCompat } from '@firebase/installations-types';
-import { FirebaseApp, _FirebaseService } from '@firebase/app-compat';
-import { Installations, IdChangeCallbackFn, IdChangeUnsubscribeFn } from '@firebase/installations';
-export declare class InstallationsCompat implements FirebaseInstallationsCompat, _FirebaseService {
- app: FirebaseApp;
- readonly _delegate: Installations;
- constructor(app: FirebaseApp, _delegate: Installations);
- getId(): Promise<string>;
- getToken(forceRefresh?: boolean): Promise<string>;
- delete(): Promise<void>;
- onIdChange(callback: IdChangeCallbackFn): IdChangeUnsubscribeFn;
-}
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.test.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.test.d.ts
deleted file mode 100644
index b219bb7..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/src/installationsCompat.test.d.ts
+++ /dev/null
@@ -1,17 +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 './testing/setup';
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/setup.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/setup.d.ts
deleted file mode 100644
index 731d2d9..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/setup.d.ts
+++ /dev/null
@@ -1,17 +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.
- */
-export {};
diff --git a/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/util.d.ts b/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/util.d.ts
deleted file mode 100644
index b944c7d..0000000
--- a/frontend-old/node_modules/@firebase/installations-compat/dist/src/testing/util.d.ts
+++ /dev/null
@@ -1,20 +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 { FirebaseApp } from '@firebase/app-compat';
-import { Installations } from '@firebase/installations';
-export declare function getFakeApp(): FirebaseApp;
-export declare function getFakeInstallations(): Installations;