@@ -53,6 +53,8 @@ export interface NewTesterDevicePayload {
53
53
/**
54
54
* The internal payload object for receiving in-app feedback from a tester.
55
55
* Payload is wrapped inside a `FirebaseAlertData` object.
56
+ *
57
+ * @alpha
56
58
*/
57
59
export interface InAppFeedbackPayload {
58
60
[ '@type' ] : 'type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload' ;
@@ -272,6 +274,8 @@ export function onNewTesterIosDevicePublished(
272
274
* Declares a function that can handle receiving new in-app feedback from a tester.
273
275
* @param handler - Event handler which is run every time new feedback is received.
274
276
* @returns A function that you can export and deploy.
277
+ *
278
+ * @alpha
275
279
*/
276
280
export function onInAppFeedbackPublished (
277
281
handler : (
@@ -284,6 +288,8 @@ export function onInAppFeedbackPublished(
284
288
* @param appId - A specific application the handler will trigger on.
285
289
* @param handler - Event handler which is run every time new feedback is received.
286
290
* @returns A function that you can export and deploy.
291
+ *
292
+ * @alpha
287
293
*/
288
294
export function onInAppFeedbackPublished (
289
295
appId : string ,
@@ -297,6 +303,8 @@ export function onInAppFeedbackPublished(
297
303
* @param opts - Options that can be set on the function.
298
304
* @param handler - Event handler which is run every time new feedback is received.
299
305
* @returns A function that you can export and deploy.
306
+ *
307
+ * @alpha
300
308
*/
301
309
export function onInAppFeedbackPublished (
302
310
opts : AppDistributionOptions ,
@@ -310,6 +318,8 @@ export function onInAppFeedbackPublished(
310
318
* @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function.
311
319
* @param handler - Event handler which is run every time new feedback is received.
312
320
* @returns A function that you can export and deploy.
321
+ *
322
+ * @alpha
313
323
*/
314
324
export function onInAppFeedbackPublished (
315
325
appIdOrOptsOrHandler :
0 commit comments