Skip to content

Commit 3c5392d

Browse files
authored
Hide documentation for in-app feedback (#1245)
1 parent cc6e28e commit 3c5392d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/v2/providers/alerts/appDistribution.ts

+10
Original file line numberDiff line numberDiff line change
@@ -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
*/
5759
export 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
*/
276280
export 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
*/
288294
export 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
*/
301309
export 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
*/
314324
export function onInAppFeedbackPublished(
315325
appIdOrOptsOrHandler:

0 commit comments

Comments
 (0)