@nocobase/plugin-flow-engine 2.1.0-beta.14 → 2.1.0-beta.16

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.
Files changed (229) hide show
  1. package/dist/ai/ai-employees/nathan/index.d.ts +10 -0
  2. package/dist/ai/ai-employees/nathan/index.js +41 -0
  3. package/dist/ai/ai-employees/nathan/prompt.md +132 -0
  4. package/dist/ai/ai-employees/nathan/skills/frontend-developer/SKILLS.md +69 -0
  5. package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.js +2 -2
  6. package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.js +2 -2
  7. package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.js +2 -2
  8. package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.js +2 -2
  9. package/dist/ai/docs/runjs/context/block-model.md +35 -35
  10. package/dist/ai/docs/runjs/context/collection-field.md +53 -51
  11. package/dist/ai/docs/runjs/context/collection.md +39 -39
  12. package/dist/ai/docs/runjs/context/data-source-manager.md +40 -30
  13. package/dist/ai/docs/runjs/context/data-source.md +52 -44
  14. package/dist/ai/docs/runjs/context/element.md +44 -38
  15. package/dist/ai/docs/runjs/context/exit-all.md +37 -35
  16. package/dist/ai/docs/runjs/context/exit.md +38 -35
  17. package/dist/ai/docs/runjs/context/filter-manager.md +36 -30
  18. package/dist/ai/docs/runjs/context/form.md +57 -57
  19. package/dist/ai/docs/runjs/context/get-model.md +22 -21
  20. package/dist/ai/docs/runjs/context/get-value.md +20 -19
  21. package/dist/ai/docs/runjs/context/get-var.md +61 -55
  22. package/dist/ai/docs/runjs/context/i18n.md +17 -14
  23. package/dist/ai/docs/runjs/context/import-async.md +333 -45
  24. package/dist/ai/docs/runjs/context/init-resource.md +20 -20
  25. package/dist/ai/docs/runjs/context/libs.md +31 -31
  26. package/dist/ai/docs/runjs/context/location.md +34 -31
  27. package/dist/ai/docs/runjs/context/logger.md +41 -40
  28. package/dist/ai/docs/runjs/context/make-resource.md +27 -26
  29. package/dist/ai/docs/runjs/context/message.md +42 -41
  30. package/dist/ai/docs/runjs/context/modal.md +44 -44
  31. package/dist/ai/docs/runjs/context/model.md +36 -33
  32. package/dist/ai/docs/runjs/context/notification.md +41 -40
  33. package/dist/ai/docs/runjs/context/off.md +14 -14
  34. package/dist/ai/docs/runjs/context/on.md +30 -29
  35. package/dist/ai/docs/runjs/context/open-view.md +40 -40
  36. package/dist/ai/docs/runjs/context/render.md +37 -32
  37. package/dist/ai/docs/runjs/context/request.md +46 -45
  38. package/dist/ai/docs/runjs/context/require-async.md +28 -25
  39. package/dist/ai/docs/runjs/context/resource.md +34 -34
  40. package/dist/ai/docs/runjs/context/route.md +36 -34
  41. package/dist/ai/docs/runjs/context/router.md +43 -31
  42. package/dist/ai/docs/runjs/context/set-value.md +18 -17
  43. package/dist/ai/docs/runjs/context/t.md +20 -17
  44. package/dist/ai/docs/runjs/context/view.md +49 -46
  45. package/dist/ai/docs/runjs/document.md +1 -0
  46. package/dist/ai/docs/runjs/import-modules.md +32 -32
  47. package/dist/ai/docs/runjs/index.md +13 -13
  48. package/dist/ai/docs/runjs/jsx.md +19 -19
  49. package/dist/ai/docs/runjs/model/form-block-model.md +1 -3
  50. package/dist/ai/docs/runjs/render.md +15 -15
  51. package/dist/ai/docs/runjs/resource/api-resource.md +53 -53
  52. package/dist/ai/docs/runjs/resource/multi-record-resource.md +64 -64
  53. package/dist/ai/docs/runjs/resource/single-record-resource.md +55 -55
  54. package/dist/ai/docs/runjs/resource/sql-resource.md +57 -57
  55. package/dist/ai/docs/runjs/window.md +5 -5
  56. package/dist/client/index.js +1 -1
  57. package/dist/externalVersion.js +11 -10
  58. package/dist/node_modules/ses/dist/ses.cjs +1 -1
  59. package/dist/node_modules/ses/package.json +1 -1
  60. package/dist/node_modules/zod/index.cjs +1 -1
  61. package/dist/node_modules/zod/package.json +1 -1
  62. package/dist/server/flow-surfaces/action-scope.d.ts +38 -0
  63. package/dist/server/flow-surfaces/action-scope.js +152 -0
  64. package/dist/server/flow-surfaces/apply/compiler.d.ts +13 -0
  65. package/dist/server/flow-surfaces/apply/compiler.js +969 -0
  66. package/dist/server/flow-surfaces/apply/layout.d.ts +34 -0
  67. package/dist/server/flow-surfaces/apply/layout.js +175 -0
  68. package/dist/server/flow-surfaces/apply/matching.d.ts +16 -0
  69. package/dist/server/flow-surfaces/apply/matching.js +181 -0
  70. package/dist/server/flow-surfaces/approval/blueprint-service.d.ts +84 -0
  71. package/dist/server/flow-surfaces/approval/blueprint-service.js +589 -0
  72. package/dist/server/flow-surfaces/approval/blueprint.d.ts +21 -0
  73. package/dist/server/flow-surfaces/approval/blueprint.js +187 -0
  74. package/dist/server/flow-surfaces/approval/builder.d.ts +225 -0
  75. package/dist/server/flow-surfaces/approval/builder.js +384 -0
  76. package/dist/server/flow-surfaces/approval/catalog-specs.d.ts +33 -0
  77. package/dist/server/flow-surfaces/approval/catalog-specs.js +156 -0
  78. package/dist/server/flow-surfaces/approval/index.d.ts +14 -0
  79. package/dist/server/flow-surfaces/approval/index.js +40 -0
  80. package/dist/server/flow-surfaces/approval/runtime-config.d.ts +44 -0
  81. package/dist/server/flow-surfaces/approval/runtime-config.js +299 -0
  82. package/dist/server/flow-surfaces/approval/semantic-use.d.ts +23 -0
  83. package/dist/server/flow-surfaces/approval/semantic-use.js +155 -0
  84. package/dist/server/flow-surfaces/association-title-field.d.ts +20 -0
  85. package/dist/server/flow-surfaces/association-title-field.js +158 -0
  86. package/dist/server/flow-surfaces/blueprint/compile-blocks.d.ts +14 -0
  87. package/dist/server/flow-surfaces/blueprint/compile-blocks.js +1007 -0
  88. package/dist/server/flow-surfaces/blueprint/compile-plan.d.ts +13 -0
  89. package/dist/server/flow-surfaces/blueprint/compile-plan.js +308 -0
  90. package/dist/server/flow-surfaces/blueprint/compile-reaction.d.ts +11 -0
  91. package/dist/server/flow-surfaces/blueprint/compile-reaction.js +72 -0
  92. package/dist/server/flow-surfaces/blueprint/defaults.d.ts +26 -0
  93. package/dist/server/flow-surfaces/blueprint/defaults.js +133 -0
  94. package/dist/server/flow-surfaces/blueprint/index.d.ts +12 -0
  95. package/dist/server/flow-surfaces/blueprint/index.js +44 -0
  96. package/dist/server/flow-surfaces/blueprint/normalize-document.d.ts +10 -0
  97. package/dist/server/flow-surfaces/blueprint/normalize-document.js +416 -0
  98. package/dist/server/flow-surfaces/blueprint/private-utils.d.ts +26 -0
  99. package/dist/server/flow-surfaces/blueprint/private-utils.js +182 -0
  100. package/dist/server/flow-surfaces/blueprint/public-types.d.ts +193 -0
  101. package/dist/server/flow-surfaces/blueprint/public-types.js +24 -0
  102. package/dist/server/flow-surfaces/builder.d.ts +211 -0
  103. package/dist/server/flow-surfaces/builder.js +1029 -0
  104. package/dist/server/flow-surfaces/catalog-smart.d.ts +18 -0
  105. package/dist/server/flow-surfaces/catalog-smart.js +239 -0
  106. package/dist/server/flow-surfaces/catalog-smart.projector.d.ts +15 -0
  107. package/dist/server/flow-surfaces/catalog-smart.projector.js +157 -0
  108. package/dist/server/flow-surfaces/catalog-smart.types.d.ts +99 -0
  109. package/dist/server/flow-surfaces/catalog-smart.types.js +24 -0
  110. package/dist/server/flow-surfaces/catalog.d.ts +78 -0
  111. package/dist/server/flow-surfaces/catalog.js +3496 -0
  112. package/dist/server/flow-surfaces/chart-config.d.ts +121 -0
  113. package/dist/server/flow-surfaces/chart-config.js +1394 -0
  114. package/dist/server/flow-surfaces/compose-compiler.d.ts +108 -0
  115. package/dist/server/flow-surfaces/compose-compiler.js +167 -0
  116. package/dist/server/flow-surfaces/compose-runtime.d.ts +93 -0
  117. package/dist/server/flow-surfaces/compose-runtime.js +375 -0
  118. package/dist/server/flow-surfaces/configure-options.d.ts +23 -0
  119. package/dist/server/flow-surfaces/configure-options.js +827 -0
  120. package/dist/server/flow-surfaces/constants.d.ts +351 -0
  121. package/dist/server/flow-surfaces/constants.js +104 -0
  122. package/dist/server/flow-surfaces/context.d.ts +72 -0
  123. package/dist/server/flow-surfaces/context.js +556 -0
  124. package/dist/server/flow-surfaces/contract-guard.d.ts +19 -0
  125. package/dist/server/flow-surfaces/contract-guard.js +402 -0
  126. package/dist/server/flow-surfaces/default-action-popup.d.ts +63 -0
  127. package/dist/server/flow-surfaces/default-action-popup.js +322 -0
  128. package/dist/server/flow-surfaces/default-block-actions.d.ts +32 -0
  129. package/dist/server/flow-surfaces/default-block-actions.js +185 -0
  130. package/dist/server/flow-surfaces/errors.d.ts +47 -0
  131. package/dist/server/flow-surfaces/errors.js +145 -0
  132. package/dist/server/flow-surfaces/executor.d.ts +23 -0
  133. package/dist/server/flow-surfaces/executor.js +132 -0
  134. package/dist/server/flow-surfaces/field-binding-registry.d.ts +23 -0
  135. package/dist/server/flow-surfaces/field-binding-registry.js +391 -0
  136. package/dist/server/flow-surfaces/field-semantics.d.ts +15 -0
  137. package/dist/server/flow-surfaces/field-semantics.js +81 -0
  138. package/dist/server/flow-surfaces/filter-group.d.ts +15 -0
  139. package/dist/server/flow-surfaces/filter-group.js +94 -0
  140. package/dist/server/flow-surfaces/index.d.ts +11 -0
  141. package/dist/server/flow-surfaces/index.js +243 -0
  142. package/dist/server/flow-surfaces/locator.d.ts +28 -0
  143. package/dist/server/flow-surfaces/locator.js +240 -0
  144. package/dist/server/flow-surfaces/node-use-sets.d.ts +15 -0
  145. package/dist/server/flow-surfaces/node-use-sets.js +131 -0
  146. package/dist/server/flow-surfaces/payload-shape.d.ts +9 -0
  147. package/dist/server/flow-surfaces/payload-shape.js +61 -0
  148. package/dist/server/flow-surfaces/placement.d.ts +33 -0
  149. package/dist/server/flow-surfaces/placement.js +195 -0
  150. package/dist/server/flow-surfaces/planning/action-specs.d.ts +179 -0
  151. package/dist/server/flow-surfaces/planning/action-specs.js +190 -0
  152. package/dist/server/flow-surfaces/planning/compiler.d.ts +37 -0
  153. package/dist/server/flow-surfaces/planning/compiler.js +376 -0
  154. package/dist/server/flow-surfaces/planning/context.d.ts +30 -0
  155. package/dist/server/flow-surfaces/planning/context.js +139 -0
  156. package/dist/server/flow-surfaces/planning/created-keys.d.ts +34 -0
  157. package/dist/server/flow-surfaces/planning/created-keys.js +375 -0
  158. package/dist/server/flow-surfaces/planning/key-kind.d.ts +11 -0
  159. package/dist/server/flow-surfaces/planning/key-kind.js +88 -0
  160. package/dist/server/flow-surfaces/planning/key-persistence.d.ts +34 -0
  161. package/dist/server/flow-surfaces/planning/key-persistence.js +148 -0
  162. package/dist/server/flow-surfaces/planning/key-registry.d.ts +40 -0
  163. package/dist/server/flow-surfaces/planning/key-registry.js +206 -0
  164. package/dist/server/flow-surfaces/planning/runtime.d.ts +37 -0
  165. package/dist/server/flow-surfaces/planning/runtime.js +259 -0
  166. package/dist/server/flow-surfaces/planning/step-link.d.ts +14 -0
  167. package/dist/server/flow-surfaces/planning/step-link.js +104 -0
  168. package/dist/server/flow-surfaces/planning/types.d.ts +55 -0
  169. package/dist/server/flow-surfaces/planning/types.js +24 -0
  170. package/dist/server/flow-surfaces/public-data-surface-default-filter.d.ts +20 -0
  171. package/dist/server/flow-surfaces/public-data-surface-default-filter.js +111 -0
  172. package/dist/server/flow-surfaces/reaction/errors.d.ts +20 -0
  173. package/dist/server/flow-surfaces/reaction/errors.js +69 -0
  174. package/dist/server/flow-surfaces/reaction/field-value.d.ts +34 -0
  175. package/dist/server/flow-surfaces/reaction/field-value.js +181 -0
  176. package/dist/server/flow-surfaces/reaction/fingerprint.d.ts +16 -0
  177. package/dist/server/flow-surfaces/reaction/fingerprint.js +71 -0
  178. package/dist/server/flow-surfaces/reaction/linkage.d.ts +136 -0
  179. package/dist/server/flow-surfaces/reaction/linkage.js +882 -0
  180. package/dist/server/flow-surfaces/reaction/meta.d.ts +11 -0
  181. package/dist/server/flow-surfaces/reaction/meta.js +451 -0
  182. package/dist/server/flow-surfaces/reaction/registry.d.ts +156 -0
  183. package/dist/server/flow-surfaces/reaction/registry.js +206 -0
  184. package/dist/server/flow-surfaces/reaction/resolver.d.ts +22 -0
  185. package/dist/server/flow-surfaces/reaction/resolver.js +202 -0
  186. package/dist/server/flow-surfaces/reaction/types.d.ts +241 -0
  187. package/dist/server/flow-surfaces/reaction/types.js +24 -0
  188. package/dist/server/flow-surfaces/reaction/utils.d.ts +17 -0
  189. package/dist/server/flow-surfaces/reaction/utils.js +67 -0
  190. package/dist/server/flow-surfaces/reaction/value-expr.d.ts +15 -0
  191. package/dist/server/flow-surfaces/reaction/value-expr.js +209 -0
  192. package/dist/server/flow-surfaces/reference-guards.d.ts +19 -0
  193. package/dist/server/flow-surfaces/reference-guards.js +103 -0
  194. package/dist/server/flow-surfaces/route-sync.d.ts +47 -0
  195. package/dist/server/flow-surfaces/route-sync.js +392 -0
  196. package/dist/server/flow-surfaces/service-helpers.d.ts +42 -0
  197. package/dist/server/flow-surfaces/service-helpers.js +377 -0
  198. package/dist/server/flow-surfaces/service-utils.d.ts +108 -0
  199. package/dist/server/flow-surfaces/service-utils.js +811 -0
  200. package/dist/server/flow-surfaces/service.d.ts +773 -0
  201. package/dist/server/flow-surfaces/service.js +13008 -0
  202. package/dist/server/flow-surfaces/support-matrix.d.ts +31 -0
  203. package/dist/server/flow-surfaces/support-matrix.js +259 -0
  204. package/dist/server/flow-surfaces/surface-context.d.ts +52 -0
  205. package/dist/server/flow-surfaces/surface-context.js +437 -0
  206. package/dist/server/flow-surfaces/template-compatibility.d.ts +42 -0
  207. package/dist/server/flow-surfaces/template-compatibility.js +189 -0
  208. package/dist/server/flow-surfaces/template-display.d.ts +20 -0
  209. package/dist/server/flow-surfaces/template-display.js +289 -0
  210. package/dist/server/flow-surfaces/template-service-utils.d.ts +62 -0
  211. package/dist/server/flow-surfaces/template-service-utils.js +281 -0
  212. package/dist/server/flow-surfaces/types.d.ts +288 -0
  213. package/dist/server/flow-surfaces/types.js +24 -0
  214. package/dist/server/plugin.js +2 -0
  215. package/dist/swagger/flow-surfaces.d.ts +5964 -0
  216. package/dist/swagger/flow-surfaces.examples.d.ts +1533 -0
  217. package/dist/swagger/flow-surfaces.examples.js +1758 -0
  218. package/dist/swagger/flow-surfaces.js +5315 -0
  219. package/dist/swagger/flow-surfaces.template-action-docs.d.ts +62 -0
  220. package/dist/swagger/flow-surfaces.template-action-docs.js +121 -0
  221. package/dist/swagger/flow-surfaces.template-schemas.d.ts +239 -0
  222. package/dist/swagger/flow-surfaces.template-schemas.js +255 -0
  223. package/dist/swagger/index.d.ts +5969 -0
  224. package/dist/swagger/index.js +50 -0
  225. package/package.json +2 -2
  226. /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextApis.d.ts +0 -0
  227. /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextEnvs.d.ts +0 -0
  228. /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/getContextVars.d.ts +0 -0
  229. /package/dist/ai/{tools → ai-employees/nathan/skills/frontend-developer/tools}/lintAndTestJS.d.ts +0 -0
@@ -0,0 +1,1533 @@
1
+ export declare const flowSurfaceExamples: {
2
+ catalog: {
3
+ target: {
4
+ uid: string;
5
+ };
6
+ };
7
+ context: {
8
+ target: {
9
+ uid: string;
10
+ };
11
+ path: string;
12
+ maxDepth: number;
13
+ };
14
+ getReactionMeta: {
15
+ target: {
16
+ uid: string;
17
+ };
18
+ };
19
+ describeSurface: {
20
+ locator: {
21
+ pageSchemaUid: string;
22
+ };
23
+ bindKeys: {
24
+ key: string;
25
+ locator: {
26
+ uid: string;
27
+ };
28
+ expectedKind: string;
29
+ }[];
30
+ };
31
+ applyBlueprint: {
32
+ version: string;
33
+ mode: string;
34
+ navigation: {
35
+ group: {
36
+ title: string;
37
+ };
38
+ item: {
39
+ title: string;
40
+ };
41
+ };
42
+ page: {
43
+ title: string;
44
+ documentTitle: string;
45
+ enableHeader: boolean;
46
+ displayTitle: boolean;
47
+ };
48
+ tabs: {
49
+ key: string;
50
+ title: string;
51
+ blocks: ({
52
+ key: string;
53
+ type: string;
54
+ collection: string;
55
+ fields: (string | {
56
+ key: string;
57
+ field: string;
58
+ })[];
59
+ fieldsLayout: {
60
+ rows: (string[] | {
61
+ key: string;
62
+ span: number;
63
+ }[])[];
64
+ };
65
+ actions: string[];
66
+ defaultFilter?: undefined;
67
+ } | {
68
+ key: string;
69
+ type: string;
70
+ collection: string;
71
+ defaultFilter: {
72
+ logic: string;
73
+ items: {
74
+ path: string;
75
+ operator: string;
76
+ value: string;
77
+ }[];
78
+ };
79
+ fields: string[];
80
+ actions: ({
81
+ key: string;
82
+ type: string;
83
+ settings: {
84
+ defaultFilter: {
85
+ logic: string;
86
+ items: {
87
+ path: string;
88
+ operator: string;
89
+ value: string;
90
+ }[];
91
+ };
92
+ };
93
+ } | {
94
+ key: string;
95
+ type: string;
96
+ settings?: undefined;
97
+ })[];
98
+ fieldsLayout?: undefined;
99
+ })[];
100
+ layout: {
101
+ rows: string[][];
102
+ };
103
+ }[];
104
+ reaction: {
105
+ items: ({
106
+ type: string;
107
+ target: string;
108
+ rules: {
109
+ key: string;
110
+ targetPath: string;
111
+ mode: string;
112
+ value: {
113
+ source: string;
114
+ value: string;
115
+ };
116
+ }[];
117
+ } | {
118
+ type: string;
119
+ target: string;
120
+ rules: {
121
+ key: string;
122
+ when: {
123
+ logic: string;
124
+ items: {
125
+ path: string;
126
+ operator: string;
127
+ }[];
128
+ };
129
+ then: {
130
+ type: string;
131
+ state: string;
132
+ }[];
133
+ }[];
134
+ } | {
135
+ type: string;
136
+ target: string;
137
+ rules: {
138
+ key: string;
139
+ when: {
140
+ logic: string;
141
+ items: {
142
+ path: string;
143
+ operator: string;
144
+ }[];
145
+ };
146
+ then: {
147
+ type: string;
148
+ items: {
149
+ targetPath: string;
150
+ value: {
151
+ source: string;
152
+ version: string;
153
+ code: string;
154
+ };
155
+ }[];
156
+ }[];
157
+ }[];
158
+ })[];
159
+ };
160
+ };
161
+ applyBlueprintReplace: {
162
+ version: string;
163
+ mode: string;
164
+ target: {
165
+ pageSchemaUid: string;
166
+ };
167
+ page: {
168
+ title: string;
169
+ documentTitle: string;
170
+ displayTitle: boolean;
171
+ enableTabs: boolean;
172
+ };
173
+ tabs: {
174
+ title: string;
175
+ blocks: {
176
+ key: string;
177
+ type: string;
178
+ collection: string;
179
+ fields: string[];
180
+ }[];
181
+ }[];
182
+ };
183
+ applyApprovalBlueprintInitiator: {
184
+ version: string;
185
+ surface: string;
186
+ workflowId: number;
187
+ blocks: {
188
+ key: string;
189
+ type: string;
190
+ resource: {
191
+ dataSourceKey: string;
192
+ collectionName: string;
193
+ };
194
+ fields: string[];
195
+ actions: string[];
196
+ }[];
197
+ layout: {
198
+ rows: string[][];
199
+ };
200
+ };
201
+ applyApprovalBlueprintApprover: {
202
+ version: string;
203
+ surface: string;
204
+ nodeId: number;
205
+ blocks: ({
206
+ key: string;
207
+ type: string;
208
+ resource: {
209
+ dataSourceKey: string;
210
+ collectionName: string;
211
+ };
212
+ fields: string[];
213
+ actions: (string | {
214
+ type: string;
215
+ settings: {
216
+ approvalReturn: {
217
+ type: string;
218
+ count: number;
219
+ };
220
+ };
221
+ })[];
222
+ } | {
223
+ key: string;
224
+ type: string;
225
+ resource: {
226
+ dataSourceKey: string;
227
+ collectionName: string;
228
+ };
229
+ fields: string[];
230
+ actions?: undefined;
231
+ })[];
232
+ layout: {
233
+ rows: string[][];
234
+ };
235
+ };
236
+ applyApprovalBlueprintTaskCard: {
237
+ version: string;
238
+ surface: string;
239
+ nodeId: number;
240
+ fields: {
241
+ key: string;
242
+ fieldPath: string;
243
+ }[];
244
+ layout: {
245
+ rows: string[][];
246
+ };
247
+ };
248
+ setFieldValueRules: {
249
+ target: {
250
+ uid: string;
251
+ };
252
+ rules: {
253
+ key: string;
254
+ targetPath: string;
255
+ mode: string;
256
+ value: {
257
+ source: string;
258
+ value: string;
259
+ };
260
+ }[];
261
+ expectedFingerprint: string;
262
+ };
263
+ setBlockLinkageRules: {
264
+ target: {
265
+ uid: string;
266
+ };
267
+ rules: {
268
+ key: string;
269
+ when: {
270
+ logic: string;
271
+ items: {
272
+ path: string;
273
+ operator: string;
274
+ }[];
275
+ };
276
+ then: {
277
+ type: string;
278
+ state: string;
279
+ }[];
280
+ }[];
281
+ expectedFingerprint: string;
282
+ };
283
+ setFieldLinkageRules: {
284
+ target: {
285
+ uid: string;
286
+ };
287
+ rules: {
288
+ key: string;
289
+ when: {
290
+ logic: string;
291
+ items: {
292
+ path: string;
293
+ operator: string;
294
+ }[];
295
+ };
296
+ then: {
297
+ type: string;
298
+ items: {
299
+ targetPath: string;
300
+ value: {
301
+ source: string;
302
+ version: string;
303
+ code: string;
304
+ };
305
+ }[];
306
+ }[];
307
+ }[];
308
+ expectedFingerprint: string;
309
+ };
310
+ setActionLinkageRules: {
311
+ target: {
312
+ uid: string;
313
+ };
314
+ expectedFingerprint: string;
315
+ rules: {
316
+ key: string;
317
+ when: {
318
+ logic: string;
319
+ items: {
320
+ path: string;
321
+ operator: string;
322
+ }[];
323
+ };
324
+ then: {
325
+ type: string;
326
+ state: string;
327
+ }[];
328
+ }[];
329
+ };
330
+ compose: {
331
+ target: {
332
+ uid: string;
333
+ };
334
+ mode: string;
335
+ blocks: ({
336
+ key: string;
337
+ type: string;
338
+ resource: {
339
+ dataSourceKey: string;
340
+ collectionName: string;
341
+ };
342
+ fields: {
343
+ fieldPath: string;
344
+ target: string;
345
+ }[];
346
+ fieldsLayout: {
347
+ rows: {
348
+ key: string;
349
+ span: number;
350
+ }[][];
351
+ };
352
+ actions: string[];
353
+ defaultFilter?: undefined;
354
+ recordActions?: undefined;
355
+ } | {
356
+ key: string;
357
+ type: string;
358
+ resource: {
359
+ dataSourceKey: string;
360
+ collectionName: string;
361
+ };
362
+ defaultFilter: {
363
+ logic: string;
364
+ items: {
365
+ path: string;
366
+ operator: string;
367
+ value: string;
368
+ }[];
369
+ };
370
+ fields: (string | {
371
+ fieldPath: string;
372
+ })[];
373
+ actions: (string | {
374
+ type: string;
375
+ settings: {
376
+ defaultFilter: {
377
+ logic: string;
378
+ items: {
379
+ path: string;
380
+ operator: string;
381
+ value: string;
382
+ }[];
383
+ };
384
+ };
385
+ })[];
386
+ recordActions: (string | {
387
+ type: string;
388
+ popup: {
389
+ mode: string;
390
+ blocks: {
391
+ key: string;
392
+ type: string;
393
+ resource: {
394
+ dataSourceKey: string;
395
+ collectionName: string;
396
+ };
397
+ fields: string[];
398
+ }[];
399
+ };
400
+ })[];
401
+ fieldsLayout?: undefined;
402
+ })[];
403
+ layout: {
404
+ rows: {
405
+ key: string;
406
+ span: number;
407
+ }[][];
408
+ };
409
+ };
410
+ composeStatic: {
411
+ target: {
412
+ uid: string;
413
+ };
414
+ blocks: ({
415
+ key: string;
416
+ type: string;
417
+ settings: {
418
+ content: string;
419
+ mode?: undefined;
420
+ url?: undefined;
421
+ height?: undefined;
422
+ layout?: undefined;
423
+ ellipsis?: undefined;
424
+ };
425
+ } | {
426
+ key: string;
427
+ type: string;
428
+ settings: {
429
+ mode: string;
430
+ url: string;
431
+ height: number;
432
+ content?: undefined;
433
+ layout?: undefined;
434
+ ellipsis?: undefined;
435
+ };
436
+ } | {
437
+ key: string;
438
+ type: string;
439
+ settings: {
440
+ layout: string;
441
+ ellipsis: boolean;
442
+ content?: undefined;
443
+ mode?: undefined;
444
+ url?: undefined;
445
+ height?: undefined;
446
+ };
447
+ })[];
448
+ layout: {
449
+ rows: string[][];
450
+ };
451
+ };
452
+ composeListRich: {
453
+ target: {
454
+ uid: string;
455
+ };
456
+ blocks: {
457
+ key: string;
458
+ type: string;
459
+ resource: {
460
+ dataSourceKey: string;
461
+ collectionName: string;
462
+ };
463
+ defaultFilter: {
464
+ logic: string;
465
+ items: {
466
+ path: string;
467
+ operator: string;
468
+ value: string;
469
+ }[];
470
+ };
471
+ fields: (string | {
472
+ fieldPath: string;
473
+ })[];
474
+ actions: string[];
475
+ recordActions: (string | {
476
+ type: string;
477
+ popup: {
478
+ mode: string;
479
+ blocks: {
480
+ key: string;
481
+ type: string;
482
+ resource: {
483
+ dataSourceKey: string;
484
+ collectionName: string;
485
+ };
486
+ fields: string[];
487
+ }[];
488
+ };
489
+ })[];
490
+ settings: {
491
+ pageSize: number;
492
+ layout: string;
493
+ };
494
+ }[];
495
+ };
496
+ composeGridCardRich: {
497
+ target: {
498
+ uid: string;
499
+ };
500
+ blocks: {
501
+ key: string;
502
+ type: string;
503
+ resource: {
504
+ dataSourceKey: string;
505
+ collectionName: string;
506
+ };
507
+ defaultFilter: {
508
+ logic: string;
509
+ items: {
510
+ path: string;
511
+ operator: string;
512
+ value: string;
513
+ }[];
514
+ };
515
+ fields: (string | {
516
+ fieldPath: string;
517
+ })[];
518
+ actions: string[];
519
+ recordActions: string[];
520
+ settings: {
521
+ columns: number;
522
+ rowCount: number;
523
+ layout: string;
524
+ };
525
+ }[];
526
+ };
527
+ composeJsBlock: {
528
+ target: {
529
+ uid: string;
530
+ };
531
+ blocks: {
532
+ key: string;
533
+ type: string;
534
+ settings: {
535
+ title: string;
536
+ description: string;
537
+ className: string;
538
+ version: string;
539
+ code: string;
540
+ };
541
+ }[];
542
+ };
543
+ configure: {
544
+ target: {
545
+ uid: string;
546
+ };
547
+ changes: {
548
+ clickToOpen: boolean;
549
+ openView: {
550
+ dataSourceKey: string;
551
+ collectionName: string;
552
+ associationName: string;
553
+ mode: string;
554
+ };
555
+ };
556
+ };
557
+ configureAssociationPopup: {
558
+ target: {
559
+ uid: string;
560
+ };
561
+ changes: {
562
+ clickToOpen: boolean;
563
+ openView: {
564
+ dataSourceKey: string;
565
+ collectionName: string;
566
+ associationName: string;
567
+ mode: string;
568
+ };
569
+ };
570
+ };
571
+ configureBlock: {
572
+ target: {
573
+ uid: string;
574
+ };
575
+ changes: {
576
+ pageSize: number;
577
+ dataScope: {
578
+ logic: string;
579
+ items: {
580
+ path: string;
581
+ operator: string;
582
+ value: string;
583
+ }[];
584
+ };
585
+ sorting: {
586
+ field: string;
587
+ direction: string;
588
+ }[];
589
+ layout: string;
590
+ };
591
+ };
592
+ createMenu: {
593
+ title: string;
594
+ type: string;
595
+ parentMenuRouteId: number;
596
+ };
597
+ updateMenu: {
598
+ menuRouteId: number;
599
+ title: string;
600
+ parentMenuRouteId: any;
601
+ };
602
+ configureAction: {
603
+ target: {
604
+ uid: string;
605
+ };
606
+ changes: {
607
+ title: string;
608
+ type: string;
609
+ color: string;
610
+ htmlType: string;
611
+ position: string;
612
+ confirm: {
613
+ enable: boolean;
614
+ title: string;
615
+ content: string;
616
+ };
617
+ assignValues: {
618
+ status: string;
619
+ };
620
+ };
621
+ };
622
+ configureJsBlock: {
623
+ target: {
624
+ uid: string;
625
+ };
626
+ changes: {
627
+ title: string;
628
+ description: string;
629
+ className: string;
630
+ version: string;
631
+ code: string;
632
+ };
633
+ };
634
+ configureJsAction: {
635
+ target: {
636
+ uid: string;
637
+ };
638
+ changes: {
639
+ title: string;
640
+ type: string;
641
+ version: string;
642
+ code: string;
643
+ };
644
+ };
645
+ configureJsItemAction: {
646
+ target: {
647
+ uid: string;
648
+ };
649
+ changes: {
650
+ title: string;
651
+ type: string;
652
+ version: string;
653
+ code: string;
654
+ };
655
+ };
656
+ configureJsField: {
657
+ target: {
658
+ uid: string;
659
+ };
660
+ changes: {
661
+ label: string;
662
+ version: string;
663
+ code: string;
664
+ };
665
+ };
666
+ configureJsColumn: {
667
+ target: {
668
+ uid: string;
669
+ };
670
+ changes: {
671
+ title: string;
672
+ width: number;
673
+ fixed: string;
674
+ version: string;
675
+ code: string;
676
+ };
677
+ };
678
+ configureJsItem: {
679
+ target: {
680
+ uid: string;
681
+ };
682
+ changes: {
683
+ label: string;
684
+ showLabel: boolean;
685
+ labelWidth: number;
686
+ version: string;
687
+ code: string;
688
+ };
689
+ };
690
+ configurePage: {
691
+ target: {
692
+ uid: string;
693
+ };
694
+ changes: {
695
+ icon: string;
696
+ enableHeader: boolean;
697
+ };
698
+ };
699
+ configureTableAdvanced: {
700
+ target: {
701
+ uid: string;
702
+ };
703
+ changes: {
704
+ quickEdit: boolean;
705
+ treeTable: boolean;
706
+ defaultExpandAllRows: boolean;
707
+ dragSort: boolean;
708
+ dragSortBy: string;
709
+ };
710
+ };
711
+ configureEditForm: {
712
+ target: {
713
+ uid: string;
714
+ };
715
+ changes: {
716
+ colon: boolean;
717
+ dataScope: {
718
+ logic: string;
719
+ items: {
720
+ path: string;
721
+ operator: string;
722
+ value: string;
723
+ }[];
724
+ };
725
+ };
726
+ };
727
+ configureDetailsCompatibility: {
728
+ target: {
729
+ uid: string;
730
+ };
731
+ changes: {
732
+ colon: boolean;
733
+ linkageRules: {
734
+ when: {
735
+ path: string;
736
+ operator: string;
737
+ value: string;
738
+ };
739
+ set: {
740
+ hidden: boolean;
741
+ };
742
+ }[];
743
+ };
744
+ };
745
+ composePopupCurrentRecord: {
746
+ target: {
747
+ uid: string;
748
+ };
749
+ mode: string;
750
+ blocks: {
751
+ key: string;
752
+ type: string;
753
+ resource: {
754
+ binding: string;
755
+ };
756
+ fields: string[];
757
+ }[];
758
+ };
759
+ composePopupAssociatedRecords: {
760
+ target: {
761
+ uid: string;
762
+ };
763
+ mode: string;
764
+ blocks: {
765
+ key: string;
766
+ type: string;
767
+ resource: {
768
+ binding: string;
769
+ associationField: string;
770
+ };
771
+ fields: string[];
772
+ actions: string[];
773
+ recordActions: string[];
774
+ }[];
775
+ };
776
+ configureActionModesCompatibility: {
777
+ target: {
778
+ uid: string;
779
+ };
780
+ changes: {
781
+ linkageRules: {
782
+ when: {
783
+ path: string;
784
+ operator: string;
785
+ value: string;
786
+ };
787
+ set: {
788
+ disabled: boolean;
789
+ };
790
+ }[];
791
+ editMode: string;
792
+ updateMode: string;
793
+ duplicateMode: string;
794
+ collapsedRows: number;
795
+ defaultCollapsed: boolean;
796
+ emailFieldNames: string[];
797
+ defaultSelectAllRecords: boolean;
798
+ };
799
+ };
800
+ createPage: {
801
+ menuRouteId: number;
802
+ title: string;
803
+ tabTitle: string;
804
+ enableTabs: boolean;
805
+ displayTitle: boolean;
806
+ documentTitle: string;
807
+ tabDocumentTitle: string;
808
+ };
809
+ addTab: {
810
+ target: {
811
+ uid: string;
812
+ };
813
+ title: string;
814
+ icon: string;
815
+ documentTitle: string;
816
+ };
817
+ updateTab: {
818
+ target: {
819
+ uid: string;
820
+ };
821
+ title: string;
822
+ icon: string;
823
+ documentTitle: string;
824
+ flowRegistry: {
825
+ beforeRenderApply: {
826
+ key: string;
827
+ on: string;
828
+ steps: {};
829
+ };
830
+ };
831
+ };
832
+ addPopupTab: {
833
+ target: {
834
+ uid: string;
835
+ };
836
+ title: string;
837
+ icon: string;
838
+ documentTitle: string;
839
+ };
840
+ updatePopupTab: {
841
+ target: {
842
+ uid: string;
843
+ };
844
+ title: string;
845
+ icon: string;
846
+ documentTitle: string;
847
+ flowRegistry: {
848
+ beforeRenderApply: {
849
+ key: string;
850
+ on: string;
851
+ steps: {};
852
+ };
853
+ };
854
+ };
855
+ movePopupTab: {
856
+ sourceUid: string;
857
+ targetUid: string;
858
+ position: string;
859
+ };
860
+ removePopupTab: {
861
+ target: {
862
+ uid: string;
863
+ };
864
+ };
865
+ addBlock: {
866
+ target: {
867
+ uid: string;
868
+ };
869
+ type: string;
870
+ resource: {
871
+ binding: string;
872
+ };
873
+ };
874
+ addTableBlockWithDefaultFilters: {
875
+ target: {
876
+ uid: string;
877
+ };
878
+ type: string;
879
+ defaultFilter: {
880
+ logic: string;
881
+ items: {
882
+ path: string;
883
+ operator: string;
884
+ value: string;
885
+ }[];
886
+ };
887
+ resourceInit: {
888
+ dataSourceKey: string;
889
+ collectionName: string;
890
+ };
891
+ defaultActionSettings: {
892
+ filter: {
893
+ filterableFieldNames: string[];
894
+ defaultFilter: {
895
+ logic: string;
896
+ items: {
897
+ path: string;
898
+ operator: string;
899
+ value: string;
900
+ }[];
901
+ };
902
+ };
903
+ };
904
+ };
905
+ addPopupAssociatedBlock: {
906
+ target: {
907
+ uid: string;
908
+ };
909
+ type: string;
910
+ resource: {
911
+ binding: string;
912
+ associationField: string;
913
+ };
914
+ };
915
+ addPopupOtherRecordsBlock: {
916
+ target: {
917
+ uid: string;
918
+ };
919
+ type: string;
920
+ resource: {
921
+ binding: string;
922
+ dataSourceKey: string;
923
+ collectionName: string;
924
+ };
925
+ };
926
+ addJsBlock: {
927
+ target: {
928
+ uid: string;
929
+ };
930
+ type: string;
931
+ settings: {
932
+ title: string;
933
+ description: string;
934
+ version: string;
935
+ code: string;
936
+ };
937
+ };
938
+ addField: {
939
+ target: {
940
+ uid: string;
941
+ };
942
+ fieldPath: string;
943
+ renderer: string;
944
+ settings: {
945
+ label: string;
946
+ code: string;
947
+ version: string;
948
+ };
949
+ };
950
+ addAssociationField: {
951
+ target: {
952
+ uid: string;
953
+ };
954
+ fieldPath: string;
955
+ associationPathName: string;
956
+ settings: {
957
+ title: string;
958
+ width: number;
959
+ };
960
+ popup: {
961
+ mode: string;
962
+ blocks: {
963
+ key: string;
964
+ type: string;
965
+ resource: {
966
+ binding: string;
967
+ };
968
+ fields: string[];
969
+ }[];
970
+ };
971
+ };
972
+ addJsColumn: {
973
+ target: {
974
+ uid: string;
975
+ };
976
+ type: string;
977
+ settings: {
978
+ title: string;
979
+ width: number;
980
+ version: string;
981
+ code: string;
982
+ };
983
+ };
984
+ addJsItem: {
985
+ target: {
986
+ uid: string;
987
+ };
988
+ type: string;
989
+ settings: {
990
+ label: string;
991
+ showLabel: boolean;
992
+ version: string;
993
+ code: string;
994
+ };
995
+ };
996
+ addFieldPopupTemplate: {
997
+ target: {
998
+ uid: string;
999
+ };
1000
+ fieldPath: string;
1001
+ popup: {
1002
+ template: {
1003
+ uid: string;
1004
+ mode: string;
1005
+ };
1006
+ };
1007
+ };
1008
+ addFieldAutoPopupTemplate: {
1009
+ target: {
1010
+ uid: string;
1011
+ };
1012
+ fieldPath: string;
1013
+ popup: {
1014
+ tryTemplate: boolean;
1015
+ };
1016
+ };
1017
+ addFieldDefaultEditPopup: {
1018
+ target: {
1019
+ uid: string;
1020
+ };
1021
+ fieldPath: string;
1022
+ popup: {
1023
+ defaultType: string;
1024
+ };
1025
+ };
1026
+ addFieldSavePopupTemplate: {
1027
+ target: {
1028
+ uid: string;
1029
+ };
1030
+ fieldPath: string;
1031
+ popup: {
1032
+ blocks: {
1033
+ key: string;
1034
+ type: string;
1035
+ resource: {
1036
+ binding: string;
1037
+ };
1038
+ fields: string[];
1039
+ }[];
1040
+ saveAsTemplate: {
1041
+ name: string;
1042
+ description: string;
1043
+ };
1044
+ };
1045
+ };
1046
+ addAction: {
1047
+ target: {
1048
+ uid: string;
1049
+ };
1050
+ type: string;
1051
+ settings: {
1052
+ title: string;
1053
+ confirm: boolean;
1054
+ };
1055
+ };
1056
+ addLinkAction: {
1057
+ target: {
1058
+ uid: string;
1059
+ };
1060
+ type: string;
1061
+ settings: {
1062
+ title: string;
1063
+ };
1064
+ };
1065
+ addAutoPopupAction: {
1066
+ target: {
1067
+ uid: string;
1068
+ };
1069
+ type: string;
1070
+ popup: {
1071
+ tryTemplate: boolean;
1072
+ };
1073
+ };
1074
+ addSavePopupAction: {
1075
+ target: {
1076
+ uid: string;
1077
+ };
1078
+ type: string;
1079
+ popup: {
1080
+ blocks: {
1081
+ key: string;
1082
+ type: string;
1083
+ resource: {
1084
+ binding: string;
1085
+ };
1086
+ fields: string[];
1087
+ }[];
1088
+ saveAsTemplate: {
1089
+ name: string;
1090
+ description: string;
1091
+ };
1092
+ };
1093
+ };
1094
+ addJsAction: {
1095
+ target: {
1096
+ uid: string;
1097
+ };
1098
+ type: string;
1099
+ settings: {
1100
+ title: string;
1101
+ type: string;
1102
+ version: string;
1103
+ code: string;
1104
+ };
1105
+ };
1106
+ addJsItemAction: {
1107
+ target: {
1108
+ uid: string;
1109
+ };
1110
+ type: string;
1111
+ settings: {
1112
+ title: string;
1113
+ type: string;
1114
+ version: string;
1115
+ code: string;
1116
+ };
1117
+ };
1118
+ addRecordAction: {
1119
+ target: {
1120
+ uid: string;
1121
+ };
1122
+ type: string;
1123
+ settings: {
1124
+ title: string;
1125
+ openView: {
1126
+ dataSourceKey: string;
1127
+ collectionName: string;
1128
+ mode: string;
1129
+ };
1130
+ };
1131
+ popup: {
1132
+ mode: string;
1133
+ blocks: {
1134
+ key: string;
1135
+ type: string;
1136
+ resource: {
1137
+ dataSourceKey: string;
1138
+ collectionName: string;
1139
+ };
1140
+ fields: string[];
1141
+ }[];
1142
+ };
1143
+ };
1144
+ addRecordAutoPopupTemplate: {
1145
+ target: {
1146
+ uid: string;
1147
+ };
1148
+ type: string;
1149
+ popup: {
1150
+ tryTemplate: boolean;
1151
+ };
1152
+ };
1153
+ addRecordSavePopupTemplate: {
1154
+ target: {
1155
+ uid: string;
1156
+ };
1157
+ type: string;
1158
+ popup: {
1159
+ blocks: {
1160
+ key: string;
1161
+ type: string;
1162
+ resource: {
1163
+ binding: string;
1164
+ };
1165
+ fields: string[];
1166
+ }[];
1167
+ saveAsTemplate: {
1168
+ name: string;
1169
+ description: string;
1170
+ };
1171
+ };
1172
+ };
1173
+ addRecordAddChildAction: {
1174
+ target: {
1175
+ uid: string;
1176
+ };
1177
+ type: string;
1178
+ settings: {
1179
+ title: string;
1180
+ openView: {
1181
+ dataSourceKey: string;
1182
+ collectionName: string;
1183
+ mode: string;
1184
+ };
1185
+ };
1186
+ };
1187
+ addRecordJsAction: {
1188
+ target: {
1189
+ uid: string;
1190
+ };
1191
+ type: string;
1192
+ settings: {
1193
+ title: string;
1194
+ type: string;
1195
+ version: string;
1196
+ code: string;
1197
+ };
1198
+ };
1199
+ addBlocks: {
1200
+ target: {
1201
+ uid: string;
1202
+ };
1203
+ blocks: ({
1204
+ key: string;
1205
+ type: string;
1206
+ defaultFilter: {
1207
+ logic: string;
1208
+ items: {
1209
+ path: string;
1210
+ operator: string;
1211
+ value: string;
1212
+ }[];
1213
+ };
1214
+ resourceInit: {
1215
+ dataSourceKey: string;
1216
+ collectionName: string;
1217
+ };
1218
+ settings: {
1219
+ title: string;
1220
+ pageSize: number;
1221
+ content?: undefined;
1222
+ };
1223
+ defaultActionSettings: {
1224
+ filter: {
1225
+ filterableFieldNames: string[];
1226
+ defaultFilter: {
1227
+ logic: string;
1228
+ items: {
1229
+ path: string;
1230
+ operator: string;
1231
+ value: string;
1232
+ }[];
1233
+ };
1234
+ };
1235
+ };
1236
+ } | {
1237
+ key: string;
1238
+ type: string;
1239
+ settings: {
1240
+ content: string;
1241
+ title?: undefined;
1242
+ pageSize?: undefined;
1243
+ };
1244
+ defaultFilter?: undefined;
1245
+ resourceInit?: undefined;
1246
+ defaultActionSettings?: undefined;
1247
+ })[];
1248
+ };
1249
+ addFields: {
1250
+ target: {
1251
+ uid: string;
1252
+ };
1253
+ fields: ({
1254
+ key: string;
1255
+ fieldPath: string;
1256
+ settings: {
1257
+ title: string;
1258
+ width: number;
1259
+ label?: undefined;
1260
+ code?: undefined;
1261
+ version?: undefined;
1262
+ };
1263
+ popup: {
1264
+ mode: string;
1265
+ blocks: {
1266
+ key: string;
1267
+ type: string;
1268
+ resource: {
1269
+ binding: string;
1270
+ };
1271
+ fields: string[];
1272
+ }[];
1273
+ };
1274
+ renderer?: undefined;
1275
+ } | {
1276
+ key: string;
1277
+ fieldPath: string;
1278
+ renderer: string;
1279
+ settings: {
1280
+ label: string;
1281
+ code: string;
1282
+ version: string;
1283
+ title?: undefined;
1284
+ width?: undefined;
1285
+ };
1286
+ popup?: undefined;
1287
+ })[];
1288
+ };
1289
+ addActions: {
1290
+ target: {
1291
+ uid: string;
1292
+ };
1293
+ actions: ({
1294
+ key: string;
1295
+ type: string;
1296
+ settings: {
1297
+ title: string;
1298
+ confirm: boolean;
1299
+ };
1300
+ } | {
1301
+ key: string;
1302
+ type: string;
1303
+ settings: {
1304
+ title: string;
1305
+ confirm?: undefined;
1306
+ };
1307
+ })[];
1308
+ };
1309
+ addRecordActions: {
1310
+ target: {
1311
+ uid: string;
1312
+ };
1313
+ recordActions: ({
1314
+ key: string;
1315
+ type: string;
1316
+ settings: {
1317
+ title: string;
1318
+ openView: {
1319
+ dataSourceKey: string;
1320
+ collectionName: string;
1321
+ mode: string;
1322
+ };
1323
+ };
1324
+ popup: {
1325
+ mode: string;
1326
+ blocks: {
1327
+ key: string;
1328
+ type: string;
1329
+ resource: {
1330
+ dataSourceKey: string;
1331
+ collectionName: string;
1332
+ };
1333
+ fields: string[];
1334
+ }[];
1335
+ };
1336
+ } | {
1337
+ key: string;
1338
+ type: string;
1339
+ settings: {
1340
+ title: string;
1341
+ openView?: undefined;
1342
+ };
1343
+ popup?: undefined;
1344
+ })[];
1345
+ };
1346
+ addRecordAddChildActions: {
1347
+ target: {
1348
+ uid: string;
1349
+ };
1350
+ recordActions: {
1351
+ key: string;
1352
+ type: string;
1353
+ settings: {
1354
+ title: string;
1355
+ openView: {
1356
+ dataSourceKey: string;
1357
+ collectionName: string;
1358
+ mode: string;
1359
+ };
1360
+ };
1361
+ }[];
1362
+ };
1363
+ updateSettings: {
1364
+ target: {
1365
+ uid: string;
1366
+ };
1367
+ stepParams: {
1368
+ tableSettings: {
1369
+ pageSize: {
1370
+ pageSize: number;
1371
+ };
1372
+ tableDensity: {
1373
+ size: string;
1374
+ };
1375
+ };
1376
+ };
1377
+ flowRegistry: {
1378
+ beforeRenderApply: {
1379
+ key: string;
1380
+ on: string;
1381
+ steps: {};
1382
+ };
1383
+ };
1384
+ };
1385
+ setEventFlows: {
1386
+ target: {
1387
+ uid: string;
1388
+ };
1389
+ flowRegistry: {
1390
+ popupSettings: {
1391
+ key: string;
1392
+ on: string;
1393
+ steps: {
1394
+ openView: {
1395
+ params: {
1396
+ title: string;
1397
+ size: string;
1398
+ };
1399
+ };
1400
+ };
1401
+ };
1402
+ };
1403
+ };
1404
+ setLayout: {
1405
+ target: {
1406
+ uid: string;
1407
+ };
1408
+ rows: {
1409
+ row1: string[][];
1410
+ };
1411
+ sizes: {
1412
+ row1: number[];
1413
+ };
1414
+ rowOrder: string[];
1415
+ };
1416
+ moveNode: {
1417
+ sourceUid: string;
1418
+ targetUid: string;
1419
+ position: string;
1420
+ };
1421
+ removeNode: {
1422
+ target: {
1423
+ uid: string;
1424
+ };
1425
+ };
1426
+ mutate: {
1427
+ atomic: boolean;
1428
+ ops: ({
1429
+ opId: string;
1430
+ type: string;
1431
+ values: {
1432
+ title: string;
1433
+ type: string;
1434
+ menuRouteId?: undefined;
1435
+ tabTitle?: undefined;
1436
+ target?: undefined;
1437
+ resourceInit?: undefined;
1438
+ fieldPath?: undefined;
1439
+ };
1440
+ } | {
1441
+ opId: string;
1442
+ type: string;
1443
+ values: {
1444
+ menuRouteId: {
1445
+ step: string;
1446
+ path: string;
1447
+ };
1448
+ tabTitle: string;
1449
+ title?: undefined;
1450
+ type?: undefined;
1451
+ target?: undefined;
1452
+ resourceInit?: undefined;
1453
+ fieldPath?: undefined;
1454
+ };
1455
+ } | {
1456
+ opId: string;
1457
+ type: string;
1458
+ values: {
1459
+ target: {
1460
+ uid: {
1461
+ step: string;
1462
+ path: string;
1463
+ };
1464
+ };
1465
+ type: string;
1466
+ resourceInit: {
1467
+ dataSourceKey: string;
1468
+ collectionName: string;
1469
+ };
1470
+ title?: undefined;
1471
+ menuRouteId?: undefined;
1472
+ tabTitle?: undefined;
1473
+ fieldPath?: undefined;
1474
+ };
1475
+ } | {
1476
+ type: string;
1477
+ values: {
1478
+ target: {
1479
+ uid: {
1480
+ step: string;
1481
+ path: string;
1482
+ };
1483
+ };
1484
+ fieldPath: string;
1485
+ title?: undefined;
1486
+ type?: undefined;
1487
+ menuRouteId?: undefined;
1488
+ tabTitle?: undefined;
1489
+ resourceInit?: undefined;
1490
+ };
1491
+ opId?: undefined;
1492
+ })[];
1493
+ };
1494
+ apply: {
1495
+ target: {
1496
+ uid: string;
1497
+ };
1498
+ mode: string;
1499
+ spec: {
1500
+ popup: {
1501
+ tryTemplate: boolean;
1502
+ };
1503
+ subModels: {
1504
+ items: ({
1505
+ clientKey: string;
1506
+ use: string;
1507
+ stepParams: {
1508
+ resourceSettings: {
1509
+ init: {
1510
+ dataSourceKey: string;
1511
+ collectionName: string;
1512
+ };
1513
+ };
1514
+ };
1515
+ props?: undefined;
1516
+ } | {
1517
+ clientKey: string;
1518
+ use: string;
1519
+ props: {
1520
+ content: string;
1521
+ };
1522
+ stepParams?: undefined;
1523
+ })[];
1524
+ };
1525
+ };
1526
+ };
1527
+ getPopupQuery: {
1528
+ uid: string;
1529
+ };
1530
+ getPageQuery: {
1531
+ pageSchemaUid: string;
1532
+ };
1533
+ };