@@ -52,8 +52,6 @@ export interface NewTesterDevicePayload {
52
52
/**
53
53
* The internal payload object for receiving in-app feedback from a tester.
54
54
* Payload is wrapped inside a `FirebaseAlertData` object.
55
- *
56
- * @alpha
57
55
*/
58
56
export interface InAppFeedbackPayload {
59
57
[ "@type" ] : "type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload" ;
@@ -262,8 +260,6 @@ export function onNewTesterIosDevicePublished(
262
260
* Declares a function that can handle receiving new in-app feedback from a tester.
263
261
* @param handler - Event handler which is run every time new feedback is received.
264
262
* @returns A function that you can export and deploy.
265
- *
266
- * @alpha
267
263
*/
268
264
export function onInAppFeedbackPublished (
269
265
handler : ( event : AppDistributionEvent < InAppFeedbackPayload > ) => any | Promise < any >
@@ -274,8 +270,6 @@ export function onInAppFeedbackPublished(
274
270
* @param appId - A specific application the handler will trigger on.
275
271
* @param handler - Event handler which is run every time new feedback is received.
276
272
* @returns A function that you can export and deploy.
277
- *
278
- * @alpha
279
273
*/
280
274
export function onInAppFeedbackPublished (
281
275
appId : string ,
@@ -287,8 +281,6 @@ export function onInAppFeedbackPublished(
287
281
* @param opts - Options that can be set on the function.
288
282
* @param handler - Event handler which is run every time new feedback is received.
289
283
* @returns A function that you can export and deploy.
290
- *
291
- * @alpha
292
284
*/
293
285
export function onInAppFeedbackPublished (
294
286
opts : AppDistributionOptions ,
@@ -300,8 +292,6 @@ export function onInAppFeedbackPublished(
300
292
* @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function.
301
293
* @param handler - Event handler which is run every time new feedback is received.
302
294
* @returns A function that you can export and deploy.
303
- *
304
- * @alpha
305
295
*/
306
296
export function onInAppFeedbackPublished (
307
297
appIdOrOptsOrHandler :
0 commit comments