@fugood/bricks-project 2.21.3 → 2.21.4
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/index.ts +1 -0
- package/package.json +1 -1
- package/types/canvas.ts +1 -1
- package/types/generators.ts +5 -1
package/compile/index.ts
CHANGED
|
@@ -856,6 +856,7 @@ export const compile = async (app: Application) => {
|
|
|
856
856
|
fonts: app.fonts,
|
|
857
857
|
...compileApplicationSettings(app.settings),
|
|
858
858
|
test_map: app.metadata?.TEMP_test_map || {},
|
|
859
|
+
automation_map: app.metadata?.TEMP_automation_map || {},
|
|
859
860
|
}
|
|
860
861
|
return config
|
|
861
862
|
}
|
package/package.json
CHANGED
package/types/canvas.ts
CHANGED
|
@@ -14,7 +14,7 @@ interface CanvasDef {
|
|
|
14
14
|
showingTimeout?: number | DataLink
|
|
15
15
|
/* Canvas ID for change next canvas on showing timeout */
|
|
16
16
|
nextCanvasId?: string | DataLink | (() => Canvas)
|
|
17
|
-
/*
|
|
17
|
+
/* Background color of Canvas */
|
|
18
18
|
backgroundColor?: string | DataLink
|
|
19
19
|
/* Dismiss keyboard on press */
|
|
20
20
|
dismissKeyboardOnPress?: boolean | DataLink
|
package/types/generators.ts
CHANGED
|
@@ -4334,6 +4334,8 @@ Default property:
|
|
|
4334
4334
|
property?: {
|
|
4335
4335
|
/* Enable MCP server. If enabled and Listening is false, the generator can still provide application-scoped resources. */
|
|
4336
4336
|
enabled?: boolean | DataLink
|
|
4337
|
+
/* Application-scoped generator key, key cannot be the same with other application-scoped generators */
|
|
4338
|
+
globalGeneratorKey?: string | DataLink
|
|
4337
4339
|
/* Start MCP server */
|
|
4338
4340
|
listening?: boolean | DataLink
|
|
4339
4341
|
/* HTTP server port */
|
|
@@ -4688,8 +4690,10 @@ Default property:
|
|
|
4688
4690
|
sendHeaders?: {} | DataLink
|
|
4689
4691
|
/* Bearer token for authentication */
|
|
4690
4692
|
bearerToken?: string | DataLink
|
|
4691
|
-
/* Generator
|
|
4693
|
+
/* Generator MCP Server ID for direct link */
|
|
4692
4694
|
generatorId?: string | DataLink
|
|
4695
|
+
/* Application-scoped key of Generator MCP Server for direct link (If ID is not provided) */
|
|
4696
|
+
generatorKey?: string | DataLink
|
|
4693
4697
|
/* Name of the MCP client */
|
|
4694
4698
|
name?: string | DataLink
|
|
4695
4699
|
/* Version of the MCP client */
|