alerts.crashlytics namespace

関数

関数 説明
onNewAnrIssuePublished(handler) Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。
onNewAnrIssuePublished(appId, handler) Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。
onNewAnrIssuePublished(opts, handler) Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。
onNewFatalIssuePublished(handler) Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。
onNewFatalIssuePublished(appId, handler) Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。
onNewFatalIssuePublished(opts, handler) Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。
onNewNonfatalIssuePublished(handler) Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。
onNewNonfatalIssuePublished(appId, handler) Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。
onNewNonfatalIssuePublished(opts, handler) Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。
onRegressionAlertPublished(handler) Crashlytics に公開された回帰アラートを処理できる関数を宣言します。
onRegressionAlertPublished(appId, handler) Crashlytics に公開された回帰アラートを処理できる関数を宣言します。
onRegressionAlertPublished(opts, handler) Crashlytics に公開された回帰アラートを処理できる関数を宣言します。
onStabilityDigestPublished(handler) Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。
onStabilityDigestPublished(appId, handler) Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。
onStabilityDigestPublished(opts, handler) Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。
onVelocityAlertPublished(handler) Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。
onVelocityAlertPublished(appId, handler) Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。
onVelocityAlertPublished(opts, handler) Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。

インターフェース

インターフェース 説明
CrashlyticsEvent Firebase 向けのカスタム CloudEvent アラート(カスタム拡張機能属性を含む)。
CrashlyticsOptions Crashlytics 関数の構成。
問題 Crashlytics の一般的な問題を示すインターフェース
NewAnrIssuePayload 新しいアプリケーション応答なし問題の内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。
NewFatalIssuePayload 新しい致命的な問題の内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。
NewNonfatalIssuePayload 新しい非致命的な問題の内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。
RegressionAlertPayload 回帰アラートの内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。
StabilityDigestPayload 安定性ダイジェスト用の内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。
TrendingIssueDetails Crashlytics の傾向に関する一般的な問題のインターフェース
VelocityAlertPayload ベロシティ アラートの内部ペイロード オブジェクト。ペイロードは FirebaseAlertData オブジェクト内にラップされます。

alert.crashlytics.onNewAnrIssuePublished()

Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。

署名:

export declare function onNewAnrIssuePublished(handler: (event: CrashlyticsEvent<NewAnrIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<NewAnrIssuePayload>)=>任意 |<任意> を約束する 新しい「アプリケーション応答なし」の問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewAnrIssuePublished()

Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。

署名:

export declare function onNewAnrIssuePublished(appId: string, handler: (event: CrashlyticsEvent<NewAnrIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<NewAnrIssuePayload>)=>任意 |<任意> を約束する 新しい「アプリケーション応答なし」の問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewAnrIssuePublished()

Crashlytics に公開された新しい「アプリケーション応答なし」の問題を処理できる関数を宣言します。

署名:

export declare function onNewAnrIssuePublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<NewAnrIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<NewAnrIssuePayload>)=>任意 |<任意> を約束する 新しい「アプリケーション応答なし」の問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewAnrIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewFatalIssuePublished()

Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewFatalIssuePublished(handler: (event: CrashlyticsEvent<NewFatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<NewFatalIssuePayload>)=>任意 |<任意> を約束する 新しい致命的な問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewFatalIssuePublished()

Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewFatalIssuePublished(appId: string, handler: (event: CrashlyticsEvent<NewFatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<NewFatalIssuePayload>)=>任意 |<任意> を約束する 新しい致命的な問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewFatalIssuePublished()

Crashlytics に公開された新しい致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewFatalIssuePublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<NewFatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<NewFatalIssuePayload>)=>任意 |<任意> を約束する 新しい致命的な問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewFatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewNonfatalIssuePublished()

Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewNonfatalIssuePublished(handler: (event: CrashlyticsEvent<NewNonfatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<NewNonfatalIssuePayload>)=>任意 |<任意> を約束する 新しい致命的な問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewNonfatalIssuePublished()

Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewNonfatalIssuePublished(appId: string, handler: (event: CrashlyticsEvent<NewNonfatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<NewNonfatalIssuePayload>)=>任意 |<任意> を約束する 致命的でない新しい問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onNewNonfatalIssuePublished()

Crashlytics に公開された新しい非致命的な問題を処理できる関数を宣言します。

署名:

export declare function onNewNonfatalIssuePublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<NewNonfatalIssuePayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<NewNonfatalIssuePayload>)=>任意 |<任意> を約束する 致命的でない新しい問題が Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<NewNonfatalIssuePayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onRegressionAlertPublished()

Crashlytics に公開された回帰アラートを処理できる関数を宣言します。

署名:

export declare function onRegressionAlertPublished(handler: (event: CrashlyticsEvent<RegressionAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<RegressionAlertPayload>)=>任意 |<任意> を約束する 回帰アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onRegressionAlertPublished()

Crashlytics に公開された回帰アラートを処理できる関数を宣言します。

署名:

export declare function onRegressionAlertPublished(appId: string, handler: (event: CrashlyticsEvent<RegressionAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<RegressionAlertPayload>)=>任意 |<任意> を約束する 回帰アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onRegressionAlertPublished()

Crashlytics に公開された回帰アラートを処理できる関数を宣言します。

署名:

export declare function onRegressionAlertPublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<RegressionAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<RegressionAlertPayload>)=>任意 |<任意> を約束する 回帰アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<RegressionAlertPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onStabilityDigestPublished()

Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。

署名:

export declare function onStabilityDigestPublished(handler: (event: CrashlyticsEvent<StabilityDigestPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<StabilityDigestPayload>)=>任意 |<任意> を約束する 安定性ダイジェストが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onStabilityDigestPublished()

Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。

署名:

export declare function onStabilityDigestPublished(appId: string, handler: (event: CrashlyticsEvent<StabilityDigestPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<StabilityDigestPayload>)=>任意 |<任意> を約束する 安定性ダイジェストが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onStabilityDigestPublished()

Crashlytics に公開された安定性のダイジェストを処理できる関数を宣言します。

署名:

export declare function onStabilityDigestPublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<StabilityDigestPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<StabilityDigestPayload>)=>任意 |<任意> を約束する 安定性ダイジェストが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<StabilityDigestPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onVelocityAlertPublished()

Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。

署名:

export declare function onVelocityAlertPublished(handler: (event: CrashlyticsEvent<VelocityAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>;

パラメータ

パラメータ 説明
handler (イベント: CrashlyticsEvent<VelocityAlertPayload>)=>任意 |<任意> を約束する ベロシティ アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onVelocityAlertPublished()

Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。

署名:

export declare function onVelocityAlertPublished(appId: string, handler: (event: CrashlyticsEvent<VelocityAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>;

パラメータ

パラメータ 説明
appId 文字列 ハンドラがトリガーされる特定のアプリケーション。
handler (イベント: CrashlyticsEvent<VelocityAlertPayload>)=>任意 |<任意> を約束する ベロシティ アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>

エクスポートしてデプロイできる関数。

alert.crashlytics.onVelocityAlertPublished()

Crashlytics に公開されたベロシティ アラートを処理できる関数を宣言します。

署名:

export declare function onVelocityAlertPublished(opts: CrashlyticsOptions, handler: (event: CrashlyticsEvent<VelocityAlertPayload>) => any | Promise<any>): CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>;

パラメータ

パラメータ 説明
最適化 CrashlyticsOptions 関数に設定できるオプション。
handler (イベント: CrashlyticsEvent<VelocityAlertPayload>)=>任意 |<任意> を約束する ベロシティ アラートが Crashlytics にパブリッシュされたときにトリガーされるイベント ハンドラ。

戻り値:

CloudFunction<CrashlyticsEvent<VelocityAlertPayload>>

エクスポートしてデプロイできる関数。