fix. gnb 작업 1차

This commit is contained in:
clkim
2025-10-02 17:34:41 +09:00
parent a70b3c8795
commit 1da6227c46
18 changed files with 413 additions and 448 deletions

48
layers/types/Stove.ts Normal file
View File

@@ -0,0 +1,48 @@
/**
* Stove 81 Plug 타입 정의
*/
export interface IdentityInfo {
app_id: string
log_source_type: string
country: string
locale: string
lang_cd: string
member_no: string
channeling_cd: string
}
export interface ClickItem {
game_no: string
}
export interface ActionParam {
click_area?: string
click_sarea?: string
click_item?: ClickItem
view_area?: string
view_type?: string
view_info?: {
game_no: string
lang_cd: string
}
}
export interface MarketingInfo {
marketing_code: string
device_type: string
media_type: string
media_page: string
}
export interface ActionInfo {
action_type: string
action_param: ActionParam
marketing_info?: MarketingInfo
}
/**
* Stove JS Service 타입 정의
*/
export interface StoveJsService {
launcher?: any
}