- 안드로이드 알림 설정 AppBridge 추가
- KeyIn Request 필드 수정
This commit is contained in:
@@ -74,7 +74,11 @@ export enum BridgeMessageType {
|
||||
OPEN_APP_SETTINGS = 'openAppSettings',
|
||||
|
||||
// 로그인 방식 설정
|
||||
GET_LOGIN_TYPE = 'getLoginType'
|
||||
GET_LOGIN_TYPE = 'getLoginType',
|
||||
|
||||
// 알림 수신 설정 (Android only)
|
||||
GET_NOTIFICATION_SETTING = 'getNotificationSetting',
|
||||
SET_NOTIFICATION_SETTING = 'setNotificationSetting'
|
||||
}
|
||||
|
||||
export interface DeviceInfo {
|
||||
@@ -103,4 +107,11 @@ export interface ShareContent {
|
||||
text: string;
|
||||
url?: string;
|
||||
image?: string;
|
||||
}
|
||||
|
||||
export interface NotificationSettingResponse {
|
||||
success: boolean;
|
||||
enabled: boolean;
|
||||
needsPermission?: boolean;
|
||||
message?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user