Skip to content

Commit

Permalink
Revert "Hide documentation for in-app feedback (#1245)" (#1294)
Browse files Browse the repository at this point in the history
This reverts commit 3c5392d.
  • Loading branch information
kaibolay committed Nov 1, 2022
1 parent d09f4cb commit f61934c
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/v2/providers/alerts/appDistribution.ts
Expand Up @@ -52,8 +52,6 @@ export interface NewTesterDevicePayload {
/**
* The internal payload object for receiving in-app feedback from a tester.
* Payload is wrapped inside a `FirebaseAlertData` object.
*
* @alpha
*/
export interface InAppFeedbackPayload {
["@type"]: "type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload";
Expand Down Expand Up @@ -262,8 +260,6 @@ export function onNewTesterIosDevicePublished(
* Declares a function that can handle receiving new in-app feedback from a tester.
* @param handler - Event handler which is run every time new feedback is received.
* @returns A function that you can export and deploy.
*
* @alpha
*/
export function onInAppFeedbackPublished(
handler: (event: AppDistributionEvent<InAppFeedbackPayload>) => any | Promise<any>
Expand All @@ -274,8 +270,6 @@ export function onInAppFeedbackPublished(
* @param appId - A specific application the handler will trigger on.
* @param handler - Event handler which is run every time new feedback is received.
* @returns A function that you can export and deploy.
*
* @alpha
*/
export function onInAppFeedbackPublished(
appId: string,
Expand All @@ -287,8 +281,6 @@ export function onInAppFeedbackPublished(
* @param opts - Options that can be set on the function.
* @param handler - Event handler which is run every time new feedback is received.
* @returns A function that you can export and deploy.
*
* @alpha
*/
export function onInAppFeedbackPublished(
opts: AppDistributionOptions,
Expand All @@ -300,8 +292,6 @@ export function onInAppFeedbackPublished(
* @param appIdOrOptsOrHandler - A specific application, options, or an event-handling function.
* @param handler - Event handler which is run every time new feedback is received.
* @returns A function that you can export and deploy.
*
* @alpha
*/
export function onInAppFeedbackPublished(
appIdOrOptsOrHandler:
Expand Down

0 comments on commit f61934c

Please sign in to comment.