@fugood/bricks-project 2.21.0-beta.14.test0 → 2.21.0-beta.14.test1

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 CHANGED
@@ -446,6 +446,7 @@ export const compile = (app: Application) => {
446
446
  )?.body
447
447
 
448
448
  calc.script_config = {
449
+ note: scriptCalc.note,
449
450
  code: escodegen.generate(declarationBody),
450
451
  enable_async: scriptCalc.enableAsync,
451
452
  inputs: scriptCalc.inputs.reduce((acc, input) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fugood/bricks-project",
3
- "version": "2.21.0-beta.14.test0",
3
+ "version": "2.21.0-beta.14.test1",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "node scripts/build.js"
@@ -68,6 +68,7 @@ export type DataCalculationMap = DataCalculation & {
68
68
 
69
69
  export type DataCalculationScript = DataCalculation & {
70
70
  __typename: 'DataCalculationScript'
71
+ note?: string
71
72
  enableAsync: boolean
72
73
  code: string
73
74
  inputs: Array<{