@fugood/bricks-project 2.23.0-beta.60 → 2.23.0-beta.61
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/package.json +3 -3
- package/types/system.ts +5 -0
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.61",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "bun scripts/build.js"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@fugood/bricks-cli": "^2.23.0-beta.
|
|
9
|
+
"@fugood/bricks-cli": "^2.23.0-beta.61",
|
|
10
10
|
"@huggingface/gguf": "^0.3.2",
|
|
11
11
|
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
12
12
|
"@toon-format/toon": "^2.1.0",
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"lodash": "^4.17.4",
|
|
19
19
|
"uuid": "^8.3.1"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "29f6351aa50757b1dd052f31c380931f18fa69e9"
|
|
22
22
|
}
|
package/types/system.ts
CHANGED
|
@@ -642,6 +642,11 @@ export type SystemActionThrowException = ActionWithParams & {
|
|
|
642
642
|
>
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
+
/* Restart the foundation (React Native bundle) */
|
|
646
|
+
export type SystemActionRestartFoundation = Action & {
|
|
647
|
+
__actionName: 'RESTART_FOUNDATION'
|
|
648
|
+
}
|
|
649
|
+
|
|
645
650
|
/* Dismiss keyboard */
|
|
646
651
|
export type SystemActionDismissKeyboard = Action & {
|
|
647
652
|
__actionName: 'DISMISS_KEYBOARD'
|