@apps-in-toss/web-bridge 1.7.1 → 1.8.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/CHANGELOG.md +8 -0
- package/{built → dist}/index.cjs +15 -1
- package/{built → dist}/index.d.cts +12 -1
- package/{built → dist}/index.d.ts +12 -1
- package/{built → dist}/index.js +42 -28
- package/package.json +12 -12
- /package/{built → dist}/appLogin.d.ts +0 -0
- /package/{built → dist}/appsInTossSignTossCert.d.ts +0 -0
- /package/{built → dist}/bridge.d.ts +0 -0
- /package/{built → dist}/bridge.js +0 -0
- /package/{built → dist}/checkoutPayment.d.ts +0 -0
- /package/{built → dist}/closeView.d.ts +0 -0
- /package/{built → dist}/contactsViral.d.ts +0 -0
- /package/{built → dist}/eventLog.d.ts +0 -0
- /package/{built → dist}/fetchAlbumPhotos.d.ts +0 -0
- /package/{built → dist}/fetchContacts.d.ts +0 -0
- /package/{built → dist}/generateHapticFeedback.d.ts +0 -0
- /package/{built → dist}/getClipboardText.d.ts +0 -0
- /package/{built → dist}/getCurrentLocation.d.ts +0 -0
- /package/{built → dist}/getDeviceId.d.ts +0 -0
- /package/{built → dist}/getGameCenterGameProfile.d.ts +0 -0
- /package/{built → dist}/getIsTossLoginIntegratedService.d.ts +0 -0
- /package/{built → dist}/getLocale.d.ts +0 -0
- /package/{built → dist}/getNetworkStatus.d.ts +0 -0
- /package/{built → dist}/getOperationalEnvironment.d.ts +0 -0
- /package/{built → dist}/getPermission.d.ts +0 -0
- /package/{built → dist}/getPlatformOS.d.ts +0 -0
- /package/{built → dist}/getSchemeUri.d.ts +0 -0
- /package/{built → dist}/getTossAppVersion.d.ts +0 -0
- /package/{built → dist}/getTossShareLink.d.ts +0 -0
- /package/{built → dist}/getUserKeyForGame.d.ts +0 -0
- /package/{built → dist}/grantPromotionRewardForGame.d.ts +0 -0
- /package/{built → dist}/onVisibilityChangedByTransparentServiceWeb.d.ts +0 -0
- /package/{built → dist}/openCamera.d.ts +0 -0
- /package/{built → dist}/openGameCenterLeaderboard.d.ts +0 -0
- /package/{built → dist}/openPermissionDialog.d.ts +0 -0
- /package/{built → dist}/openURL.d.ts +0 -0
- /package/{built → dist}/requestPermission.d.ts +0 -0
- /package/{built → dist}/saveBase64Data.d.ts +0 -0
- /package/{built → dist}/setClipboardText.d.ts +0 -0
- /package/{built → dist}/setDeviceOrientation.d.ts +0 -0
- /package/{built → dist}/setIosSwipeGestureEnabled.d.ts +0 -0
- /package/{built → dist}/setScreenAwakeMode.d.ts +0 -0
- /package/{built → dist}/setSecureScreen.d.ts +0 -0
- /package/{built → dist}/share.d.ts +0 -0
- /package/{built → dist}/startUpdateLocation.d.ts +0 -0
- /package/{built → dist}/submitGameCenterLeaderBoardScore.d.ts +0 -0
- /package/{built → dist}/types.d.ts +0 -0
package/CHANGELOG.md
CHANGED
package/{built → dist}/index.cjs
RENAMED
|
@@ -534,7 +534,21 @@ var GoogleAdMob = {
|
|
|
534
534
|
*/
|
|
535
535
|
showAppsInTossAdMob: Object.assign((0, import_bridge_core6.createEventBridge)("showAppsInTossAdMob"), {
|
|
536
536
|
isSupported: (0, import_bridge_core6.createConstantBridge)("showAppsInTossAdMob_isSupported")
|
|
537
|
-
})
|
|
537
|
+
}),
|
|
538
|
+
/**
|
|
539
|
+
* @public
|
|
540
|
+
* @category 광고
|
|
541
|
+
* @name showAppsInTossAdMob
|
|
542
|
+
* @description 이 함수는 `loadAppsInTossAdMob` 로 광고가 잘 불러와졌는지 확인해요.
|
|
543
|
+
* @param {string} params.adUnitId 광고 그룹 단위 ID예요.
|
|
544
|
+
* @property {() => boolean} [isSupported] 현재 실행 중인 앱(예: 토스 앱, 개발용 샌드박스 앱 등)에서 `isAppsInTossAdMobLoaded` 를 지원하는지 확인하는 함수예요. 기능을 사용하기 전에 지원 여부를 확인해야 해요.
|
|
545
|
+
*/
|
|
546
|
+
isAppsInTossAdMobLoaded: Object.assign(
|
|
547
|
+
(0, import_bridge_core6.createAsyncBridge)("isAppsInTossAdMobLoaded"),
|
|
548
|
+
{
|
|
549
|
+
isSupported: (0, import_bridge_core6.createConstantBridge)("isAppsInTossAdMobLoaded_isSupported")
|
|
550
|
+
}
|
|
551
|
+
)
|
|
538
552
|
};
|
|
539
553
|
|
|
540
554
|
// src/graniteEvent.ts
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './bridge';
|
|
2
2
|
export * from '@apps-in-toss/bridge-core';
|
|
3
|
-
import { LoadAdMobEvent, LoadAdMobOptions, ShowAdMobEvent, ShowAdMobOptions, LoadFullScreenAdEvent, LoadFullScreenAdOptions, ShowFullScreenAdEvent, ShowFullScreenAdOptions } from '@apps-in-toss/framework';
|
|
3
|
+
import { LoadAdMobEvent, LoadAdMobOptions, ShowAdMobEvent, ShowAdMobOptions, IsAdMobLoadedOptions, LoadFullScreenAdEvent, LoadFullScreenAdOptions, ShowFullScreenAdEvent, ShowFullScreenAdOptions } from '@apps-in-toss/framework';
|
|
4
4
|
import * as _apps_in_toss_types from '@apps-in-toss/types';
|
|
5
5
|
import { FetchAlbumPhotos, FetchContacts, GetCurrentLocation, OpenCamera, SetClipboardText, GetClipboardText, StartUpdateLocationEventParams } from '@apps-in-toss/types';
|
|
6
6
|
export * from '@apps-in-toss/types';
|
|
@@ -494,6 +494,17 @@ declare const GoogleAdMob: {
|
|
|
494
494
|
}) => () => void) & {
|
|
495
495
|
isSupported: () => boolean;
|
|
496
496
|
};
|
|
497
|
+
/**
|
|
498
|
+
* @public
|
|
499
|
+
* @category 광고
|
|
500
|
+
* @name showAppsInTossAdMob
|
|
501
|
+
* @description 이 함수는 `loadAppsInTossAdMob` 로 광고가 잘 불러와졌는지 확인해요.
|
|
502
|
+
* @param {string} params.adUnitId 광고 그룹 단위 ID예요.
|
|
503
|
+
* @property {() => boolean} [isSupported] 현재 실행 중인 앱(예: 토스 앱, 개발용 샌드박스 앱 등)에서 `isAppsInTossAdMobLoaded` 를 지원하는지 확인하는 함수예요. 기능을 사용하기 전에 지원 여부를 확인해야 해요.
|
|
504
|
+
*/
|
|
505
|
+
isAppsInTossAdMobLoaded: ((args_0: IsAdMobLoadedOptions) => Promise<boolean>) & {
|
|
506
|
+
isSupported: () => boolean;
|
|
507
|
+
};
|
|
497
508
|
};
|
|
498
509
|
|
|
499
510
|
type GraniteEvent = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * from './bridge';
|
|
2
2
|
export * from '@apps-in-toss/bridge-core';
|
|
3
|
-
import { LoadAdMobEvent, LoadAdMobOptions, ShowAdMobEvent, ShowAdMobOptions, LoadFullScreenAdEvent, LoadFullScreenAdOptions, ShowFullScreenAdEvent, ShowFullScreenAdOptions } from '@apps-in-toss/framework';
|
|
3
|
+
import { LoadAdMobEvent, LoadAdMobOptions, ShowAdMobEvent, ShowAdMobOptions, IsAdMobLoadedOptions, LoadFullScreenAdEvent, LoadFullScreenAdOptions, ShowFullScreenAdEvent, ShowFullScreenAdOptions } from '@apps-in-toss/framework';
|
|
4
4
|
import * as _apps_in_toss_types from '@apps-in-toss/types';
|
|
5
5
|
import { FetchAlbumPhotos, FetchContacts, GetCurrentLocation, OpenCamera, SetClipboardText, GetClipboardText, StartUpdateLocationEventParams } from '@apps-in-toss/types';
|
|
6
6
|
export * from '@apps-in-toss/types';
|
|
@@ -494,6 +494,17 @@ declare const GoogleAdMob: {
|
|
|
494
494
|
}) => () => void) & {
|
|
495
495
|
isSupported: () => boolean;
|
|
496
496
|
};
|
|
497
|
+
/**
|
|
498
|
+
* @public
|
|
499
|
+
* @category 광고
|
|
500
|
+
* @name showAppsInTossAdMob
|
|
501
|
+
* @description 이 함수는 `loadAppsInTossAdMob` 로 광고가 잘 불러와졌는지 확인해요.
|
|
502
|
+
* @param {string} params.adUnitId 광고 그룹 단위 ID예요.
|
|
503
|
+
* @property {() => boolean} [isSupported] 현재 실행 중인 앱(예: 토스 앱, 개발용 샌드박스 앱 등)에서 `isAppsInTossAdMobLoaded` 를 지원하는지 확인하는 함수예요. 기능을 사용하기 전에 지원 여부를 확인해야 해요.
|
|
504
|
+
*/
|
|
505
|
+
isAppsInTossAdMobLoaded: ((args_0: IsAdMobLoadedOptions) => Promise<boolean>) & {
|
|
506
|
+
isSupported: () => boolean;
|
|
507
|
+
};
|
|
497
508
|
};
|
|
498
509
|
|
|
499
510
|
type GraniteEvent = {
|
package/{built → dist}/index.js
RENAMED
|
@@ -353,7 +353,7 @@ var SafeAreaInsets = {
|
|
|
353
353
|
};
|
|
354
354
|
|
|
355
355
|
// src/googleAdMob.ts
|
|
356
|
-
import { createConstantBridge as createConstantBridge4, createEventBridge as createEventBridge3 } from "@apps-in-toss/bridge-core";
|
|
356
|
+
import { createAsyncBridge as createAsyncBridge3, createConstantBridge as createConstantBridge4, createEventBridge as createEventBridge3 } from "@apps-in-toss/bridge-core";
|
|
357
357
|
var GoogleAdMob = {
|
|
358
358
|
/**
|
|
359
359
|
* @public
|
|
@@ -489,7 +489,21 @@ var GoogleAdMob = {
|
|
|
489
489
|
*/
|
|
490
490
|
showAppsInTossAdMob: Object.assign(createEventBridge3("showAppsInTossAdMob"), {
|
|
491
491
|
isSupported: createConstantBridge4("showAppsInTossAdMob_isSupported")
|
|
492
|
-
})
|
|
492
|
+
}),
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
* @category 광고
|
|
496
|
+
* @name showAppsInTossAdMob
|
|
497
|
+
* @description 이 함수는 `loadAppsInTossAdMob` 로 광고가 잘 불러와졌는지 확인해요.
|
|
498
|
+
* @param {string} params.adUnitId 광고 그룹 단위 ID예요.
|
|
499
|
+
* @property {() => boolean} [isSupported] 현재 실행 중인 앱(예: 토스 앱, 개발용 샌드박스 앱 등)에서 `isAppsInTossAdMobLoaded` 를 지원하는지 확인하는 함수예요. 기능을 사용하기 전에 지원 여부를 확인해야 해요.
|
|
500
|
+
*/
|
|
501
|
+
isAppsInTossAdMobLoaded: Object.assign(
|
|
502
|
+
createAsyncBridge3("isAppsInTossAdMobLoaded"),
|
|
503
|
+
{
|
|
504
|
+
isSupported: createConstantBridge4("isAppsInTossAdMobLoaded_isSupported")
|
|
505
|
+
}
|
|
506
|
+
)
|
|
493
507
|
};
|
|
494
508
|
|
|
495
509
|
// src/graniteEvent.ts
|
|
@@ -583,7 +597,7 @@ var tdsEvent = {
|
|
|
583
597
|
};
|
|
584
598
|
|
|
585
599
|
// src/partner.ts
|
|
586
|
-
import { createAsyncBridge as
|
|
600
|
+
import { createAsyncBridge as createAsyncBridge4 } from "@apps-in-toss/bridge-core";
|
|
587
601
|
var partner = {
|
|
588
602
|
/**
|
|
589
603
|
* @public
|
|
@@ -605,7 +619,7 @@ var partner = {
|
|
|
605
619
|
});
|
|
606
620
|
* ```
|
|
607
621
|
*/
|
|
608
|
-
addAccessoryButton:
|
|
622
|
+
addAccessoryButton: createAsyncBridge4("addAccessoryButton"),
|
|
609
623
|
/**
|
|
610
624
|
* @public
|
|
611
625
|
* @category 파트너
|
|
@@ -619,18 +633,18 @@ var partner = {
|
|
|
619
633
|
* partner.removeAccessoryButton();
|
|
620
634
|
* ```
|
|
621
635
|
*/
|
|
622
|
-
removeAccessoryButton:
|
|
636
|
+
removeAccessoryButton: createAsyncBridge4("removeAccessoryButton")
|
|
623
637
|
};
|
|
624
638
|
|
|
625
639
|
// src/permissions/fetchAlbumPhotos.ts
|
|
626
|
-
import { createAsyncBridge as
|
|
640
|
+
import { createAsyncBridge as createAsyncBridge6 } from "@apps-in-toss/bridge-core";
|
|
627
641
|
import { FetchAlbumPhotosPermissionError } from "@apps-in-toss/types";
|
|
628
642
|
|
|
629
643
|
// src/permissions/createPermissionFunction.ts
|
|
630
|
-
import { createAsyncBridge as
|
|
631
|
-
var requestPermission =
|
|
632
|
-
var getPermission =
|
|
633
|
-
var openPermissionDialog =
|
|
644
|
+
import { createAsyncBridge as createAsyncBridge5 } from "@apps-in-toss/bridge-core";
|
|
645
|
+
var requestPermission = createAsyncBridge5("requestPermission");
|
|
646
|
+
var getPermission = createAsyncBridge5("getPermission");
|
|
647
|
+
var openPermissionDialog = createAsyncBridge5("openPermissionDialog");
|
|
634
648
|
function createPermissionFunction({
|
|
635
649
|
permission,
|
|
636
650
|
handler,
|
|
@@ -651,7 +665,7 @@ function createPermissionFunction({
|
|
|
651
665
|
// src/permissions/fetchAlbumPhotos.ts
|
|
652
666
|
var fetchAlbumPhotos = createPermissionFunction({
|
|
653
667
|
handler: (options) => {
|
|
654
|
-
return
|
|
668
|
+
return createAsyncBridge6("fetchAlbumPhotos")(
|
|
655
669
|
options
|
|
656
670
|
);
|
|
657
671
|
},
|
|
@@ -663,11 +677,11 @@ var fetchAlbumPhotos = createPermissionFunction({
|
|
|
663
677
|
});
|
|
664
678
|
|
|
665
679
|
// src/permissions/fetchContacts.ts
|
|
666
|
-
import { createAsyncBridge as
|
|
680
|
+
import { createAsyncBridge as createAsyncBridge7 } from "@apps-in-toss/bridge-core";
|
|
667
681
|
import { FetchContactsPermissionError } from "@apps-in-toss/types";
|
|
668
682
|
var fetchContacts = createPermissionFunction({
|
|
669
683
|
handler: (options) => {
|
|
670
|
-
return
|
|
684
|
+
return createAsyncBridge7("fetchContacts")(options);
|
|
671
685
|
},
|
|
672
686
|
permission: {
|
|
673
687
|
name: "contacts",
|
|
@@ -677,13 +691,13 @@ var fetchContacts = createPermissionFunction({
|
|
|
677
691
|
});
|
|
678
692
|
|
|
679
693
|
// src/permissions/getCurrentLocation.ts
|
|
680
|
-
import { createAsyncBridge as
|
|
694
|
+
import { createAsyncBridge as createAsyncBridge8 } from "@apps-in-toss/bridge-core";
|
|
681
695
|
import {
|
|
682
696
|
GetCurrentLocationPermissionError
|
|
683
697
|
} from "@apps-in-toss/types";
|
|
684
698
|
var getCurrentLocation = createPermissionFunction({
|
|
685
699
|
handler: (options) => {
|
|
686
|
-
return
|
|
700
|
+
return createAsyncBridge8(
|
|
687
701
|
"getCurrentLocation"
|
|
688
702
|
)(options);
|
|
689
703
|
},
|
|
@@ -695,11 +709,11 @@ var getCurrentLocation = createPermissionFunction({
|
|
|
695
709
|
});
|
|
696
710
|
|
|
697
711
|
// src/permissions/openCamera.ts
|
|
698
|
-
import { createAsyncBridge as
|
|
712
|
+
import { createAsyncBridge as createAsyncBridge9 } from "@apps-in-toss/bridge-core";
|
|
699
713
|
import { OpenCameraPermissionError } from "@apps-in-toss/types";
|
|
700
714
|
var openCamera = createPermissionFunction({
|
|
701
715
|
handler: (options) => {
|
|
702
|
-
return
|
|
716
|
+
return createAsyncBridge9("openCamera")(options);
|
|
703
717
|
},
|
|
704
718
|
permission: {
|
|
705
719
|
name: "camera",
|
|
@@ -709,11 +723,11 @@ var openCamera = createPermissionFunction({
|
|
|
709
723
|
});
|
|
710
724
|
|
|
711
725
|
// src/permissions/setClipboardText.ts
|
|
712
|
-
import { createAsyncBridge as
|
|
726
|
+
import { createAsyncBridge as createAsyncBridge10 } from "@apps-in-toss/bridge-core";
|
|
713
727
|
import { SetClipboardTextPermissionError } from "@apps-in-toss/types";
|
|
714
728
|
var setClipboardText = createPermissionFunction({
|
|
715
729
|
handler: (options) => {
|
|
716
|
-
return
|
|
730
|
+
return createAsyncBridge10("setClipboardText")(
|
|
717
731
|
options
|
|
718
732
|
);
|
|
719
733
|
},
|
|
@@ -725,11 +739,11 @@ var setClipboardText = createPermissionFunction({
|
|
|
725
739
|
});
|
|
726
740
|
|
|
727
741
|
// src/permissions/getClipboardText.ts
|
|
728
|
-
import { createAsyncBridge as
|
|
742
|
+
import { createAsyncBridge as createAsyncBridge11 } from "@apps-in-toss/bridge-core";
|
|
729
743
|
import { GetClipboardTextPermissionError } from "@apps-in-toss/types";
|
|
730
744
|
var getClipboardText = createPermissionFunction({
|
|
731
745
|
handler: () => {
|
|
732
|
-
return
|
|
746
|
+
return createAsyncBridge11("getClipboardText")();
|
|
733
747
|
},
|
|
734
748
|
permission: {
|
|
735
749
|
name: "clipboard",
|
|
@@ -739,12 +753,12 @@ var getClipboardText = createPermissionFunction({
|
|
|
739
753
|
});
|
|
740
754
|
|
|
741
755
|
// src/permissions/startUpdateLocation.ts
|
|
742
|
-
import { createAsyncBridge as
|
|
756
|
+
import { createAsyncBridge as createAsyncBridge12, createEventBridge as createEventBridge7 } from "@apps-in-toss/bridge-core";
|
|
743
757
|
import {
|
|
744
758
|
StartUpdateLocationPermissionError
|
|
745
759
|
} from "@apps-in-toss/types";
|
|
746
|
-
var getPermission2 =
|
|
747
|
-
var openPermissionDialog2 =
|
|
760
|
+
var getPermission2 = createAsyncBridge12("getPermission");
|
|
761
|
+
var openPermissionDialog2 = createAsyncBridge12("openPermissionDialog");
|
|
748
762
|
var startUpdateLocation = (params) => {
|
|
749
763
|
return createEventBridge7("updateLocationEvent")({
|
|
750
764
|
...params,
|
|
@@ -776,11 +790,11 @@ var showFullScreenAd = Object.assign(
|
|
|
776
790
|
);
|
|
777
791
|
|
|
778
792
|
// src/toss-ad/index.ts
|
|
779
|
-
import { createAsyncBridge as
|
|
793
|
+
import { createAsyncBridge as createAsyncBridge14, createConstantBridge as createConstantBridge8, createEventBridge as createEventBridge9 } from "@apps-in-toss/bridge-core";
|
|
780
794
|
|
|
781
795
|
// src/toss-ad/opener.ts
|
|
782
|
-
import { createAsyncBridge as
|
|
783
|
-
var openURL =
|
|
796
|
+
import { createAsyncBridge as createAsyncBridge13 } from "@apps-in-toss/bridge-core";
|
|
797
|
+
var openURL = createAsyncBridge13("openURL");
|
|
784
798
|
function openUrlOpener(url) {
|
|
785
799
|
const transformed = getWebSchemeOrUri(url);
|
|
786
800
|
return openURL(transformed);
|
|
@@ -854,7 +868,7 @@ function loadAdsSdk() {
|
|
|
854
868
|
var fetchTossAd = Object.assign(createEventBridge9("fetchTossAd"), {
|
|
855
869
|
isSupported: createConstantBridge8("fetchTossAd_isSupported")
|
|
856
870
|
});
|
|
857
|
-
var tossAdEventLog =
|
|
871
|
+
var tossAdEventLog = createAsyncBridge14("tossAdEventLog");
|
|
858
872
|
var SUPPORTED_STYLE_IDS = /* @__PURE__ */ new Set(["1", "2"]);
|
|
859
873
|
function fetchTossAdPromise(options) {
|
|
860
874
|
return new Promise((resolve, reject) => {
|
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-bridge",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.8.0",
|
|
5
5
|
"description": "Web Bridge for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"typecheck": "tsc --noEmit",
|
|
8
8
|
"lint": "eslint .",
|
|
9
9
|
"build": "tsup"
|
|
10
10
|
},
|
|
11
|
-
"main": "./
|
|
12
|
-
"module": "./
|
|
13
|
-
"types": "./
|
|
11
|
+
"main": "./dist/index.cjs",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
14
|
"exports": {
|
|
15
15
|
".": {
|
|
16
16
|
"import": {
|
|
17
|
-
"types": "./
|
|
18
|
-
"default": "./
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
19
|
},
|
|
20
20
|
"require": {
|
|
21
|
-
"types": "./
|
|
22
|
-
"default": "./
|
|
21
|
+
"types": "./dist/index.d.cts",
|
|
22
|
+
"default": "./dist/index.cjs"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
-
"
|
|
27
|
+
"dist"
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@apps-in-toss/types": "1.
|
|
30
|
+
"@apps-in-toss/types": "1.8.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@apps-in-toss/bridge-core": "1.
|
|
34
|
-
"@apps-in-toss/framework": "1.
|
|
33
|
+
"@apps-in-toss/bridge-core": "1.8.0",
|
|
34
|
+
"@apps-in-toss/framework": "1.8.0",
|
|
35
35
|
"@swc/core": "^1.12.7",
|
|
36
36
|
"picocolors": "^1.1.1",
|
|
37
37
|
"ts-morph": "^26.0.0",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|