Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/v2/providers/alerts/appDistribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ import { FirebaseAlertData, getEndpointAnnotation } from './alerts';
*/
export interface NewTesterDevicePayload {
['@type']: 'type.googleapis.com/google.events.firebase.firebasealerts.v1.AppDistroNewTesterIosDevicePayload';
/** Name of the tester */
testerName: string;
/** Email of the tester */
testerEmail: string;
/** The device model name */
testerDeviceModelName: string;
/** The device ID */
testerDeviceIdentifier: string;
}

Expand Down
8 changes: 6 additions & 2 deletions src/v2/providers/alerts/crashlytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,14 @@ import { CloudEvent, CloudFunction } from '../../core';
import * as options from '../../options';

/** Generic crashlytics issue interface */
interface Issue {
export interface Issue {
/** The ID of the crashlytics issue */
id: string;
/** The title of the crashlytics issue */
title: string;
/** The subtitle of the crashlytics issue */
subtitle: string;
/** The application version of the crashlytics issue */
appVersion: string;
}

Expand Down Expand Up @@ -48,7 +52,7 @@ export interface RegressionAlertPayload {
}

/** Generic crashlytics trending issue interface */
interface TrendingIssueDetails {
export interface TrendingIssueDetails {
/** The type of the Crashlytics issue, e.g. new fatal, new nonfatal, ANR */
type: string;
/** Basic information of the Crashlytics issue */
Expand Down
1 change: 1 addition & 0 deletions src/v2/providers/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ export interface CustomerEncryption {
keySha256?: string;
}

/** A CloudEvent that contains StorageObjectData */
export interface StorageEvent extends CloudEvent<StorageObjectData> {
/** The name of the bucket containing this object. */
bucket: string;
Expand Down