@apps-in-toss/framework 0.0.0-dev.1744801739343 → 0.0.0-dev.1747216176095
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 +695 -160
- package/dist/index.d.cts +891 -343
- package/dist/index.d.ts +891 -343
- package/dist/index.js +661 -132
- package/package.json +16 -14
- package/src/async-bridges.ts +10 -9
- package/src/constant-bridges.ts +3 -3
- package/src/event-bridges.ts +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-dev.
|
|
4
|
+
"version": "0.0.0-dev.1747216176095",
|
|
5
5
|
"description": "The framework for Apps In Toss",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"prepack": "yarn build",
|
|
8
8
|
"typecheck": "tsc --noEmit",
|
|
9
|
-
"test
|
|
9
|
+
"test": "vitest --no-watch",
|
|
10
|
+
"test:no-parallel": "vitest --no-watch --config=vitest.no-parallel.config.mts",
|
|
10
11
|
"lint": "eslint .",
|
|
11
12
|
"build": "tsup"
|
|
12
13
|
},
|
|
@@ -56,40 +57,41 @@
|
|
|
56
57
|
"ait": "./bin/ait.js"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
|
-
"@apps-in-toss/
|
|
60
|
-
"@apps-in-toss/
|
|
60
|
+
"@apps-in-toss/analytics": "0.0.0-dev.1747216176095",
|
|
61
|
+
"@apps-in-toss/cli": "0.0.0-dev.1747216176095",
|
|
62
|
+
"@apps-in-toss/plugins": "0.0.0-dev.1747216176095",
|
|
61
63
|
"es-hangul": "^2.3.2"
|
|
62
64
|
},
|
|
63
65
|
"devDependencies": {
|
|
64
|
-
"@react-native-bedrock/mpack-next": "0.0.0-dev.
|
|
65
|
-
"@react-native-bedrock/native": "
|
|
66
|
+
"@react-native-bedrock/mpack-next": "0.0.0-dev.1747215740094",
|
|
67
|
+
"@react-native-bedrock/native": "0.0.0-dev.1747215740094",
|
|
68
|
+
"@react-native-bedrock/plugin-core": "0.0.0-dev.1747215740094",
|
|
69
|
+
"@react-native-bedrock/utils": "0.0.0-dev.1747215740094",
|
|
66
70
|
"@toss-design-system/react-native": "^0.5.0",
|
|
67
71
|
"@types/kill-port": "^2.0.1",
|
|
68
72
|
"@types/react": "18.3.3",
|
|
69
|
-
"@types/yauzl": "^2.10.3",
|
|
70
73
|
"es-toolkit": "^1.34.1",
|
|
71
74
|
"eslint": "^9.7.0",
|
|
72
75
|
"execa": "^9.5.2",
|
|
73
76
|
"kill-port": "^2.0.1",
|
|
74
77
|
"react": "18.2.0",
|
|
75
78
|
"react-native": "0.72.6",
|
|
76
|
-
"react-native-bedrock": "0.0.0-dev.
|
|
79
|
+
"react-native-bedrock": "0.0.0-dev.1747215740094",
|
|
77
80
|
"tsup": "^8.3.5",
|
|
78
|
-
"typescript": "
|
|
81
|
+
"typescript": "5.8.3",
|
|
79
82
|
"vitest": "^3.0.3",
|
|
80
|
-
"workspace-tools": "^0.38.2"
|
|
81
|
-
"yauzl": "^3.2.0"
|
|
83
|
+
"workspace-tools": "^0.38.2"
|
|
82
84
|
},
|
|
83
85
|
"peerDependencies": {
|
|
84
|
-
"@react-native-bedrock/native": "
|
|
86
|
+
"@react-native-bedrock/native": "*",
|
|
85
87
|
"@toss-design-system/react-native": ">= 0.5.0",
|
|
86
88
|
"@types/react": "*",
|
|
87
89
|
"react": "*",
|
|
88
90
|
"react-native": "*",
|
|
89
|
-
"react-native-bedrock": "
|
|
91
|
+
"react-native-bedrock": "*"
|
|
90
92
|
},
|
|
91
93
|
"publishConfig": {
|
|
92
94
|
"access": "public"
|
|
93
95
|
},
|
|
94
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "b9097d25120bc711f8c90351a5c6d0346d41f7fa"
|
|
95
97
|
}
|
package/src/async-bridges.ts
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
export * from './native-modules/setClipboardText
|
|
2
|
-
export * from './native-modules/getClipboardText
|
|
3
|
-
export * from './native-modules/fetchContacts
|
|
4
|
-
export * from './native-modules/fetchAlbumPhotos
|
|
5
|
-
export * from './native-modules/getCurrentLocation
|
|
6
|
-
export * from './native-modules/openCamera
|
|
7
|
-
export * from './native-modules/appLogin
|
|
8
|
-
export * from './native-modules/checkoutPayment
|
|
9
|
-
export * from './native-modules/
|
|
1
|
+
export * from './native-modules/setClipboardText';
|
|
2
|
+
export * from './native-modules/getClipboardText';
|
|
3
|
+
export * from './native-modules/fetchContacts';
|
|
4
|
+
export * from './native-modules/fetchAlbumPhotos';
|
|
5
|
+
export * from './native-modules/getCurrentLocation';
|
|
6
|
+
export * from './native-modules/openCamera';
|
|
7
|
+
export * from './native-modules/appLogin';
|
|
8
|
+
export * from './native-modules/checkoutPayment';
|
|
9
|
+
export * from './native-modules/eventLog';
|
|
10
|
+
export * from './native-modules/getTossShareLink';
|
package/src/constant-bridges.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from './native-modules/getOperationalEnvironment
|
|
2
|
-
export * from './native-modules/getTossAppVersion
|
|
3
|
-
export * from './native-modules/getDeviceId
|
|
1
|
+
export * from './native-modules/getOperationalEnvironment';
|
|
2
|
+
export * from './native-modules/getTossAppVersion';
|
|
3
|
+
export * from './native-modules/getDeviceId';
|
package/src/event-bridges.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './native-event-emitter/startUpdateLocation
|
|
1
|
+
export * from './native-event-emitter/startUpdateLocation';
|