@fugood/bricks-project 2.22.0-beta.28 → 2.22.0-beta.30
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/compile/action-name-map.ts +5 -0
- package/package.json +2 -2
- package/types/animation.ts +1 -1
- package/types/common.ts +1 -1
- package/types/system.ts +22 -0
- /package/types/bricks/{Qrcode.ts → QrCode.ts} +0 -0
- /package/types/bricks/{WebRTCStream.ts → WebRtcStream.ts} +0 -0
- /package/types/generators/{GraphQL.ts → GraphQl.ts} +0 -0
- /package/types/generators/{HTTP.ts → Http.ts} +0 -0
- /package/types/generators/{HTTPServer.ts → HttpServer.ts} +0 -0
- /package/types/generators/{MCP.ts → Mcp.ts} +0 -0
- /package/types/generators/{MCPServer.ts → McpServer.ts} +0 -0
- /package/types/generators/{MQTTBroker.ts → MqttBroker.ts} +0 -0
- /package/types/generators/{Sqlite.ts → SqLite.ts} +0 -0
- /package/types/generators/{TCP.ts → Tcp.ts} +0 -0
- /package/types/generators/{TCPServer.ts → TcpServer.ts} +0 -0
- /package/types/generators/{UDP.ts → Udp.ts} +0 -0
- /package/types/generators/{WebRTC.ts → WebRtc.ts} +0 -0
|
@@ -135,6 +135,11 @@ export const templateActionNameMap = {
|
|
|
135
135
|
result: 'RESULT',
|
|
136
136
|
error: 'ERROR',
|
|
137
137
|
},
|
|
138
|
+
SAVE_UPDATE_SNAPSHOT: {
|
|
139
|
+
snapshotFileIndentifier: 'SNAPSHOT_FILE_INDENTIFIER',
|
|
140
|
+
snapshotSaveResult: 'SNAPSHOT_SAVE_RESULT',
|
|
141
|
+
snapshotErrorResult: 'SNAPSHOT_ERROR_RESULT',
|
|
142
|
+
},
|
|
138
143
|
},
|
|
139
144
|
|
|
140
145
|
BRICK_TEXT_INPUT: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fugood/bricks-project",
|
|
3
|
-
"version": "2.22.0-beta.
|
|
3
|
+
"version": "2.22.0-beta.30",
|
|
4
4
|
"main": "index.ts",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "node scripts/build.js"
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
"lodash": "^4.17.4",
|
|
15
15
|
"uuid": "^8.3.1"
|
|
16
16
|
},
|
|
17
|
-
"gitHead": "
|
|
17
|
+
"gitHead": "85c33271ee69ace908930725489582434dad93b9"
|
|
18
18
|
}
|
package/types/animation.ts
CHANGED
package/types/common.ts
CHANGED
package/types/system.ts
CHANGED
|
@@ -641,3 +641,25 @@ export type SystemActionTriggerApplicationFilter = ActionWithParams & {
|
|
|
641
641
|
export type SystemActionStopApplicationFilter = Action & {
|
|
642
642
|
__actionName: 'STOP_APPLICATION_FILTER'
|
|
643
643
|
}
|
|
644
|
+
|
|
645
|
+
/* Save update snapshot (from Application Filter or DevTools MCP Server) to media system */
|
|
646
|
+
export type SystemActionSaveUpdateSnapshot = ActionWithParams & {
|
|
647
|
+
__actionName: 'SAVE_UPDATE_SNAPSHOT'
|
|
648
|
+
params?: Array<
|
|
649
|
+
| {
|
|
650
|
+
input: 'snapshotFileIndentifier'
|
|
651
|
+
value?: string | DataLink | EventProperty
|
|
652
|
+
mapping?: string
|
|
653
|
+
}
|
|
654
|
+
| {
|
|
655
|
+
input: 'snapshotSaveResult'
|
|
656
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
657
|
+
mapping?: string
|
|
658
|
+
}
|
|
659
|
+
| {
|
|
660
|
+
input: 'snapshotErrorResult'
|
|
661
|
+
value?: string | DataLink | (() => Data) | EventProperty
|
|
662
|
+
mapping?: string
|
|
663
|
+
}
|
|
664
|
+
>
|
|
665
|
+
}
|
|
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
|