@nocobase/plugin-flow-engine 2.1.0-alpha.2 → 2.1.0-alpha.20

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