@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.
@@ -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.28",
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": "4a841001b6190c63368e33084a82ab4cfd1945f2"
17
+ "gitHead": "85c33271ee69ace908930725489582434dad93b9"
18
18
  }
@@ -90,7 +90,7 @@ export interface AnimationComposeDef {
90
90
  export type Animation = AnimationDef | AnimationComposeDef
91
91
 
92
92
  export interface AnimationBasicEvents {
93
- show?: Animation
93
+ showStart?: Animation
94
94
  standby?: Animation
95
95
  breatheStart?: Animation
96
96
  }
package/types/common.ts CHANGED
@@ -82,7 +82,7 @@ export type EventActionForItem = {
82
82
  export type ApplicationFont = {
83
83
  name: string
84
84
  url: string
85
- md5: string
85
+ md5?: string
86
86
  }
87
87
 
88
88
  export type ApplicationSettings = {
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