@adstage/react-native-sdk 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +327 -0
- package/adstage-react-native.podspec +24 -0
- package/android/build.gradle +66 -0
- package/android/src/main/AndroidManifest.xml +4 -0
- package/android/src/main/java/io/nbase/adstage/reactnative/AdStageModule.kt +701 -0
- package/android/src/main/java/io/nbase/adstage/reactnative/AdStagePackage.kt +24 -0
- package/ios/AdStageModule.m +70 -0
- package/ios/AdStageModule.swift +457 -0
- package/lib/commonjs/AdStage.js +213 -0
- package/lib/commonjs/AdStage.js.map +1 -0
- package/lib/commonjs/deeplink/AdStageDeepLink.js +235 -0
- package/lib/commonjs/deeplink/AdStageDeepLink.js.map +1 -0
- package/lib/commonjs/event/AdStageEvent.js +689 -0
- package/lib/commonjs/event/AdStageEvent.js.map +1 -0
- package/lib/commonjs/index.js +34 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/promotion/AdStagePromotion.js +158 -0
- package/lib/commonjs/promotion/AdStagePromotion.js.map +1 -0
- package/lib/commonjs/types.js +2 -0
- package/lib/commonjs/types.js.map +1 -0
- package/lib/module/AdStage.js +206 -0
- package/lib/module/AdStage.js.map +1 -0
- package/lib/module/deeplink/AdStageDeepLink.js +228 -0
- package/lib/module/deeplink/AdStageDeepLink.js.map +1 -0
- package/lib/module/event/AdStageEvent.js +682 -0
- package/lib/module/event/AdStageEvent.js.map +1 -0
- package/lib/module/index.js +15 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/promotion/AdStagePromotion.js +151 -0
- package/lib/module/promotion/AdStagePromotion.js.map +1 -0
- package/lib/module/types.js +2 -0
- package/lib/module/types.js.map +1 -0
- package/lib/typescript/src/AdStage.d.ts +124 -0
- package/lib/typescript/src/AdStage.d.ts.map +1 -0
- package/lib/typescript/src/deeplink/AdStageDeepLink.d.ts +154 -0
- package/lib/typescript/src/deeplink/AdStageDeepLink.d.ts.map +1 -0
- package/lib/typescript/src/event/AdStageEvent.d.ts +426 -0
- package/lib/typescript/src/event/AdStageEvent.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +13 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/promotion/AdStagePromotion.d.ts +98 -0
- package/lib/typescript/src/promotion/AdStagePromotion.d.ts.map +1 -0
- package/lib/typescript/src/types.d.ts +305 -0
- package/lib/typescript/src/types.d.ts.map +1 -0
- package/package.json +105 -0
- package/src/AdStage.ts +212 -0
- package/src/deeplink/AdStageDeepLink.ts +246 -0
- package/src/event/AdStageEvent.ts +844 -0
- package/src/index.ts +48 -0
- package/src/promotion/AdStagePromotion.ts +162 -0
- package/src/types.ts +392 -0
|
@@ -0,0 +1,426 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AdStage Event 모듈
|
|
3
|
+
*
|
|
4
|
+
* 이벤트 트래킹을 담당합니다.
|
|
5
|
+
* Android AdStageEvent, iOS AdStageEventProtocol, Unity AdStageEvent와 동일한 표준 이벤트를 제공합니다.
|
|
6
|
+
*
|
|
7
|
+
* @since 3.0.0
|
|
8
|
+
*/
|
|
9
|
+
import type { TrackEventParams, TrackEventResult, SignUpMethod, PaymentMethod, EcommerceItem, AdPlatform, AdFormat, GameServerInfo, PatchInfo, StockTransactionInfo, AccountOpenInfo, CardApplicationInfo } from '../types';
|
|
10
|
+
/**
|
|
11
|
+
* AdStage Event 클래스
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```typescript
|
|
15
|
+
* // 커스텀 이벤트
|
|
16
|
+
* await AdStage.event.track('button_click', { buttonId: 'cta_1' });
|
|
17
|
+
*
|
|
18
|
+
* // 표준 이벤트
|
|
19
|
+
* await AdStage.event.trackPurchase({
|
|
20
|
+
* value: 29.99,
|
|
21
|
+
* currency: 'USD',
|
|
22
|
+
* transactionId: 'TX_123'
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class AdStageEvent {
|
|
27
|
+
/**
|
|
28
|
+
* 커스텀 이벤트 전송
|
|
29
|
+
*
|
|
30
|
+
* @param eventName - 이벤트 이름
|
|
31
|
+
* @param params - 이벤트 파라미터 (자유 형식)
|
|
32
|
+
* @returns 전송 결과
|
|
33
|
+
*
|
|
34
|
+
* @example
|
|
35
|
+
* ```typescript
|
|
36
|
+
* await AdStage.event.track('button_click', {
|
|
37
|
+
* buttonId: 'cta_purchase',
|
|
38
|
+
* screenName: 'product_detail'
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*/
|
|
42
|
+
static track(eventName: string, params?: TrackEventParams): Promise<TrackEventResult>;
|
|
43
|
+
/**
|
|
44
|
+
* 클릭 이벤트
|
|
45
|
+
*/
|
|
46
|
+
static trackClick(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
47
|
+
/**
|
|
48
|
+
* 뷰/노출 이벤트
|
|
49
|
+
*/
|
|
50
|
+
static trackView(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
51
|
+
/**
|
|
52
|
+
* 설치 이벤트 (일반적으로 SDK가 자동 전송)
|
|
53
|
+
*/
|
|
54
|
+
static trackInstall(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
55
|
+
/**
|
|
56
|
+
* 회원가입 완료 이벤트
|
|
57
|
+
*
|
|
58
|
+
* @param method - 가입 방법
|
|
59
|
+
*
|
|
60
|
+
* @example
|
|
61
|
+
* ```typescript
|
|
62
|
+
* await AdStage.event.trackSignUp('google');
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
static trackSignUp(method?: SignUpMethod): Promise<TrackEventResult>;
|
|
66
|
+
/**
|
|
67
|
+
* 회원가입 시작 이벤트
|
|
68
|
+
*/
|
|
69
|
+
static trackSignUpStart(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
70
|
+
/**
|
|
71
|
+
* 로그인 이벤트
|
|
72
|
+
*
|
|
73
|
+
* @param method - 로그인 방법
|
|
74
|
+
*/
|
|
75
|
+
static trackLogin(method?: SignUpMethod): Promise<TrackEventResult>;
|
|
76
|
+
/**
|
|
77
|
+
* 로그아웃 이벤트
|
|
78
|
+
*/
|
|
79
|
+
static trackLogout(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
80
|
+
/**
|
|
81
|
+
* 홈 화면 조회 이벤트
|
|
82
|
+
*/
|
|
83
|
+
static trackHomeView(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
84
|
+
/**
|
|
85
|
+
* 상품 목록 조회 이벤트
|
|
86
|
+
*
|
|
87
|
+
* @param itemCategory - 상품 카테고리
|
|
88
|
+
*/
|
|
89
|
+
static trackProductListView(itemCategory?: string): Promise<TrackEventResult>;
|
|
90
|
+
/**
|
|
91
|
+
* 검색 결과 조회 이벤트
|
|
92
|
+
*
|
|
93
|
+
* @param searchTerm - 검색어
|
|
94
|
+
*/
|
|
95
|
+
static trackSearchResultView(searchTerm?: string): Promise<TrackEventResult>;
|
|
96
|
+
/**
|
|
97
|
+
* 상품 상세 조회 이벤트
|
|
98
|
+
*/
|
|
99
|
+
static trackProductDetailsView(options?: {
|
|
100
|
+
itemId?: string;
|
|
101
|
+
itemName?: string;
|
|
102
|
+
}): Promise<TrackEventResult>;
|
|
103
|
+
/**
|
|
104
|
+
* 화면 조회 이벤트
|
|
105
|
+
*/
|
|
106
|
+
static trackScreenView(options?: {
|
|
107
|
+
screenName?: string;
|
|
108
|
+
screenClass?: string;
|
|
109
|
+
}): Promise<TrackEventResult>;
|
|
110
|
+
/**
|
|
111
|
+
* 장바구니 추가 이벤트
|
|
112
|
+
*/
|
|
113
|
+
static trackAddToCart(options: {
|
|
114
|
+
items: EcommerceItem[];
|
|
115
|
+
value?: number;
|
|
116
|
+
currency?: string;
|
|
117
|
+
}): Promise<TrackEventResult>;
|
|
118
|
+
/**
|
|
119
|
+
* 장바구니 제거 이벤트
|
|
120
|
+
*/
|
|
121
|
+
static trackRemoveFromCart(options: {
|
|
122
|
+
items: EcommerceItem[];
|
|
123
|
+
value?: number;
|
|
124
|
+
currency?: string;
|
|
125
|
+
}): Promise<TrackEventResult>;
|
|
126
|
+
/**
|
|
127
|
+
* 결제 시작 이벤트
|
|
128
|
+
*/
|
|
129
|
+
static trackBeginCheckout(options?: {
|
|
130
|
+
items?: EcommerceItem[];
|
|
131
|
+
value?: number;
|
|
132
|
+
currency?: string;
|
|
133
|
+
coupon?: string;
|
|
134
|
+
}): Promise<TrackEventResult>;
|
|
135
|
+
/**
|
|
136
|
+
* 결제 정보 추가 이벤트
|
|
137
|
+
*/
|
|
138
|
+
static trackAddPaymentInfo(options?: {
|
|
139
|
+
paymentMethod?: PaymentMethod;
|
|
140
|
+
}): Promise<TrackEventResult>;
|
|
141
|
+
/**
|
|
142
|
+
* 구매 완료 이벤트
|
|
143
|
+
*
|
|
144
|
+
* @example
|
|
145
|
+
* ```typescript
|
|
146
|
+
* await AdStage.event.trackPurchase({
|
|
147
|
+
* value: 99000,
|
|
148
|
+
* currency: 'KRW',
|
|
149
|
+
* transactionId: 'TX_123456',
|
|
150
|
+
* items: [
|
|
151
|
+
* { itemId: 'SKU_001', itemName: '상품명', price: 99000, quantity: 1 }
|
|
152
|
+
* ]
|
|
153
|
+
* });
|
|
154
|
+
* ```
|
|
155
|
+
*/
|
|
156
|
+
static trackPurchase(options: {
|
|
157
|
+
value: number;
|
|
158
|
+
currency: string;
|
|
159
|
+
transactionId?: string;
|
|
160
|
+
items?: EcommerceItem[];
|
|
161
|
+
paymentMethod?: PaymentMethod;
|
|
162
|
+
coupon?: string;
|
|
163
|
+
shipping?: number;
|
|
164
|
+
tax?: number;
|
|
165
|
+
}): Promise<TrackEventResult>;
|
|
166
|
+
/**
|
|
167
|
+
* 환불 이벤트
|
|
168
|
+
*/
|
|
169
|
+
static trackRefund(options: {
|
|
170
|
+
transactionId: string;
|
|
171
|
+
value?: number;
|
|
172
|
+
currency?: string;
|
|
173
|
+
items?: EcommerceItem[];
|
|
174
|
+
}): Promise<TrackEventResult>;
|
|
175
|
+
/**
|
|
176
|
+
* 레벨업 이벤트
|
|
177
|
+
*/
|
|
178
|
+
static trackLevelUp(options: {
|
|
179
|
+
level: number;
|
|
180
|
+
character?: string;
|
|
181
|
+
}): Promise<TrackEventResult>;
|
|
182
|
+
/**
|
|
183
|
+
* 튜토리얼 시작 이벤트
|
|
184
|
+
*/
|
|
185
|
+
static trackTutorialBegin(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
186
|
+
/**
|
|
187
|
+
* 튜토리얼 완료 이벤트
|
|
188
|
+
*/
|
|
189
|
+
static trackTutorialComplete(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
190
|
+
/**
|
|
191
|
+
* 업적 달성 이벤트
|
|
192
|
+
*/
|
|
193
|
+
static trackUnlockAchievement(options: {
|
|
194
|
+
achievementId: string;
|
|
195
|
+
achievementName?: string;
|
|
196
|
+
}): Promise<TrackEventResult>;
|
|
197
|
+
/**
|
|
198
|
+
* 스테이지 클리어 이벤트
|
|
199
|
+
*/
|
|
200
|
+
static trackStageClear(options: {
|
|
201
|
+
stageName: string;
|
|
202
|
+
stageNumber?: number;
|
|
203
|
+
score?: number;
|
|
204
|
+
duration?: number;
|
|
205
|
+
}): Promise<TrackEventResult>;
|
|
206
|
+
/**
|
|
207
|
+
* 가상화폐 획득 이벤트
|
|
208
|
+
*/
|
|
209
|
+
static trackEarnVirtualCurrency(options: {
|
|
210
|
+
virtualCurrencyName: string;
|
|
211
|
+
value: number;
|
|
212
|
+
}): Promise<TrackEventResult>;
|
|
213
|
+
/**
|
|
214
|
+
* 가상화폐 사용 이벤트
|
|
215
|
+
*/
|
|
216
|
+
static trackSpendVirtualCurrency(options: {
|
|
217
|
+
virtualCurrencyName: string;
|
|
218
|
+
value: number;
|
|
219
|
+
itemName?: string;
|
|
220
|
+
}): Promise<TrackEventResult>;
|
|
221
|
+
/**
|
|
222
|
+
* 공유 이벤트
|
|
223
|
+
*/
|
|
224
|
+
static trackShare(options: {
|
|
225
|
+
method: string;
|
|
226
|
+
contentType?: string;
|
|
227
|
+
itemId?: string;
|
|
228
|
+
}): Promise<TrackEventResult>;
|
|
229
|
+
/**
|
|
230
|
+
* 앱 평가 이벤트
|
|
231
|
+
*/
|
|
232
|
+
static trackRate(options: {
|
|
233
|
+
rating: number;
|
|
234
|
+
maxRating?: number;
|
|
235
|
+
}): Promise<TrackEventResult>;
|
|
236
|
+
/**
|
|
237
|
+
* 구독 시작 이벤트
|
|
238
|
+
*/
|
|
239
|
+
static trackSubscribe(options: {
|
|
240
|
+
subscriptionId: string;
|
|
241
|
+
value?: number;
|
|
242
|
+
currency?: string;
|
|
243
|
+
period?: string;
|
|
244
|
+
}): Promise<TrackEventResult>;
|
|
245
|
+
/**
|
|
246
|
+
* 푸시 알림 클릭 이벤트
|
|
247
|
+
*/
|
|
248
|
+
static trackNotificationClick(options?: {
|
|
249
|
+
notificationId?: string;
|
|
250
|
+
title?: string;
|
|
251
|
+
body?: string;
|
|
252
|
+
}): Promise<TrackEventResult>;
|
|
253
|
+
/**
|
|
254
|
+
* 앱 최초 실행 이벤트 (Unity: FirstOpenEvent)
|
|
255
|
+
*/
|
|
256
|
+
static trackFirstOpen(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
257
|
+
/**
|
|
258
|
+
* 페이지 조회 이벤트 (Unity: PageViewEvent) - 웹뷰용
|
|
259
|
+
*/
|
|
260
|
+
static trackPageView(options?: {
|
|
261
|
+
pageUrl?: string;
|
|
262
|
+
pageTitle?: string;
|
|
263
|
+
pagePath?: string;
|
|
264
|
+
referrer?: string;
|
|
265
|
+
}): Promise<TrackEventResult>;
|
|
266
|
+
/**
|
|
267
|
+
* 위시리스트 추가 이벤트 (Unity: AddToWishlistEvent)
|
|
268
|
+
*/
|
|
269
|
+
static trackAddToWishlist(options?: {
|
|
270
|
+
itemId?: string;
|
|
271
|
+
itemName?: string;
|
|
272
|
+
value?: number;
|
|
273
|
+
currency?: string;
|
|
274
|
+
}): Promise<TrackEventResult>;
|
|
275
|
+
/**
|
|
276
|
+
* 체험판 시작 이벤트 (Unity: StartTrialEvent)
|
|
277
|
+
*
|
|
278
|
+
* @example
|
|
279
|
+
* ```typescript
|
|
280
|
+
* await AdStage.event.trackStartTrial({
|
|
281
|
+
* value: 9900.0,
|
|
282
|
+
* currency: 'KRW',
|
|
283
|
+
* trialDays: 14
|
|
284
|
+
* });
|
|
285
|
+
* ```
|
|
286
|
+
*/
|
|
287
|
+
static trackStartTrial(options?: {
|
|
288
|
+
value?: number;
|
|
289
|
+
currency?: string;
|
|
290
|
+
trialDays?: number;
|
|
291
|
+
}): Promise<TrackEventResult>;
|
|
292
|
+
/**
|
|
293
|
+
* 구독 해지 이벤트 (Unity: UnsubscribeEvent)
|
|
294
|
+
*/
|
|
295
|
+
static trackUnsubscribe(subscriptionId: string): Promise<TrackEventResult>;
|
|
296
|
+
/**
|
|
297
|
+
* 인앱 광고 노출 이벤트 (Unity: AdImpressionEvent)
|
|
298
|
+
*/
|
|
299
|
+
static trackAdImpression(options?: {
|
|
300
|
+
adPlatform?: AdPlatform | string;
|
|
301
|
+
adSource?: string;
|
|
302
|
+
adFormat?: AdFormat | string;
|
|
303
|
+
adUnitName?: string;
|
|
304
|
+
value?: number;
|
|
305
|
+
currency?: string;
|
|
306
|
+
}): Promise<TrackEventResult>;
|
|
307
|
+
/**
|
|
308
|
+
* 인앱 광고 클릭 이벤트 (Unity: AdClickEvent)
|
|
309
|
+
*/
|
|
310
|
+
static trackAdClick(options?: {
|
|
311
|
+
adPlatform?: AdPlatform | string;
|
|
312
|
+
adSource?: string;
|
|
313
|
+
adFormat?: AdFormat | string;
|
|
314
|
+
adUnitName?: string;
|
|
315
|
+
}): Promise<TrackEventResult>;
|
|
316
|
+
/**
|
|
317
|
+
* 게임 플레이 이벤트 (Unity: GamePlayEvent)
|
|
318
|
+
*
|
|
319
|
+
* @example
|
|
320
|
+
* ```typescript
|
|
321
|
+
* await AdStage.event.trackGamePlay({
|
|
322
|
+
* level: 10,
|
|
323
|
+
* levelName: "Dragon's Lair",
|
|
324
|
+
* character: 'mage',
|
|
325
|
+
* contentType: 'dungeon'
|
|
326
|
+
* });
|
|
327
|
+
* ```
|
|
328
|
+
*/
|
|
329
|
+
static trackGamePlay(options?: {
|
|
330
|
+
level?: number;
|
|
331
|
+
levelName?: string;
|
|
332
|
+
character?: string;
|
|
333
|
+
contentType?: string;
|
|
334
|
+
}): Promise<TrackEventResult>;
|
|
335
|
+
/**
|
|
336
|
+
* 보너스 획득 이벤트 (Unity: AcquireBonusEvent)
|
|
337
|
+
*
|
|
338
|
+
* @example
|
|
339
|
+
* ```typescript
|
|
340
|
+
* await AdStage.event.trackAcquireBonus({
|
|
341
|
+
* contentType: 'reward',
|
|
342
|
+
* itemId: 'ITEM_123',
|
|
343
|
+
* itemName: 'Gold Chest',
|
|
344
|
+
* quantity: 1
|
|
345
|
+
* });
|
|
346
|
+
* ```
|
|
347
|
+
*/
|
|
348
|
+
static trackAcquireBonus(options?: {
|
|
349
|
+
contentType?: string;
|
|
350
|
+
itemId?: string;
|
|
351
|
+
itemName?: string;
|
|
352
|
+
quantity?: number;
|
|
353
|
+
}): Promise<TrackEventResult>;
|
|
354
|
+
/**
|
|
355
|
+
* 게임 서버 선택 이벤트 (Unity: SelectGameServerEvent)
|
|
356
|
+
*
|
|
357
|
+
* @example
|
|
358
|
+
* ```typescript
|
|
359
|
+
* await AdStage.event.trackSelectGameServer({
|
|
360
|
+
* contentId: 'SERVER_01',
|
|
361
|
+
* contentType: 'pvp',
|
|
362
|
+
* itemName: 'Asia Server'
|
|
363
|
+
* });
|
|
364
|
+
* ```
|
|
365
|
+
*/
|
|
366
|
+
static trackSelectGameServer(serverInfo: GameServerInfo): Promise<TrackEventResult>;
|
|
367
|
+
/**
|
|
368
|
+
* 패치 완료 이벤트 (Unity: CompletePatchEvent)
|
|
369
|
+
*
|
|
370
|
+
* @example
|
|
371
|
+
* ```typescript
|
|
372
|
+
* await AdStage.event.trackCompletePatch({
|
|
373
|
+
* contentId: 'PATCH_2.1.0',
|
|
374
|
+
* contentType: 'update'
|
|
375
|
+
* });
|
|
376
|
+
* ```
|
|
377
|
+
*/
|
|
378
|
+
static trackCompletePatch(patchInfo: PatchInfo): Promise<TrackEventResult>;
|
|
379
|
+
/**
|
|
380
|
+
* 검색 이벤트 (Unity: SearchEvent)
|
|
381
|
+
*/
|
|
382
|
+
static trackSearch(searchTerm?: string): Promise<TrackEventResult>;
|
|
383
|
+
/**
|
|
384
|
+
* 콘텐츠 선택 이벤트 (Unity: SelectContentEvent)
|
|
385
|
+
*/
|
|
386
|
+
static trackSelectContent(options?: {
|
|
387
|
+
contentType?: string;
|
|
388
|
+
contentId?: string;
|
|
389
|
+
}): Promise<TrackEventResult>;
|
|
390
|
+
/**
|
|
391
|
+
* 좋아요 이벤트 (Unity: LikeEvent)
|
|
392
|
+
*/
|
|
393
|
+
static trackLike(options?: {
|
|
394
|
+
contentType?: string;
|
|
395
|
+
contentId?: string;
|
|
396
|
+
}): Promise<TrackEventResult>;
|
|
397
|
+
/**
|
|
398
|
+
* 일정 등록 이벤트 (Unity: ScheduleEvent)
|
|
399
|
+
*/
|
|
400
|
+
static trackSchedule(params?: TrackEventParams): Promise<TrackEventResult>;
|
|
401
|
+
/**
|
|
402
|
+
* 크레딧 사용 이벤트 (Unity: SpendCreditsEvent)
|
|
403
|
+
*/
|
|
404
|
+
static trackSpendCredits(options?: {
|
|
405
|
+
value?: number;
|
|
406
|
+
contentType?: string;
|
|
407
|
+
contentId?: string;
|
|
408
|
+
}): Promise<TrackEventResult>;
|
|
409
|
+
/**
|
|
410
|
+
* 주식 매도 이벤트 (Unity: SellStockEvent)
|
|
411
|
+
*/
|
|
412
|
+
static trackSellStock(transaction: StockTransactionInfo): Promise<TrackEventResult>;
|
|
413
|
+
/**
|
|
414
|
+
* 주식 매수 이벤트 (Unity: BuyStockEvent)
|
|
415
|
+
*/
|
|
416
|
+
static trackBuyStock(transaction: StockTransactionInfo): Promise<TrackEventResult>;
|
|
417
|
+
/**
|
|
418
|
+
* 계좌 개설 완료 이벤트 (Unity: CompleteOpenAccountEvent)
|
|
419
|
+
*/
|
|
420
|
+
static trackCompleteOpenAccount(accountInfo: AccountOpenInfo): Promise<TrackEventResult>;
|
|
421
|
+
/**
|
|
422
|
+
* 카드 신청 이벤트 (Unity: ApplyCardEvent)
|
|
423
|
+
*/
|
|
424
|
+
static trackApplyCard(cardInfo: CardApplicationInfo): Promise<TrackEventResult>;
|
|
425
|
+
}
|
|
426
|
+
//# sourceMappingURL=AdStageEvent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdStageEvent.d.ts","sourceRoot":"","sources":["../../../../src/event/AdStageEvent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AdStage React Native SDK
|
|
3
|
+
*
|
|
4
|
+
* 광고 어트리뷰션, 딥링크, 프로모션을 위한 통합 SDK
|
|
5
|
+
*
|
|
6
|
+
* @since 3.0.0
|
|
7
|
+
*/
|
|
8
|
+
export { AdStage } from './AdStage';
|
|
9
|
+
export { AdStageDeepLink } from './deeplink/AdStageDeepLink';
|
|
10
|
+
export { AdStagePromotion } from './promotion/AdStagePromotion';
|
|
11
|
+
export { AdStageEvent } from './event/AdStageEvent';
|
|
12
|
+
export type { AdStageConfig, DeepLinkData, DeepLinkSource, DeepLinkListener, CreateDeepLinkRequest, CreateDeepLinkResponse, RedirectConfig, PlatformConfig, PromotionListParams, PromotionListResponse, Promotion, PromotionDeepLink, PromotionClickResult, TrackEventParams, TrackEventResult, UserAttributes, SignUpMethod, PaymentMethod, EcommerceItem, AdPlatform, AdFormat, GameServerInfo, PatchInfo, StockTransactionInfo, AccountOpenInfo, CardApplicationInfo, } from './types';
|
|
13
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AAChE,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AAGpD,YAAY,EAEV,aAAa,EAEb,YAAY,EACZ,cAAc,EACd,gBAAgB,EAChB,qBAAqB,EACrB,sBAAsB,EACtB,cAAc,EACd,cAAc,EAEd,mBAAmB,EACnB,qBAAqB,EACrB,SAAS,EACT,iBAAiB,EACjB,oBAAoB,EAEpB,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EAEd,YAAY,EACZ,aAAa,EACb,aAAa,EAEb,UAAU,EACV,QAAQ,EACR,cAAc,EACd,SAAS,EACT,oBAAoB,EACpB,eAAe,EACf,mBAAmB,GACpB,MAAM,SAAS,CAAC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* AdStage Promotion 모듈
|
|
3
|
+
*
|
|
4
|
+
* 프로모션 조회, 표시, 클릭 처리를 담당합니다.
|
|
5
|
+
* Android/iOS PromotionHandler, PromotionManager와 동일한 API를 제공합니다.
|
|
6
|
+
*
|
|
7
|
+
* @since 3.0.0
|
|
8
|
+
*/
|
|
9
|
+
import type { PromotionListParams, PromotionListResponse, Promotion, PromotionClickResult } from '../types';
|
|
10
|
+
/**
|
|
11
|
+
* AdStage Promotion 클래스
|
|
12
|
+
*
|
|
13
|
+
* @example
|
|
14
|
+
* ```typescript
|
|
15
|
+
* // 프로모션 목록 조회
|
|
16
|
+
* const response = await AdStage.promotion.getList({
|
|
17
|
+
* bannerType: 'NATIVE',
|
|
18
|
+
* region: 'KR',
|
|
19
|
+
* limit: 10
|
|
20
|
+
* });
|
|
21
|
+
*
|
|
22
|
+
* // 프로모션 클릭 처리
|
|
23
|
+
* const result = await AdStage.promotion.handleClick(response.promotions[0]);
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
26
|
+
export declare class AdStagePromotion {
|
|
27
|
+
/**
|
|
28
|
+
* 프로모션 목록 조회
|
|
29
|
+
*
|
|
30
|
+
* @param params - 조회 파라미터
|
|
31
|
+
* @returns 프로모션 목록 응답
|
|
32
|
+
*
|
|
33
|
+
* @example
|
|
34
|
+
* ```typescript
|
|
35
|
+
* const response = await AdStage.promotion.getList({
|
|
36
|
+
* bannerType: 'NATIVE', // NATIVE, INTERSTITIAL, REWARDED_VIDEO, POPUP
|
|
37
|
+
* region: 'KR', // KR, JP, US, SEA, EU, GLOBAL
|
|
38
|
+
* deviceType: 'HIGH_END', // LOW_END, MID_END, HIGH_END
|
|
39
|
+
* limit: 10,
|
|
40
|
+
* status: 'ACTIVE',
|
|
41
|
+
* partner: 'game_company',
|
|
42
|
+
* primaryInterest: 'GAMES',
|
|
43
|
+
* primaryAgeGroup: '18-24',
|
|
44
|
+
* gameGenrePreference: 'RPG',
|
|
45
|
+
* playerSpendingTier: 'DOLPHIN', // F2P, DOLPHIN, WHALE
|
|
46
|
+
* playTimePattern: 'EVENING'
|
|
47
|
+
* });
|
|
48
|
+
*
|
|
49
|
+
* console.log('Total:', response.totalItems);
|
|
50
|
+
* response.promotions.forEach(promo => {
|
|
51
|
+
* console.log(`${promo.appName}: ${promo.bannerUrl}`);
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*/
|
|
55
|
+
static getList(params?: PromotionListParams): Promise<PromotionListResponse>;
|
|
56
|
+
/**
|
|
57
|
+
* 프로모션 클릭 처리
|
|
58
|
+
*
|
|
59
|
+
* 클릭 이벤트를 서버에 전송하고 스토어를 엽니다.
|
|
60
|
+
*
|
|
61
|
+
* @param promotion - 클릭할 프로모션
|
|
62
|
+
* @returns 클릭 처리 결과
|
|
63
|
+
*
|
|
64
|
+
* @example
|
|
65
|
+
* ```typescript
|
|
66
|
+
* const result = await AdStage.promotion.handleClick(promotion);
|
|
67
|
+
*
|
|
68
|
+
* if (result.success) {
|
|
69
|
+
* console.log('스토어로 이동:', result.storeUrl);
|
|
70
|
+
* } else {
|
|
71
|
+
* console.error('클릭 처리 실패:', result.error);
|
|
72
|
+
* }
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
static handleClick(promotion: Promotion): Promise<PromotionClickResult>;
|
|
76
|
+
/**
|
|
77
|
+
* 프로모션 노출 이벤트 전송
|
|
78
|
+
*
|
|
79
|
+
* 프로모션이 화면에 표시될 때 호출합니다.
|
|
80
|
+
*
|
|
81
|
+
* @param promotion - 노출된 프로모션
|
|
82
|
+
*
|
|
83
|
+
* @example
|
|
84
|
+
* ```typescript
|
|
85
|
+
* // 프로모션 배너가 화면에 보일 때
|
|
86
|
+
* AdStage.promotion.trackImpression(promotion);
|
|
87
|
+
* ```
|
|
88
|
+
*/
|
|
89
|
+
static trackImpression(promotion: Promotion): Promise<void>;
|
|
90
|
+
/**
|
|
91
|
+
* 플랫폼에 맞는 스토어 URL 추출
|
|
92
|
+
*
|
|
93
|
+
* @param promotion - 프로모션
|
|
94
|
+
* @returns 스토어 URL 또는 null
|
|
95
|
+
*/
|
|
96
|
+
static getStoreUrl(promotion: Promotion): string | null;
|
|
97
|
+
}
|
|
98
|
+
//# sourceMappingURL=AdStagePromotion.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AdStagePromotion.d.ts","sourceRoot":"","sources":["../../../../src/promotion/AdStagePromotion.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,KAAK,EACV,mBAAmB,EACnB,qBAAqB,EACrB,SAAS,EACT,oBAAoB,EACrB,MAAM,UAAU,CAAC;AAIlB;;;;;;;;;;;;;;;GAeG;AACH,qBAAa,gBAAgB;IAK3B;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2BG;WACU,OAAO,CAClB,MAAM,GAAE,mBAAwB,GAC/B,OAAO,CAAC,qBAAqB,CAAC;IAiBjC;;;;;;;;;;;;;;;;;;OAkBG;WACU,WAAW,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAoB7E;;;;;;;;;;;;OAYG;WACU,eAAe,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC;IAWjE;;;;;OAKG;IACH,MAAM,CAAC,WAAW,CAAC,SAAS,EAAE,SAAS,GAAG,MAAM,GAAG,IAAI;CAKxD"}
|