summaryrefslogtreecommitdiff
path: root/frontend-old/node_modules/@firebase/installations/dist/src/functions
diff options
context:
space:
mode:
Diffstat (limited to 'frontend-old/node_modules/@firebase/installations/dist/src/functions')
-rw-r--r--frontend-old/node_modules/@firebase/installations/dist/src/functions/common.d.ts38
-rw-r--r--frontend-old/node_modules/@firebase/installations/dist/src/functions/config.d.ts17
-rw-r--r--frontend-old/node_modules/@firebase/installations/dist/src/functions/create-installation-request.d.ts19
-rw-r--r--frontend-old/node_modules/@firebase/installations/dist/src/functions/delete-installation-request.d.ts19
-rw-r--r--frontend-old/node_modules/@firebase/installations/dist/src/functions/generate-auth-token-request.d.ts19
5 files changed, 0 insertions, 112 deletions
diff --git a/frontend-old/node_modules/@firebase/installations/dist/src/functions/common.d.ts b/frontend-old/node_modules/@firebase/installations/dist/src/functions/common.d.ts
deleted file mode 100644
index d592734..0000000
--- a/frontend-old/node_modules/@firebase/installations/dist/src/functions/common.d.ts
+++ /dev/null
@@ -1,38 +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 { FirebaseError } from '@firebase/util';
-import { GenerateAuthTokenResponse } from '../interfaces/api-response';
-import { CompletedAuthToken, RegisteredInstallationEntry } from '../interfaces/installation-entry';
-import { AppConfig } from '../interfaces/installation-impl';
-export declare function getInstallationsEndpoint({ projectId }: AppConfig): string;
-export declare function extractAuthTokenInfoFromResponse(response: GenerateAuthTokenResponse): CompletedAuthToken;
-export declare function getErrorFromResponse(requestName: string, response: Response): Promise<FirebaseError>;
-export declare function getHeaders({ apiKey }: AppConfig): Headers;
-export declare function getHeadersWithAuth(appConfig: AppConfig, { refreshToken }: RegisteredInstallationEntry): Headers;
-export interface ErrorResponse {
- error: {
- code: number;
- message: string;
- status: string;
- };
-}
-/**
- * Calls the passed in fetch wrapper and returns the response.
- * If the returned response has a status of 5xx, re-runs the function once and
- * returns the response.
- */
-export declare function retryIfServerError(fn: () => Promise<Response>): Promise<Response>;
diff --git a/frontend-old/node_modules/@firebase/installations/dist/src/functions/config.d.ts b/frontend-old/node_modules/@firebase/installations/dist/src/functions/config.d.ts
deleted file mode 100644
index 06082e0..0000000
--- a/frontend-old/node_modules/@firebase/installations/dist/src/functions/config.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 declare function registerInstallations(): void;
diff --git a/frontend-old/node_modules/@firebase/installations/dist/src/functions/create-installation-request.d.ts b/frontend-old/node_modules/@firebase/installations/dist/src/functions/create-installation-request.d.ts
deleted file mode 100644
index d1997d5..0000000
--- a/frontend-old/node_modules/@firebase/installations/dist/src/functions/create-installation-request.d.ts
+++ /dev/null
@@ -1,19 +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 { InProgressInstallationEntry, RegisteredInstallationEntry } from '../interfaces/installation-entry';
-import { FirebaseInstallationsImpl } from '../interfaces/installation-impl';
-export declare function createInstallationRequest({ appConfig, heartbeatServiceProvider }: FirebaseInstallationsImpl, { fid }: InProgressInstallationEntry): Promise<RegisteredInstallationEntry>;
diff --git a/frontend-old/node_modules/@firebase/installations/dist/src/functions/delete-installation-request.d.ts b/frontend-old/node_modules/@firebase/installations/dist/src/functions/delete-installation-request.d.ts
deleted file mode 100644
index d8dfda8..0000000
--- a/frontend-old/node_modules/@firebase/installations/dist/src/functions/delete-installation-request.d.ts
+++ /dev/null
@@ -1,19 +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 { AppConfig } from '../interfaces/installation-impl';
-import { RegisteredInstallationEntry } from '../interfaces/installation-entry';
-export declare function deleteInstallationRequest(appConfig: AppConfig, installationEntry: RegisteredInstallationEntry): Promise<void>;
diff --git a/frontend-old/node_modules/@firebase/installations/dist/src/functions/generate-auth-token-request.d.ts b/frontend-old/node_modules/@firebase/installations/dist/src/functions/generate-auth-token-request.d.ts
deleted file mode 100644
index 7b4179e..0000000
--- a/frontend-old/node_modules/@firebase/installations/dist/src/functions/generate-auth-token-request.d.ts
+++ /dev/null
@@ -1,19 +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 { CompletedAuthToken, RegisteredInstallationEntry } from '../interfaces/installation-entry';
-import { FirebaseInstallationsImpl } from '../interfaces/installation-impl';
-export declare function generateAuthTokenRequest({ appConfig, heartbeatServiceProvider }: FirebaseInstallationsImpl, installationEntry: RegisteredInstallationEntry): Promise<CompletedAuthToken>;