@@ -52,8 +52,6 @@ export interface NewTesterDevicePayload {
5252/**
5353 * The internal payload object for receiving in-app feedback from a tester.
5454 * Payload is wrapped inside a `FirebaseAlertData` object.
55- *
56- * @alpha
5755 */
5856export interface InAppFeedbackPayload {
5957 [ "@type" ] : "type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload" ;
@@ -262,8 +260,6 @@ export function onNewTesterIosDevicePublished(
262260 * Declares a function that can handle receiving new in-app feedback from a tester.
263261 * @param handler - Event handler which is run every time new feedback is received.
264262 * @returns A function that you can export and deploy.
265- *
266- * @alpha
267263 */
268264export function onInAppFeedbackPublished (
269265 handler : ( event : AppDistributionEvent < InAppFeedbackPayload > ) => any | Promise < any >
@@ -274,8 +270,6 @@ export function onInAppFeedbackPublished(
274270 * @param appId - A specific application the handler will trigger on.
275271 * @param handler - Event handler which is run every time new feedback is received.
276272 * @returns A function that you can export and deploy.
277- *
278- * @alpha
279273 */
280274export function onInAppFeedbackPublished (
281275 appId : string ,
@@ -287,8 +281,6 @@ export function onInAppFeedbackPublished(
287281 * @param opts - Options that can be set on the function.
288282 * @param handler - Event handler which is run every time new feedback is received.
289283 * @returns A function that you can export and deploy.
290- *
291- * @alpha
292284 */
293285export function onInAppFeedbackPublished (
294286 opts : AppDistributionOptions ,
@@ -300,8 +292,6 @@ export function onInAppFeedbackPublished(
300292 * @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function.
301293 * @param handler - Event handler which is run every time new feedback is received.
302294 * @returns A function that you can export and deploy.
303- *
304- * @alpha
305295 */
306296export function onInAppFeedbackPublished (
307297 appIdOrOptsOrHandler :
0 commit comments