Skip to content

Commit

Permalink
Update InAppFeedbackPayload (#1187)
Browse files Browse the repository at this point in the history
* Add `feedbackConsoleUri`
* Clarify fast expiry of `screenshotUris`
  • Loading branch information
jladieu committed Aug 11, 2022
1 parent 0e4ffb6 commit f751f5c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/v2/providers/alerts/appDistribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ export interface InAppFeedbackPayload {
['@type']: 'type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload';
/** Resource name. Format: `projects/{project_number}/apps/{app_id}/releases/{release_id}/feedbackReports/{feedback_id}` */
feedbackReport: string;
/** Deep link back to the Firebase console. */
feedbackConsoleUri: string;
/** Name of the tester */
testerName?: string;
/** Email of the tester */
Expand All @@ -71,7 +73,7 @@ export interface InAppFeedbackPayload {
buildVersion: string;
/** Text entered by the tester */
text: string;
/** URIs to download screenshot(s) */
/** URIs to download screenshot(s). These URIs are fast expiring. */
screenshotUris: string[];
}

Expand Down

0 comments on commit f751f5c

Please sign in to comment.