@@ -53,6 +53,8 @@ export interface NewTesterDevicePayload {
5353/**
5454 * The internal payload object for receiving in-app feedback from a tester.
5555 * Payload is wrapped inside a `FirebaseAlertData` object.
56+ *
57+ * @alpha
5658 */
5759export interface InAppFeedbackPayload {
5860 [ '@type' ] : 'type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload' ;
@@ -272,6 +274,8 @@ export function onNewTesterIosDevicePublished(
272274 * Declares a function that can handle receiving new in-app feedback from a tester.
273275 * @param handler - Event handler which is run every time new feedback is received.
274276 * @returns A function that you can export and deploy.
277+ *
278+ * @alpha
275279 */
276280export function onInAppFeedbackPublished (
277281 handler : (
@@ -284,6 +288,8 @@ export function onInAppFeedbackPublished(
284288 * @param appId - A specific application the handler will trigger on.
285289 * @param handler - Event handler which is run every time new feedback is received.
286290 * @returns A function that you can export and deploy.
291+ *
292+ * @alpha
287293 */
288294export function onInAppFeedbackPublished (
289295 appId : string ,
@@ -297,6 +303,8 @@ export function onInAppFeedbackPublished(
297303 * @param opts - Options that can be set on the function.
298304 * @param handler - Event handler which is run every time new feedback is received.
299305 * @returns A function that you can export and deploy.
306+ *
307+ * @alpha
300308 */
301309export function onInAppFeedbackPublished (
302310 opts : AppDistributionOptions ,
@@ -310,6 +318,8 @@ export function onInAppFeedbackPublished(
310318 * @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function.
311319 * @param handler - Event handler which is run every time new feedback is received.
312320 * @returns A function that you can export and deploy.
321+ *
322+ * @alpha
313323 */
314324export function onInAppFeedbackPublished (
315325 appIdOrOptsOrHandler :
0 commit comments