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: