@apps-in-toss/framework 0.0.23 → 0.0.24
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/dist/index.cjs +593 -483
- package/dist/index.d.cts +41 -26
- package/dist/index.d.ts +41 -26
- package/dist/index.js +557 -448
- package/package.json +9 -8
package/dist/index.d.cts
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
1
2
|
import { ComponentType, PropsWithChildren } from 'react';
|
|
3
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
+
import * as _apps_in_toss_analytics from '@apps-in-toss/analytics';
|
|
5
|
+
export * from '@apps-in-toss/analytics';
|
|
2
6
|
import { InitialProps, BedrockProps, BedrockEventDefinition, BedrockEvent } from 'react-native-bedrock';
|
|
3
7
|
import { EmitterSubscription } from 'react-native';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
8
|
import { PartnerWebViewScreenProps, ExternalWebViewScreenProps } from '@toss-design-system/react-native';
|
|
6
9
|
import { WebViewProps as WebViewProps$1 } from '@react-native-bedrock/native/react-native-webview';
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
interface AppsInTossProps {
|
|
12
|
+
context: BedrockProps['context'];
|
|
13
|
+
analytics?: {
|
|
14
|
+
/**
|
|
15
|
+
* 분석 로그 출력 여부를 설정해요. 기본값은 `__DEV__` 예요.
|
|
16
|
+
*/
|
|
17
|
+
debug?: boolean;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
declare function registerApp(container: ComponentType<PropsWithChildren<InitialProps>>, { context, analytics }: AppsInTossProps): (initialProps: InitialProps) => JSX.Element;
|
|
10
21
|
|
|
11
22
|
declare const AppsInToss: {
|
|
12
23
|
registerApp: typeof registerApp;
|
|
@@ -457,7 +468,7 @@ type ShowAdMobInterstitialAdParams = AdMobHandlerParams<ShowAdMobInterstitialAdO
|
|
|
457
468
|
* ### 버튼 눌러 불러온 전면 광고 보여주기
|
|
458
469
|
* ```tsx
|
|
459
470
|
* import { GoogleAdMob } from '@apps-in-toss/framework';
|
|
460
|
-
* import { View,
|
|
471
|
+
* import { View, Button } from 'react-native';
|
|
461
472
|
*
|
|
462
473
|
* const AD_UNIT_ID = '<YOUR_AD_UNIT_ID>';
|
|
463
474
|
*
|
|
@@ -485,9 +496,7 @@ type ShowAdMobInterstitialAdParams = AdMobHandlerParams<ShowAdMobInterstitialAdO
|
|
|
485
496
|
* }
|
|
486
497
|
*
|
|
487
498
|
* return (
|
|
488
|
-
* <Button onPress={handlePress}
|
|
489
|
-
* <Text>광고 보기</Text>
|
|
490
|
-
* </Button>
|
|
499
|
+
* <Button onPress={handlePress} title="광고 보기" />
|
|
491
500
|
* );
|
|
492
501
|
* }
|
|
493
502
|
* ```
|
|
@@ -669,9 +678,7 @@ type ShowAdMobRewardedAdParams = AdMobHandlerParams<ShowAdMobRewardedAdOptions,
|
|
|
669
678
|
* }
|
|
670
679
|
*
|
|
671
680
|
* return (
|
|
672
|
-
* <Button onPress={handlePress}
|
|
673
|
-
* <Text>광고 보기</Text>
|
|
674
|
-
* </Button>
|
|
681
|
+
* <Button onPress={handlePress} title="광고 보기" />
|
|
675
682
|
* );
|
|
676
683
|
* }
|
|
677
684
|
* ```
|
|
@@ -1318,10 +1325,10 @@ declare function clearItems(): Promise<void>;
|
|
|
1318
1325
|
* @category 저장소
|
|
1319
1326
|
* @name Storage
|
|
1320
1327
|
* @description 네이티브의 저장소를 사용해요.
|
|
1321
|
-
* @property {typeof getItem} [getItem] 모바일 앱의 로컬 저장소에서 아이템을 가져오는 함수예요. 자세한 내용은 [getItem](/react-native/reference/framework/저장소/getItem)을 참고하세요.
|
|
1322
|
-
* @property {typeof setItem} [setItem] 모바일 앱의 로컬 저장소에 아이템을 저장하는 함수예요. 자세한 내용은 [setItem](/react-native/reference/framework/저장소/setItem)을
|
|
1323
|
-
* @property {typeof removeItem} [removeItem] 모바일 앱의 로컬 저장소에서 아이템을 삭제하는 함수예요. 자세한 내용은 [removeItem](/react-native/reference/framework/저장소/removeItem)을 참고하세요.
|
|
1324
|
-
* @property {typeof clearItems} [clearItems] 모바일 앱의 로컬 저장소를 초기화하는 함수예요. 자세한 내용은 [clearItems](/react-native/reference/framework/저장소/clearItems)을 참고하세요.
|
|
1328
|
+
* @property {typeof getItem} [getItem] 모바일 앱의 로컬 저장소에서 아이템을 가져오는 함수예요. 자세한 내용은 [getItem](/react-native/reference/framework/저장소/getItem.html)을 참고하세요.
|
|
1329
|
+
* @property {typeof setItem} [setItem] 모바일 앱의 로컬 저장소에 아이템을 저장하는 함수예요. 자세한 내용은 [setItem](/react-native/reference/framework/저장소/setItem.html)을 참고하셰요.
|
|
1330
|
+
* @property {typeof removeItem} [removeItem] 모바일 앱의 로컬 저장소에서 아이템을 삭제하는 함수예요. 자세한 내용은 [removeItem](/react-native/reference/framework/저장소/removeItem.html)을 참고하세요.
|
|
1331
|
+
* @property {typeof clearItems} [clearItems] 모바일 앱의 로컬 저장소를 초기화하는 함수예요. 자세한 내용은 [clearItems](/react-native/reference/framework/저장소/clearItems.html)을 참고하세요.
|
|
1325
1332
|
*/
|
|
1326
1333
|
declare const Storage: {
|
|
1327
1334
|
getItem: typeof getItem;
|
|
@@ -1375,6 +1382,11 @@ declare function isMinVersionSupported(minVersions: {
|
|
|
1375
1382
|
|
|
1376
1383
|
type Primitive = string | number | boolean | null | undefined | symbol;
|
|
1377
1384
|
|
|
1385
|
+
interface EventLogParams {
|
|
1386
|
+
log_name: string;
|
|
1387
|
+
log_type: 'debug' | 'info' | 'warn' | 'error' | 'screen' | 'impression' | 'click';
|
|
1388
|
+
params: Record<string, Primitive>;
|
|
1389
|
+
}
|
|
1378
1390
|
/**
|
|
1379
1391
|
* @category 로깅
|
|
1380
1392
|
* @kind function
|
|
@@ -1386,7 +1398,7 @@ type Primitive = string | number | boolean | null | undefined | symbol;
|
|
|
1386
1398
|
*
|
|
1387
1399
|
* @param {Object} params 로그 기록에 필요한 매개변수 객체예요.
|
|
1388
1400
|
* @param {string} params.log_name 로그의 이름이에요.
|
|
1389
|
-
* @param {'debug' | 'info' | 'warn' | 'error'} params.log_type 로그의 유형이에요.
|
|
1401
|
+
* @param {'debug' | 'info' | 'warn' | 'error' | 'screen' | 'impression' | 'click'} params.log_type 로그의 유형이에요.
|
|
1390
1402
|
* @param {Record<string, Primitive>} params.params 로그에 포함할 추가 매개변수 객체예요.
|
|
1391
1403
|
*
|
|
1392
1404
|
* @returns {Promise<void>} 로그 기록이 완료되면 해결되는 Promise예요.
|
|
@@ -1410,11 +1422,7 @@ type Primitive = string | number | boolean | null | undefined | symbol;
|
|
|
1410
1422
|
* }
|
|
1411
1423
|
* ```
|
|
1412
1424
|
*/
|
|
1413
|
-
declare function eventLog(params:
|
|
1414
|
-
log_name: string;
|
|
1415
|
-
log_type: 'debug' | 'info' | 'warn' | 'error';
|
|
1416
|
-
params: Record<string, Primitive>;
|
|
1417
|
-
}): Promise<void>;
|
|
1425
|
+
declare function eventLog(params: EventLogParams): Promise<void>;
|
|
1418
1426
|
|
|
1419
1427
|
/**
|
|
1420
1428
|
* @public
|
|
@@ -1462,10 +1470,10 @@ declare const TossPay: {
|
|
|
1462
1470
|
* @category 광고
|
|
1463
1471
|
* @name GoogleAdMob
|
|
1464
1472
|
* @description Google AdMob 광고 관련 함수를 모아둔 객체예요.
|
|
1465
|
-
* @property {typeof loadAdMobInterstitialAd} [loadAdMobInterstitialAd] 전면 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobInterstitialAd](/react-native/reference/framework/광고/loadAdMobInterstitialAd)를 참고하세요.
|
|
1466
|
-
* @property {typeof showAdMobInterstitialAd} [showAdMobInterstitialAd] 로드한 전면 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobInterstitialAd](/react-native/reference/framework/광고/showAdMobInterstitialAd)를 참고하세요.
|
|
1467
|
-
* @property {typeof loadAdMobRewardedAd} [loadAdMobRewardedAd] 보상형 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobRewardedAd](/react-native/reference/framework/광고/loadAdMobRewardedAd)를 참고하세요.
|
|
1468
|
-
* @property {typeof showAdMobRewardedAd} [showAdMobRewardedAd] 로드한 보상형 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobRewardedAd](/react-native/reference/framework/광고/showAdMobRewardedAd)를 참고하세요.
|
|
1473
|
+
* @property {typeof loadAdMobInterstitialAd} [loadAdMobInterstitialAd] 전면 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobInterstitialAd](/react-native/reference/framework/광고/loadAdMobInterstitialAd.html)를 참고하세요.
|
|
1474
|
+
* @property {typeof showAdMobInterstitialAd} [showAdMobInterstitialAd] 로드한 전면 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobInterstitialAd](/react-native/reference/framework/광고/showAdMobInterstitialAd.html)를 참고하세요.
|
|
1475
|
+
* @property {typeof loadAdMobRewardedAd} [loadAdMobRewardedAd] 보상형 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobRewardedAd](/react-native/reference/framework/광고/loadAdMobRewardedAd.html)를 참고하세요.
|
|
1476
|
+
* @property {typeof showAdMobRewardedAd} [showAdMobRewardedAd] 로드한 보상형 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobRewardedAd](/react-native/reference/framework/광고/showAdMobRewardedAd.html)를 참고하세요.
|
|
1469
1477
|
*/
|
|
1470
1478
|
declare const GoogleAdMob: {
|
|
1471
1479
|
loadAdMobInterstitialAd: typeof loadAdMobInterstitialAd;
|
|
@@ -1590,6 +1598,13 @@ declare class AppBridgeCallbackEvent extends BedrockEventDefinition<void, AppBri
|
|
|
1590
1598
|
private ensureInvokeAppBridgeCallback;
|
|
1591
1599
|
}
|
|
1592
1600
|
|
|
1593
|
-
declare const appsInTossEvent: BedrockEvent<EntryMessageExitedEvent |
|
|
1601
|
+
declare const appsInTossEvent: BedrockEvent<EntryMessageExitedEvent | AppBridgeCallbackEvent | UpdateLocationEvent>;
|
|
1602
|
+
|
|
1603
|
+
declare const Analytics: {
|
|
1604
|
+
init: (options: _apps_in_toss_analytics.AnalyticsConfig) => void;
|
|
1605
|
+
Impression: ({ enabled, impression: impressionType, ...props }: _apps_in_toss_analytics.LoggingImpressionProps) => react_jsx_runtime.JSX.Element;
|
|
1606
|
+
Press: react.ForwardRefExoticComponent<_apps_in_toss_analytics.LoggingPressProps & react.RefAttributes<unknown>>;
|
|
1607
|
+
Area: ({ children, params: _params, ...props }: _apps_in_toss_analytics.LoggingAreaProps) => react_jsx_runtime.JSX.Element;
|
|
1608
|
+
};
|
|
1594
1609
|
|
|
1595
|
-
export { Accuracy, AppsInToss, type ContactEntity, type ExternalWebViewProps, type FetchAlbumPhotosOptions, type GameWebViewProps, type GetCurrentLocationOptions, GoogleAdMob, type ImageResponse, type LoadAdMobInterstitialAdEvent, type LoadAdMobInterstitialAdOptions, type LoadAdMobRewardedAdEvent, type LoadAdMobRewardedAdOptions, type Location, type LocationCoords, type OpenCameraOptions, type PartnerWebViewProps, type ShowAdMobInterstitialAdEvent, type ShowAdMobInterstitialAdOptions, type ShowAdMobRewardedAdEvent, type ShowAdMobRewardedAdOptions, type StartUpdateLocationOptions$1 as StartUpdateLocationOptions, type StartUpdateLocationSubscription, Storage, TossPay, type UpdateLocationEventEmitter, type UseGeolocationOptions, WebView, type WebViewProps, appLogin, appsInTossEvent, env, eventLog, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, getDeviceId, getOperationalEnvironment, getTossAppVersion, getTossShareLink, isMinVersionSupported, openCamera, setClipboardText, startUpdateLocation, useGeolocation };
|
|
1610
|
+
export { Accuracy, Analytics, AppsInToss, type ContactEntity, type EventLogParams, type ExternalWebViewProps, type FetchAlbumPhotosOptions, type GameWebViewProps, type GetCurrentLocationOptions, GoogleAdMob, type ImageResponse, type LoadAdMobInterstitialAdEvent, type LoadAdMobInterstitialAdOptions, type LoadAdMobRewardedAdEvent, type LoadAdMobRewardedAdOptions, type Location, type LocationCoords, type OpenCameraOptions, type PartnerWebViewProps, type ShowAdMobInterstitialAdEvent, type ShowAdMobInterstitialAdOptions, type ShowAdMobRewardedAdEvent, type ShowAdMobRewardedAdOptions, type StartUpdateLocationOptions$1 as StartUpdateLocationOptions, type StartUpdateLocationSubscription, Storage, TossPay, type UpdateLocationEventEmitter, type UseGeolocationOptions, WebView, type WebViewProps, appLogin, appsInTossEvent, env, eventLog, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, getDeviceId, getOperationalEnvironment, getTossAppVersion, getTossShareLink, isMinVersionSupported, openCamera, setClipboardText, startUpdateLocation, useGeolocation };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
|
+
import * as react from 'react';
|
|
1
2
|
import { ComponentType, PropsWithChildren } from 'react';
|
|
3
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
+
import * as _apps_in_toss_analytics from '@apps-in-toss/analytics';
|
|
5
|
+
export * from '@apps-in-toss/analytics';
|
|
2
6
|
import { InitialProps, BedrockProps, BedrockEventDefinition, BedrockEvent } from 'react-native-bedrock';
|
|
3
7
|
import { EmitterSubscription } from 'react-native';
|
|
4
|
-
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
8
|
import { PartnerWebViewScreenProps, ExternalWebViewScreenProps } from '@toss-design-system/react-native';
|
|
6
9
|
import { WebViewProps as WebViewProps$1 } from '@react-native-bedrock/native/react-native-webview';
|
|
7
10
|
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
interface AppsInTossProps {
|
|
12
|
+
context: BedrockProps['context'];
|
|
13
|
+
analytics?: {
|
|
14
|
+
/**
|
|
15
|
+
* 분석 로그 출력 여부를 설정해요. 기본값은 `__DEV__` 예요.
|
|
16
|
+
*/
|
|
17
|
+
debug?: boolean;
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
declare function registerApp(container: ComponentType<PropsWithChildren<InitialProps>>, { context, analytics }: AppsInTossProps): (initialProps: InitialProps) => JSX.Element;
|
|
10
21
|
|
|
11
22
|
declare const AppsInToss: {
|
|
12
23
|
registerApp: typeof registerApp;
|
|
@@ -457,7 +468,7 @@ type ShowAdMobInterstitialAdParams = AdMobHandlerParams<ShowAdMobInterstitialAdO
|
|
|
457
468
|
* ### 버튼 눌러 불러온 전면 광고 보여주기
|
|
458
469
|
* ```tsx
|
|
459
470
|
* import { GoogleAdMob } from '@apps-in-toss/framework';
|
|
460
|
-
* import { View,
|
|
471
|
+
* import { View, Button } from 'react-native';
|
|
461
472
|
*
|
|
462
473
|
* const AD_UNIT_ID = '<YOUR_AD_UNIT_ID>';
|
|
463
474
|
*
|
|
@@ -485,9 +496,7 @@ type ShowAdMobInterstitialAdParams = AdMobHandlerParams<ShowAdMobInterstitialAdO
|
|
|
485
496
|
* }
|
|
486
497
|
*
|
|
487
498
|
* return (
|
|
488
|
-
* <Button onPress={handlePress}
|
|
489
|
-
* <Text>광고 보기</Text>
|
|
490
|
-
* </Button>
|
|
499
|
+
* <Button onPress={handlePress} title="광고 보기" />
|
|
491
500
|
* );
|
|
492
501
|
* }
|
|
493
502
|
* ```
|
|
@@ -669,9 +678,7 @@ type ShowAdMobRewardedAdParams = AdMobHandlerParams<ShowAdMobRewardedAdOptions,
|
|
|
669
678
|
* }
|
|
670
679
|
*
|
|
671
680
|
* return (
|
|
672
|
-
* <Button onPress={handlePress}
|
|
673
|
-
* <Text>광고 보기</Text>
|
|
674
|
-
* </Button>
|
|
681
|
+
* <Button onPress={handlePress} title="광고 보기" />
|
|
675
682
|
* );
|
|
676
683
|
* }
|
|
677
684
|
* ```
|
|
@@ -1318,10 +1325,10 @@ declare function clearItems(): Promise<void>;
|
|
|
1318
1325
|
* @category 저장소
|
|
1319
1326
|
* @name Storage
|
|
1320
1327
|
* @description 네이티브의 저장소를 사용해요.
|
|
1321
|
-
* @property {typeof getItem} [getItem] 모바일 앱의 로컬 저장소에서 아이템을 가져오는 함수예요. 자세한 내용은 [getItem](/react-native/reference/framework/저장소/getItem)을 참고하세요.
|
|
1322
|
-
* @property {typeof setItem} [setItem] 모바일 앱의 로컬 저장소에 아이템을 저장하는 함수예요. 자세한 내용은 [setItem](/react-native/reference/framework/저장소/setItem)을
|
|
1323
|
-
* @property {typeof removeItem} [removeItem] 모바일 앱의 로컬 저장소에서 아이템을 삭제하는 함수예요. 자세한 내용은 [removeItem](/react-native/reference/framework/저장소/removeItem)을 참고하세요.
|
|
1324
|
-
* @property {typeof clearItems} [clearItems] 모바일 앱의 로컬 저장소를 초기화하는 함수예요. 자세한 내용은 [clearItems](/react-native/reference/framework/저장소/clearItems)을 참고하세요.
|
|
1328
|
+
* @property {typeof getItem} [getItem] 모바일 앱의 로컬 저장소에서 아이템을 가져오는 함수예요. 자세한 내용은 [getItem](/react-native/reference/framework/저장소/getItem.html)을 참고하세요.
|
|
1329
|
+
* @property {typeof setItem} [setItem] 모바일 앱의 로컬 저장소에 아이템을 저장하는 함수예요. 자세한 내용은 [setItem](/react-native/reference/framework/저장소/setItem.html)을 참고하셰요.
|
|
1330
|
+
* @property {typeof removeItem} [removeItem] 모바일 앱의 로컬 저장소에서 아이템을 삭제하는 함수예요. 자세한 내용은 [removeItem](/react-native/reference/framework/저장소/removeItem.html)을 참고하세요.
|
|
1331
|
+
* @property {typeof clearItems} [clearItems] 모바일 앱의 로컬 저장소를 초기화하는 함수예요. 자세한 내용은 [clearItems](/react-native/reference/framework/저장소/clearItems.html)을 참고하세요.
|
|
1325
1332
|
*/
|
|
1326
1333
|
declare const Storage: {
|
|
1327
1334
|
getItem: typeof getItem;
|
|
@@ -1375,6 +1382,11 @@ declare function isMinVersionSupported(minVersions: {
|
|
|
1375
1382
|
|
|
1376
1383
|
type Primitive = string | number | boolean | null | undefined | symbol;
|
|
1377
1384
|
|
|
1385
|
+
interface EventLogParams {
|
|
1386
|
+
log_name: string;
|
|
1387
|
+
log_type: 'debug' | 'info' | 'warn' | 'error' | 'screen' | 'impression' | 'click';
|
|
1388
|
+
params: Record<string, Primitive>;
|
|
1389
|
+
}
|
|
1378
1390
|
/**
|
|
1379
1391
|
* @category 로깅
|
|
1380
1392
|
* @kind function
|
|
@@ -1386,7 +1398,7 @@ type Primitive = string | number | boolean | null | undefined | symbol;
|
|
|
1386
1398
|
*
|
|
1387
1399
|
* @param {Object} params 로그 기록에 필요한 매개변수 객체예요.
|
|
1388
1400
|
* @param {string} params.log_name 로그의 이름이에요.
|
|
1389
|
-
* @param {'debug' | 'info' | 'warn' | 'error'} params.log_type 로그의 유형이에요.
|
|
1401
|
+
* @param {'debug' | 'info' | 'warn' | 'error' | 'screen' | 'impression' | 'click'} params.log_type 로그의 유형이에요.
|
|
1390
1402
|
* @param {Record<string, Primitive>} params.params 로그에 포함할 추가 매개변수 객체예요.
|
|
1391
1403
|
*
|
|
1392
1404
|
* @returns {Promise<void>} 로그 기록이 완료되면 해결되는 Promise예요.
|
|
@@ -1410,11 +1422,7 @@ type Primitive = string | number | boolean | null | undefined | symbol;
|
|
|
1410
1422
|
* }
|
|
1411
1423
|
* ```
|
|
1412
1424
|
*/
|
|
1413
|
-
declare function eventLog(params:
|
|
1414
|
-
log_name: string;
|
|
1415
|
-
log_type: 'debug' | 'info' | 'warn' | 'error';
|
|
1416
|
-
params: Record<string, Primitive>;
|
|
1417
|
-
}): Promise<void>;
|
|
1425
|
+
declare function eventLog(params: EventLogParams): Promise<void>;
|
|
1418
1426
|
|
|
1419
1427
|
/**
|
|
1420
1428
|
* @public
|
|
@@ -1462,10 +1470,10 @@ declare const TossPay: {
|
|
|
1462
1470
|
* @category 광고
|
|
1463
1471
|
* @name GoogleAdMob
|
|
1464
1472
|
* @description Google AdMob 광고 관련 함수를 모아둔 객체예요.
|
|
1465
|
-
* @property {typeof loadAdMobInterstitialAd} [loadAdMobInterstitialAd] 전면 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobInterstitialAd](/react-native/reference/framework/광고/loadAdMobInterstitialAd)를 참고하세요.
|
|
1466
|
-
* @property {typeof showAdMobInterstitialAd} [showAdMobInterstitialAd] 로드한 전면 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobInterstitialAd](/react-native/reference/framework/광고/showAdMobInterstitialAd)를 참고하세요.
|
|
1467
|
-
* @property {typeof loadAdMobRewardedAd} [loadAdMobRewardedAd] 보상형 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobRewardedAd](/react-native/reference/framework/광고/loadAdMobRewardedAd)를 참고하세요.
|
|
1468
|
-
* @property {typeof showAdMobRewardedAd} [showAdMobRewardedAd] 로드한 보상형 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobRewardedAd](/react-native/reference/framework/광고/showAdMobRewardedAd)를 참고하세요.
|
|
1473
|
+
* @property {typeof loadAdMobInterstitialAd} [loadAdMobInterstitialAd] 전면 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobInterstitialAd](/react-native/reference/framework/광고/loadAdMobInterstitialAd.html)를 참고하세요.
|
|
1474
|
+
* @property {typeof showAdMobInterstitialAd} [showAdMobInterstitialAd] 로드한 전면 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobInterstitialAd](/react-native/reference/framework/광고/showAdMobInterstitialAd.html)를 참고하세요.
|
|
1475
|
+
* @property {typeof loadAdMobRewardedAd} [loadAdMobRewardedAd] 보상형 광고를 로드하는 함수예요. 자세한 내용은 [loadAdMobRewardedAd](/react-native/reference/framework/광고/loadAdMobRewardedAd.html)를 참고하세요.
|
|
1476
|
+
* @property {typeof showAdMobRewardedAd} [showAdMobRewardedAd] 로드한 보상형 광고를 보여주는 함수예요. 자세한 내용은 [showAdMobRewardedAd](/react-native/reference/framework/광고/showAdMobRewardedAd.html)를 참고하세요.
|
|
1469
1477
|
*/
|
|
1470
1478
|
declare const GoogleAdMob: {
|
|
1471
1479
|
loadAdMobInterstitialAd: typeof loadAdMobInterstitialAd;
|
|
@@ -1590,6 +1598,13 @@ declare class AppBridgeCallbackEvent extends BedrockEventDefinition<void, AppBri
|
|
|
1590
1598
|
private ensureInvokeAppBridgeCallback;
|
|
1591
1599
|
}
|
|
1592
1600
|
|
|
1593
|
-
declare const appsInTossEvent: BedrockEvent<EntryMessageExitedEvent |
|
|
1601
|
+
declare const appsInTossEvent: BedrockEvent<EntryMessageExitedEvent | AppBridgeCallbackEvent | UpdateLocationEvent>;
|
|
1602
|
+
|
|
1603
|
+
declare const Analytics: {
|
|
1604
|
+
init: (options: _apps_in_toss_analytics.AnalyticsConfig) => void;
|
|
1605
|
+
Impression: ({ enabled, impression: impressionType, ...props }: _apps_in_toss_analytics.LoggingImpressionProps) => react_jsx_runtime.JSX.Element;
|
|
1606
|
+
Press: react.ForwardRefExoticComponent<_apps_in_toss_analytics.LoggingPressProps & react.RefAttributes<unknown>>;
|
|
1607
|
+
Area: ({ children, params: _params, ...props }: _apps_in_toss_analytics.LoggingAreaProps) => react_jsx_runtime.JSX.Element;
|
|
1608
|
+
};
|
|
1594
1609
|
|
|
1595
|
-
export { Accuracy, AppsInToss, type ContactEntity, type ExternalWebViewProps, type FetchAlbumPhotosOptions, type GameWebViewProps, type GetCurrentLocationOptions, GoogleAdMob, type ImageResponse, type LoadAdMobInterstitialAdEvent, type LoadAdMobInterstitialAdOptions, type LoadAdMobRewardedAdEvent, type LoadAdMobRewardedAdOptions, type Location, type LocationCoords, type OpenCameraOptions, type PartnerWebViewProps, type ShowAdMobInterstitialAdEvent, type ShowAdMobInterstitialAdOptions, type ShowAdMobRewardedAdEvent, type ShowAdMobRewardedAdOptions, type StartUpdateLocationOptions$1 as StartUpdateLocationOptions, type StartUpdateLocationSubscription, Storage, TossPay, type UpdateLocationEventEmitter, type UseGeolocationOptions, WebView, type WebViewProps, appLogin, appsInTossEvent, env, eventLog, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, getDeviceId, getOperationalEnvironment, getTossAppVersion, getTossShareLink, isMinVersionSupported, openCamera, setClipboardText, startUpdateLocation, useGeolocation };
|
|
1610
|
+
export { Accuracy, Analytics, AppsInToss, type ContactEntity, type EventLogParams, type ExternalWebViewProps, type FetchAlbumPhotosOptions, type GameWebViewProps, type GetCurrentLocationOptions, GoogleAdMob, type ImageResponse, type LoadAdMobInterstitialAdEvent, type LoadAdMobInterstitialAdOptions, type LoadAdMobRewardedAdEvent, type LoadAdMobRewardedAdOptions, type Location, type LocationCoords, type OpenCameraOptions, type PartnerWebViewProps, type ShowAdMobInterstitialAdEvent, type ShowAdMobInterstitialAdOptions, type ShowAdMobRewardedAdEvent, type ShowAdMobRewardedAdOptions, type StartUpdateLocationOptions$1 as StartUpdateLocationOptions, type StartUpdateLocationSubscription, Storage, TossPay, type UpdateLocationEventEmitter, type UseGeolocationOptions, WebView, type WebViewProps, appLogin, appsInTossEvent, env, eventLog, fetchAlbumPhotos, fetchContacts, getClipboardText, getCurrentLocation, getDeviceId, getOperationalEnvironment, getTossAppVersion, getTossShareLink, isMinVersionSupported, openCamera, setClipboardText, startUpdateLocation, useGeolocation };
|