@fugood/bricks-project 2.23.0-beta.48 → 2.23.0-beta.49

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.
@@ -0,0 +1,21 @@
1
+ /* Auto generated by build script */
2
+ import type { Data } from './data'
3
+ import type { DataCalculation } from './data-calc'
4
+
5
+ export type DataCalculationScript = DataCalculation & {
6
+ __typename: 'DataCalculationScript'
7
+ note?: string
8
+ enableAsync: boolean
9
+ code: string
10
+ inputs: Array<{
11
+ data: () => Data
12
+ key: string
13
+ trigger?: boolean
14
+ }>
15
+ error: (() => Data) | null
16
+ output: (() => Data) | null
17
+ outputs: Array<{
18
+ key: string
19
+ data: () => Data
20
+ }>
21
+ }