From cef978bba7be1048040b29ce92ad417c63030e44 Mon Sep 17 00:00:00 2001 From: Kai Bolay Date: Mon, 31 Oct 2022 12:10:03 -0400 Subject: [PATCH] Revert "Hide documentation for in-app feedback (#1245)" This reverts commit 3c5392dfee2ab44d30bced291912821ab544d0a3. --- src/v2/providers/alerts/appDistribution.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/v2/providers/alerts/appDistribution.ts b/src/v2/providers/alerts/appDistribution.ts index cd3b3704a..e98085f84 100644 --- a/src/v2/providers/alerts/appDistribution.ts +++ b/src/v2/providers/alerts/appDistribution.ts @@ -52,8 +52,6 @@ export interface NewTesterDevicePayload { /** * The internal payload object for receiving in-app feedback from a tester. * Payload is wrapped inside a `FirebaseAlertData` object. - * - * @alpha */ export interface InAppFeedbackPayload { ["@type"]: "type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload"; @@ -262,8 +260,6 @@ export function onNewTesterIosDevicePublished( * Declares a function that can handle receiving new in-app feedback from a tester. * @param handler - Event handler which is run every time new feedback is received. * @returns A function that you can export and deploy. - * - * @alpha */ export function onInAppFeedbackPublished( handler: (event: AppDistributionEvent) => any | Promise @@ -274,8 +270,6 @@ export function onInAppFeedbackPublished( * @param appId - A specific application the handler will trigger on. * @param handler - Event handler which is run every time new feedback is received. * @returns A function that you can export and deploy. - * - * @alpha */ export function onInAppFeedbackPublished( appId: string, @@ -287,8 +281,6 @@ export function onInAppFeedbackPublished( * @param opts - Options that can be set on the function. * @param handler - Event handler which is run every time new feedback is received. * @returns A function that you can export and deploy. - * - * @alpha */ export function onInAppFeedbackPublished( opts: AppDistributionOptions, @@ -300,8 +292,6 @@ export function onInAppFeedbackPublished( * @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function. * @param handler - Event handler which is run every time new feedback is received. * @returns A function that you can export and deploy. - * - * @alpha */ export function onInAppFeedbackPublished( appIdOrOptsOrHandler: