Skip to content

Commit f751f5c

Browse files
authored
Update InAppFeedbackPayload (#1187)
* Add `feedbackConsoleUri` * Clarify fast expiry of `screenshotUris`
1 parent 0e4ffb6 commit f751f5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/v2/providers/alerts/appDistribution.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ export interface InAppFeedbackPayload {
5353
['@type']: 'type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroInAppFeedbackPayload';
5454
/** Resource name. Format: `projects/{project_number}/apps/{app_id}/releases/{release_id}/feedbackReports/{feedback_id}` */
5555
feedbackReport: string;
56+
/** Deep link back to the Firebase console. */
57+
feedbackConsoleUri: string;
5658
/** Name of the tester */
5759
testerName?: string;
5860
/** Email of the tester */
@@ -71,7 +73,7 @@ export interface InAppFeedbackPayload {
7173
buildVersion: string;
7274
/** Text entered by the tester */
7375
text: string;
74-
/** URIs to download screenshot(s) */
76+
/** URIs to download screenshot(s). These URIs are fast expiring. */
7577
screenshotUris: string[];
7678
}
7779

0 commit comments

Comments
 (0)