From 3c5392dfee2ab44d30bced291912821ab544d0a3 Mon Sep 17 00:00:00 2001 From: Kai Bolay Date: Thu, 29 Sep 2022 21:29:19 -0400 Subject: [PATCH] Hide documentation for in-app feedback (#1245) --- src/v2/providers/alerts/appDistribution.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/v2/providers/alerts/appDistribution.ts b/src/v2/providers/alerts/appDistribution.ts index 3a9e7107c..3446379e4 100644 --- a/src/v2/providers/alerts/appDistribution.ts +++ b/src/v2/providers/alerts/appDistribution.ts @@ -53,6 +53,8 @@ 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'; @@ -272,6 +274,8 @@ 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: ( @@ -284,6 +288,8 @@ 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, @@ -297,6 +303,8 @@ 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, @@ -310,6 +318,8 @@ 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: