alerts.appDistribution namespace

함수

함수 설명
onInAppFeedbackPublished(handler) 테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.
onInAppFeedbackPublished(appId, 핸들러) 테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.
onInAppFeedbackPublished(opts, 핸들러) 테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.
onNewTesterIosDevicePublished(handler) 새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.
onNewTesterIosDevicePublished(appId, 핸들러) 새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.
onNewTesterIosDevicePublished(opts, 핸들러) 새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.

인터페이스

인터페이스 설명
앱 배포 이벤트 Firebase용 커스텀 CloudEvent 알림 (커스텀 확장 프로그램 속성 사용)
AppDeployionOptions 앱 배포 함수의 구성입니다.
InAppFeedbackPayload 테스터로부터 인앱 의견을 수신하는 내부 페이로드 객체입니다. 페이로드는 FirebaseAlertData 객체 내에 래핑됩니다.
NewTesterDevicePayload 앱 배포에 새 테스터 기기를 추가하기 위한 내부 페이로드 객체입니다. 페이로드는 FirebaseAlertData 객체 내에 래핑됩니다.

alert.appDeployion.onInAppFeedbackPublished()

테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onInAppFeedbackPublished(handler: (event: AppDistributionEvent<InAppFeedbackPayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<InAppFeedbackPayload>>;

매개변수

매개변수 유형 설명
handler (이벤트: App DistributionEvent<InAppFeedbackPayload>) => 모두 | 약속<any> 새 의견을 수신할 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<InAppFeedbackPayload>>

내보내고 배포할 수 있는 함수입니다.

alert.appDeployion.onInAppFeedbackPublished()

테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onInAppFeedbackPublished(appId: string, handler: (event: AppDistributionEvent<InAppFeedbackPayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<InAppFeedbackPayload>>;

매개변수

매개변수 유형 설명
appId 문자열 핸들러가 트리거할 특정 애플리케이션.
handler (이벤트: App DistributionEvent<InAppFeedbackPayload>) => 모두 | 약속<any> 새 의견을 수신할 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<InAppFeedbackPayload>>

내보내고 배포할 수 있는 함수입니다.

alert.appDeployion.onInAppFeedbackPublished()

테스터로부터 새 인앱 의견 수신을 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onInAppFeedbackPublished(opts: AppDistributionOptions, handler: (event: AppDistributionEvent<InAppFeedbackPayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<InAppFeedbackPayload>>;

매개변수

매개변수 유형 설명
최적화 AppDeployionOptions 함수에 설정할 수 있는 옵션입니다.
handler (이벤트: App DistributionEvent<InAppFeedbackPayload>) => 모두 | 약속<any> 새 의견을 수신할 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<InAppFeedbackPayload>>

내보내고 배포할 수 있는 함수입니다.

alert.appDistributeion.onNewTesterIosDevicePublished()

새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onNewTesterIosDevicePublished(handler: (event: AppDistributionEvent<NewTesterDevicePayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<NewTesterDevicePayload>>;

매개변수

매개변수 유형 설명
handler (이벤트: App DistributionEvent<NewTesterDevicePayload>) => 모두 | 약속<any> 새 테스터 iOS 기기가 추가될 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<NewTesterDevicePayload>>

내보내고 배포할 수 있는 함수입니다.

alert.appDistributeion.onNewTesterIosDevicePublished()

새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onNewTesterIosDevicePublished(appId: string, handler: (event: AppDistributionEvent<NewTesterDevicePayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<NewTesterDevicePayload>>;

매개변수

매개변수 유형 설명
appId 문자열 핸들러가 트리거할 특정 애플리케이션.
handler (이벤트: App DistributionEvent<NewTesterDevicePayload>) => 모두 | 약속<any> 새 테스터 iOS 기기가 추가될 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<NewTesterDevicePayload>>

내보내고 배포할 수 있는 함수입니다.

alert.appDistributeion.onNewTesterIosDevicePublished()

새 테스터 iOS 기기 추가를 처리할 수 있는 함수를 선언합니다.

서명:

export declare function onNewTesterIosDevicePublished(opts: AppDistributionOptions, handler: (event: AppDistributionEvent<NewTesterDevicePayload>) => any | Promise<any>): CloudFunction<AppDistributionEvent<NewTesterDevicePayload>>;

매개변수

매개변수 유형 설명
최적화 AppDeployionOptions 함수에 설정할 수 있는 옵션입니다.
handler (이벤트: App DistributionEvent<NewTesterDevicePayload>) => 모두 | 약속<any> 새 테스터 iOS 기기가 추가될 때마다 실행되는 이벤트 핸들러입니다.

반환:

CloudFunction<App DistributionEvent<NewTesterDevicePayload>>

내보내고 배포할 수 있는 함수입니다.