@carthooks/arcubase-cli 0.1.0

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 (157) hide show
  1. package/bundle/arcubase-admin.mjs +9875 -0
  2. package/bundle/arcubase.mjs +9875 -0
  3. package/dist/bin/arcubase-admin.d.ts +2 -0
  4. package/dist/bin/arcubase-admin.d.ts.map +1 -0
  5. package/dist/bin/arcubase-admin.js +22 -0
  6. package/dist/bin/arcubase.d.ts +2 -0
  7. package/dist/bin/arcubase.d.ts.map +1 -0
  8. package/dist/bin/arcubase.js +22 -0
  9. package/dist/generated/command_registry.generated.d.ts +3072 -0
  10. package/dist/generated/command_registry.generated.d.ts.map +1 -0
  11. package/dist/generated/command_registry.generated.js +4587 -0
  12. package/dist/generated/type_index.generated.d.ts +496 -0
  13. package/dist/generated/type_index.generated.d.ts.map +1 -0
  14. package/dist/generated/type_index.generated.js +502 -0
  15. package/dist/generated/zod_registry.generated.d.ts +356 -0
  16. package/dist/generated/zod_registry.generated.d.ts.map +1 -0
  17. package/dist/generated/zod_registry.generated.js +483 -0
  18. package/dist/index.d.ts +5 -0
  19. package/dist/index.d.ts.map +1 -0
  20. package/dist/index.js +4 -0
  21. package/dist/runtime/argv.d.ts +8 -0
  22. package/dist/runtime/argv.d.ts.map +1 -0
  23. package/dist/runtime/argv.js +31 -0
  24. package/dist/runtime/body_loader.d.ts +3 -0
  25. package/dist/runtime/body_loader.d.ts.map +1 -0
  26. package/dist/runtime/body_loader.js +26 -0
  27. package/dist/runtime/command_registry.d.ts +9 -0
  28. package/dist/runtime/command_registry.d.ts.map +1 -0
  29. package/dist/runtime/command_registry.js +14 -0
  30. package/dist/runtime/env.d.ts +14 -0
  31. package/dist/runtime/env.d.ts.map +1 -0
  32. package/dist/runtime/env.js +42 -0
  33. package/dist/runtime/errors.d.ts +23 -0
  34. package/dist/runtime/errors.d.ts.map +1 -0
  35. package/dist/runtime/errors.js +18 -0
  36. package/dist/runtime/execute.d.ts +17 -0
  37. package/dist/runtime/execute.d.ts.map +1 -0
  38. package/dist/runtime/execute.js +183 -0
  39. package/dist/runtime/http.d.ts +4 -0
  40. package/dist/runtime/http.d.ts.map +1 -0
  41. package/dist/runtime/http.js +21 -0
  42. package/dist/runtime/output.d.ts +2 -0
  43. package/dist/runtime/output.d.ts.map +1 -0
  44. package/dist/runtime/output.js +3 -0
  45. package/dist/runtime/paths.d.ts +4 -0
  46. package/dist/runtime/paths.d.ts.map +1 -0
  47. package/dist/runtime/paths.js +8 -0
  48. package/dist/runtime/zod_registry.d.ts +10 -0
  49. package/dist/runtime/zod_registry.d.ts.map +1 -0
  50. package/dist/runtime/zod_registry.js +50 -0
  51. package/dist/tests/bootstrap.test.d.ts +2 -0
  52. package/dist/tests/bootstrap.test.d.ts.map +1 -0
  53. package/dist/tests/bootstrap.test.js +59 -0
  54. package/dist/tests/command_registry.test.d.ts +2 -0
  55. package/dist/tests/command_registry.test.d.ts.map +1 -0
  56. package/dist/tests/command_registry.test.js +22 -0
  57. package/dist/tests/execute_validation.test.d.ts +2 -0
  58. package/dist/tests/execute_validation.test.d.ts.map +1 -0
  59. package/dist/tests/execute_validation.test.js +41 -0
  60. package/dist/tests/help.test.d.ts +2 -0
  61. package/dist/tests/help.test.d.ts.map +1 -0
  62. package/dist/tests/help.test.js +22 -0
  63. package/dist/tests/zod_registry.test.d.ts +2 -0
  64. package/dist/tests/zod_registry.test.d.ts.map +1 -0
  65. package/dist/tests/zod_registry.test.js +26 -0
  66. package/package.json +46 -0
  67. package/sdk-dist/api/admin/app-entity-share.ts +52 -0
  68. package/sdk-dist/api/admin/app.ts +187 -0
  69. package/sdk-dist/api/admin/automate-rule.ts +59 -0
  70. package/sdk-dist/api/admin/business-hooks.ts +17 -0
  71. package/sdk-dist/api/admin/config.ts +12 -0
  72. package/sdk-dist/api/admin/dashboard.ts +88 -0
  73. package/sdk-dist/api/admin/dataset.ts +133 -0
  74. package/sdk-dist/api/admin/departments.ts +223 -0
  75. package/sdk-dist/api/admin/developer.ts +126 -0
  76. package/sdk-dist/api/admin/entity-tags.ts +71 -0
  77. package/sdk-dist/api/admin/entity.ts +188 -0
  78. package/sdk-dist/api/admin/extension.ts +19 -0
  79. package/sdk-dist/api/admin/index.ts +21 -0
  80. package/sdk-dist/api/admin/ingress.ts +117 -0
  81. package/sdk-dist/api/admin/integration.ts +64 -0
  82. package/sdk-dist/api/admin/kiosk-flow.ts +67 -0
  83. package/sdk-dist/api/admin/print-template-background.ts +43 -0
  84. package/sdk-dist/api/admin/print-templates.ts +60 -0
  85. package/sdk-dist/api/admin/tenant.ts +231 -0
  86. package/sdk-dist/api/admin/workflow.ts +51 -0
  87. package/sdk-dist/api/kiosk/index.ts +4 -0
  88. package/sdk-dist/api/kiosk/starter.ts +34 -0
  89. package/sdk-dist/api/kiosk/ui.ts +79 -0
  90. package/sdk-dist/api/open/api.ts +11 -0
  91. package/sdk-dist/api/open/index.ts +3 -0
  92. package/sdk-dist/api/shared-link/form.ts +103 -0
  93. package/sdk-dist/api/shared-link/index.ts +3 -0
  94. package/sdk-dist/api/user/common.ts +159 -0
  95. package/sdk-dist/api/user/context.ts +10 -0
  96. package/sdk-dist/api/user/copilot.ts +20 -0
  97. package/sdk-dist/api/user/dashboard.ts +43 -0
  98. package/sdk-dist/api/user/entity.ts +213 -0
  99. package/sdk-dist/api/user/flow.ts +20 -0
  100. package/sdk-dist/api/user/global-action.ts +128 -0
  101. package/sdk-dist/api/user/index.ts +12 -0
  102. package/sdk-dist/api/user/kiosk.ts +12 -0
  103. package/sdk-dist/api/user/profile.ts +57 -0
  104. package/sdk-dist/api/user/workflow.ts +186 -0
  105. package/sdk-dist/generated/command_registry.generated.ts +4603 -0
  106. package/sdk-dist/generated/type_index.generated.ts +503 -0
  107. package/sdk-dist/generated/zod_registry.generated.ts +713 -0
  108. package/sdk-dist/types/app-user.ts +0 -0
  109. package/sdk-dist/types/app.ts +182 -0
  110. package/sdk-dist/types/auth.ts +174 -0
  111. package/sdk-dist/types/automate-rule.ts +100 -0
  112. package/sdk-dist/types/business-hooks.ts +37 -0
  113. package/sdk-dist/types/common.ts +676 -0
  114. package/sdk-dist/types/copilot.ts +34 -0
  115. package/sdk-dist/types/dashboard.ts +122 -0
  116. package/sdk-dist/types/dataset.ts +168 -0
  117. package/sdk-dist/types/departments.ts +351 -0
  118. package/sdk-dist/types/developer.ts +190 -0
  119. package/sdk-dist/types/entity.ts +400 -0
  120. package/sdk-dist/types/extension.ts +15 -0
  121. package/sdk-dist/types/global-action.ts +206 -0
  122. package/sdk-dist/types/index.ts +26 -0
  123. package/sdk-dist/types/ingress.ts +173 -0
  124. package/sdk-dist/types/kiosk-starter.ts +46 -0
  125. package/sdk-dist/types/kiosk-ui.ts +94 -0
  126. package/sdk-dist/types/oauth-authorize.ts +52 -0
  127. package/sdk-dist/types/oauth.ts +33 -0
  128. package/sdk-dist/types/openapi.ts +24 -0
  129. package/sdk-dist/types/platform-setup.ts +26 -0
  130. package/sdk-dist/types/shared-link.ts +41 -0
  131. package/sdk-dist/types/tenant.ts +340 -0
  132. package/sdk-dist/types/upload.ts +0 -0
  133. package/sdk-dist/types/user-action.ts +871 -0
  134. package/sdk-dist/types/user-flow.ts +90 -0
  135. package/sdk-dist/types/widgets.ts +115 -0
  136. package/sdk-dist/types/workflow.ts +162 -0
  137. package/src/bin/arcubase-admin.ts +23 -0
  138. package/src/bin/arcubase.ts +23 -0
  139. package/src/generated/command_registry.generated.ts +4603 -0
  140. package/src/generated/type_index.generated.ts +503 -0
  141. package/src/generated/zod_registry.generated.ts +713 -0
  142. package/src/index.ts +4 -0
  143. package/src/runtime/argv.ts +39 -0
  144. package/src/runtime/body_loader.ts +26 -0
  145. package/src/runtime/command_registry.ts +22 -0
  146. package/src/runtime/env.ts +60 -0
  147. package/src/runtime/errors.ts +41 -0
  148. package/src/runtime/execute.ts +206 -0
  149. package/src/runtime/http.ts +23 -0
  150. package/src/runtime/output.ts +3 -0
  151. package/src/runtime/paths.ts +8 -0
  152. package/src/runtime/zod_registry.ts +53 -0
  153. package/src/tests/bootstrap.test.ts +67 -0
  154. package/src/tests/command_registry.test.ts +27 -0
  155. package/src/tests/execute_validation.test.ts +50 -0
  156. package/src/tests/help.test.ts +25 -0
  157. package/src/tests/zod_registry.test.ts +33 -0
@@ -0,0 +1,4603 @@
1
+ // Generated by scripts/generate-command-registry.mjs. Do not edit by hand.
2
+
3
+ export type GeneratedCommandDef = {
4
+ scope: 'admin' | 'user'
5
+ module: string
6
+ functionName: string
7
+ commandPath: readonly [string, string]
8
+ method: string
9
+ endpoint: string
10
+ endpointParams: readonly string[]
11
+ controller: string
12
+ requestType: string | null
13
+ scalarParams: readonly { name: string; type: string; hasDefault: boolean }[]
14
+ responseType: string
15
+ }
16
+
17
+ export const adminCommands = [
18
+ {
19
+ "scope": "admin",
20
+ "module": "app-entity-share",
21
+ "functionName": "getAppEntityShares",
22
+ "commandPath": [
23
+ "app-entity-share",
24
+ "get-app-entity-shares"
25
+ ],
26
+ "method": "GET",
27
+ "endpoint": "/api/apps/:app_id/entity-shares",
28
+ "endpointParams": [
29
+ "app_id"
30
+ ],
31
+ "controller": "AppGetEntityShares",
32
+ "requestType": null,
33
+ "scalarParams": [],
34
+ "responseType": "AppGetEntitySharesRespVO"
35
+ },
36
+ {
37
+ "scope": "admin",
38
+ "module": "app-entity-share",
39
+ "functionName": "createAppEntityShare",
40
+ "commandPath": [
41
+ "app-entity-share",
42
+ "create-app-entity-share"
43
+ ],
44
+ "method": "POST",
45
+ "endpoint": "/api/apps/:app_id/entity-shares",
46
+ "endpointParams": [
47
+ "app_id"
48
+ ],
49
+ "controller": "AppCreateEntityShare",
50
+ "requestType": "AppCreateEntityShareReqVO",
51
+ "scalarParams": [],
52
+ "responseType": "{ success: boolean }"
53
+ },
54
+ {
55
+ "scope": "admin",
56
+ "module": "app-entity-share",
57
+ "functionName": "deleteAppEntityShare",
58
+ "commandPath": [
59
+ "app-entity-share",
60
+ "delete-app-entity-share"
61
+ ],
62
+ "method": "DELETE",
63
+ "endpoint": "/api/apps/:app_id/entity-shares",
64
+ "endpointParams": [
65
+ "app_id"
66
+ ],
67
+ "controller": "AppDeleteEntityShare",
68
+ "requestType": "AppDeleteEntityShareReqVO",
69
+ "scalarParams": [],
70
+ "responseType": "{ success: boolean }"
71
+ },
72
+ {
73
+ "scope": "admin",
74
+ "module": "app",
75
+ "functionName": "renameApp",
76
+ "commandPath": [
77
+ "app",
78
+ "rename-app"
79
+ ],
80
+ "method": "PUT",
81
+ "endpoint": "/apps/:id/name",
82
+ "endpointParams": [
83
+ "id"
84
+ ],
85
+ "controller": "App.AppRename",
86
+ "requestType": "AppRenameReqVO",
87
+ "scalarParams": [],
88
+ "responseType": "AppRenameRespVO"
89
+ },
90
+ {
91
+ "scope": "admin",
92
+ "module": "app",
93
+ "functionName": "createAppByTenants",
94
+ "commandPath": [
95
+ "app",
96
+ "create-app-by-tenants"
97
+ ],
98
+ "method": "POST",
99
+ "endpoint": "/apps",
100
+ "endpointParams": [],
101
+ "controller": "App.CreateAppByTenants",
102
+ "requestType": "AppCreateByTenantsReqVO",
103
+ "scalarParams": [],
104
+ "responseType": "AppCreateByTenantsRespVO"
105
+ },
106
+ {
107
+ "scope": "admin",
108
+ "module": "app",
109
+ "functionName": "createEntity",
110
+ "commandPath": [
111
+ "app",
112
+ "create-entity"
113
+ ],
114
+ "method": "POST",
115
+ "endpoint": "/apps/:id/entities",
116
+ "endpointParams": [
117
+ "id"
118
+ ],
119
+ "controller": "App.CreateEntity",
120
+ "requestType": "AppCreateEntityReqVO",
121
+ "scalarParams": [],
122
+ "responseType": "AppCreateEntityRespVO"
123
+ },
124
+ {
125
+ "scope": "admin",
126
+ "module": "app",
127
+ "functionName": "deleteApp",
128
+ "commandPath": [
129
+ "app",
130
+ "delete-app"
131
+ ],
132
+ "method": "DELETE",
133
+ "endpoint": "/apps/:id",
134
+ "endpointParams": [
135
+ "id"
136
+ ],
137
+ "controller": "App.DeleteApp",
138
+ "requestType": null,
139
+ "scalarParams": [],
140
+ "responseType": "boolean"
141
+ },
142
+ {
143
+ "scope": "admin",
144
+ "module": "app",
145
+ "functionName": "deleteWidgets",
146
+ "commandPath": [
147
+ "app",
148
+ "delete-widgets"
149
+ ],
150
+ "method": "DELETE",
151
+ "endpoint": "/apps/:app_id/widgets/:widgets_id",
152
+ "endpointParams": [
153
+ "app_id",
154
+ "widgets_id"
155
+ ],
156
+ "controller": "App.DeleteWidgets",
157
+ "requestType": null,
158
+ "scalarParams": [],
159
+ "responseType": "boolean"
160
+ },
161
+ {
162
+ "scope": "admin",
163
+ "module": "app",
164
+ "functionName": "getAppSchema",
165
+ "commandPath": [
166
+ "app",
167
+ "get-app-schema"
168
+ ],
169
+ "method": "POST",
170
+ "endpoint": "/apps/:id/schema",
171
+ "endpointParams": [
172
+ "id"
173
+ ],
174
+ "controller": "App.GetAppSchema",
175
+ "requestType": null,
176
+ "scalarParams": [
177
+ {
178
+ "name": "refresh",
179
+ "type": "boolean",
180
+ "hasDefault": true
181
+ }
182
+ ],
183
+ "responseType": "AppGetAppSchemaRespVO"
184
+ },
185
+ {
186
+ "scope": "admin",
187
+ "module": "app",
188
+ "functionName": "getEntities",
189
+ "commandPath": [
190
+ "app",
191
+ "get-entities"
192
+ ],
193
+ "method": "GET",
194
+ "endpoint": "/apps/:id/entities",
195
+ "endpointParams": [
196
+ "id"
197
+ ],
198
+ "controller": "App.GetEntities",
199
+ "requestType": null,
200
+ "scalarParams": [],
201
+ "responseType": "AppGetEntitiesRespVO"
202
+ },
203
+ {
204
+ "scope": "admin",
205
+ "module": "app",
206
+ "functionName": "getPredefinedPermissions",
207
+ "commandPath": [
208
+ "app",
209
+ "get-predefined-permissions"
210
+ ],
211
+ "method": "GET",
212
+ "endpoint": "/permissions/predefined",
213
+ "endpointParams": [],
214
+ "controller": "App.GetPredefinedPermissions",
215
+ "requestType": null,
216
+ "scalarParams": [],
217
+ "responseType": "any[]"
218
+ },
219
+ {
220
+ "scope": "admin",
221
+ "module": "app",
222
+ "functionName": "getSiteMaps",
223
+ "commandPath": [
224
+ "app",
225
+ "get-site-maps"
226
+ ],
227
+ "method": "GET",
228
+ "endpoint": "/apps/:id/sitemap",
229
+ "endpointParams": [
230
+ "id"
231
+ ],
232
+ "controller": "App.GetSiteMaps",
233
+ "requestType": null,
234
+ "scalarParams": [],
235
+ "responseType": "AppGetSiteMapsRespVO"
236
+ },
237
+ {
238
+ "scope": "admin",
239
+ "module": "app",
240
+ "functionName": "getWidgets",
241
+ "commandPath": [
242
+ "app",
243
+ "get-widgets"
244
+ ],
245
+ "method": "GET",
246
+ "endpoint": "/apps/:app_id/widgets/:widgets_id",
247
+ "endpointParams": [
248
+ "app_id",
249
+ "widgets_id"
250
+ ],
251
+ "controller": "App.GetWidgets",
252
+ "requestType": null,
253
+ "scalarParams": [],
254
+ "responseType": "AppGetWidgetsRespVO"
255
+ },
256
+ {
257
+ "scope": "admin",
258
+ "module": "app",
259
+ "functionName": "newWidgets",
260
+ "commandPath": [
261
+ "app",
262
+ "new-widgets"
263
+ ],
264
+ "method": "POST",
265
+ "endpoint": "/apps/:app_id/widgets",
266
+ "endpointParams": [
267
+ "app_id"
268
+ ],
269
+ "controller": "App.NewWidgets",
270
+ "requestType": "AppNewWidgetsReqVO",
271
+ "scalarParams": [],
272
+ "responseType": "AppNewWidgetsRespVO"
273
+ },
274
+ {
275
+ "scope": "admin",
276
+ "module": "app",
277
+ "functionName": "previewWidgetsData",
278
+ "commandPath": [
279
+ "app",
280
+ "preview-widgets-data"
281
+ ],
282
+ "method": "POST",
283
+ "endpoint": "/apps/:app_id/widgets-preview",
284
+ "endpointParams": [
285
+ "app_id"
286
+ ],
287
+ "controller": "App.PreviewWidgetsData",
288
+ "requestType": "AppPreviewWidgetsDataReqVO",
289
+ "scalarParams": [],
290
+ "responseType": "AppPreviewWidgetsDataRespVO"
291
+ },
292
+ {
293
+ "scope": "admin",
294
+ "module": "app",
295
+ "functionName": "saveSiteMaps",
296
+ "commandPath": [
297
+ "app",
298
+ "save-site-maps"
299
+ ],
300
+ "method": "PUT",
301
+ "endpoint": "/apps/:id/sitemap",
302
+ "endpointParams": [
303
+ "id"
304
+ ],
305
+ "controller": "App.SaveSiteMaps",
306
+ "requestType": "AppSaveSiteMapsReqVO",
307
+ "scalarParams": [],
308
+ "responseType": "AppGetSiteMapsRespVO"
309
+ },
310
+ {
311
+ "scope": "admin",
312
+ "module": "app",
313
+ "functionName": "updateApp",
314
+ "commandPath": [
315
+ "app",
316
+ "update-app"
317
+ ],
318
+ "method": "PUT",
319
+ "endpoint": "/apps/:id",
320
+ "endpointParams": [
321
+ "id"
322
+ ],
323
+ "controller": "App.UpdateApp",
324
+ "requestType": "AppUpdateAppReqVO",
325
+ "scalarParams": [],
326
+ "responseType": "AppUpdateAppRespVO"
327
+ },
328
+ {
329
+ "scope": "admin",
330
+ "module": "app",
331
+ "functionName": "updateI18n",
332
+ "commandPath": [
333
+ "app",
334
+ "update-i18n"
335
+ ],
336
+ "method": "PUT",
337
+ "endpoint": "/apps/:app_id/i18n",
338
+ "endpointParams": [
339
+ "app_id"
340
+ ],
341
+ "controller": "App.UpdateI18n",
342
+ "requestType": "AppUpdateI18nReqVO",
343
+ "scalarParams": [],
344
+ "responseType": "AppUpdateI18nRespVO"
345
+ },
346
+ {
347
+ "scope": "admin",
348
+ "module": "app",
349
+ "functionName": "updateWidgets",
350
+ "commandPath": [
351
+ "app",
352
+ "update-widgets"
353
+ ],
354
+ "method": "PUT",
355
+ "endpoint": "/apps/:app_id/widgets/:widgets_id",
356
+ "endpointParams": [
357
+ "app_id",
358
+ "widgets_id"
359
+ ],
360
+ "controller": "App.UpdateWidgets",
361
+ "requestType": "AppUpdateWidgetsReqVO",
362
+ "scalarParams": [],
363
+ "responseType": "AppUpdateWidgetsRespVO"
364
+ },
365
+ {
366
+ "scope": "admin",
367
+ "module": "app",
368
+ "functionName": "updateWidgetsIngressOptions",
369
+ "commandPath": [
370
+ "app",
371
+ "update-widgets-ingress-options"
372
+ ],
373
+ "method": "PUT",
374
+ "endpoint": "/apps/:app_id/widgets/:widgets_id/ingress-options",
375
+ "endpointParams": [
376
+ "app_id",
377
+ "widgets_id"
378
+ ],
379
+ "controller": "App.UpdateWidgetsIngressOptions",
380
+ "requestType": "AppUpdateWidgetsIngressOptionsReqVO",
381
+ "scalarParams": [],
382
+ "responseType": "AppUpdateWidgetsIngressOptionsRespVO"
383
+ },
384
+ {
385
+ "scope": "admin",
386
+ "module": "app",
387
+ "functionName": "widgetsList",
388
+ "commandPath": [
389
+ "app",
390
+ "widgets-list"
391
+ ],
392
+ "method": "GET",
393
+ "endpoint": "/apps/:app_id/widgets",
394
+ "endpointParams": [
395
+ "app_id"
396
+ ],
397
+ "controller": "App.WidgetsList",
398
+ "requestType": null,
399
+ "scalarParams": [],
400
+ "responseType": "AppWidgetsListRespVO"
401
+ },
402
+ {
403
+ "scope": "admin",
404
+ "module": "automate-rule",
405
+ "functionName": "createAutomateRule",
406
+ "commandPath": [
407
+ "automate-rule",
408
+ "create-automate-rule"
409
+ ],
410
+ "method": "POST",
411
+ "endpoint": "/apps/:app_id/entity/:entity_id/automate-rules",
412
+ "endpointParams": [
413
+ "app_id",
414
+ "entity_id"
415
+ ],
416
+ "controller": "AutomateRule.Create",
417
+ "requestType": "AutomateRuleCreateReqVO",
418
+ "scalarParams": [],
419
+ "responseType": "AutomateRuleCreateRespVO"
420
+ },
421
+ {
422
+ "scope": "admin",
423
+ "module": "automate-rule",
424
+ "functionName": "updateAutomateRule",
425
+ "commandPath": [
426
+ "automate-rule",
427
+ "update-automate-rule"
428
+ ],
429
+ "method": "PUT",
430
+ "endpoint": "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id",
431
+ "endpointParams": [
432
+ "app_id",
433
+ "entity_id",
434
+ "rule_id"
435
+ ],
436
+ "controller": "AutomateRule.Update",
437
+ "requestType": "AutomateRuleUpdateReqVO",
438
+ "scalarParams": [],
439
+ "responseType": "AutomateRuleUpdateRespVO"
440
+ },
441
+ {
442
+ "scope": "admin",
443
+ "module": "automate-rule",
444
+ "functionName": "deleteAutomateRule",
445
+ "commandPath": [
446
+ "automate-rule",
447
+ "delete-automate-rule"
448
+ ],
449
+ "method": "DELETE",
450
+ "endpoint": "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id",
451
+ "endpointParams": [
452
+ "app_id",
453
+ "entity_id",
454
+ "rule_id"
455
+ ],
456
+ "controller": "AutomateRule.Delete",
457
+ "requestType": null,
458
+ "scalarParams": [],
459
+ "responseType": "{ success: boolean }"
460
+ },
461
+ {
462
+ "scope": "admin",
463
+ "module": "automate-rule",
464
+ "functionName": "listAutomateRules",
465
+ "commandPath": [
466
+ "automate-rule",
467
+ "list-automate-rules"
468
+ ],
469
+ "method": "GET",
470
+ "endpoint": "/apps/:app_id/entity/:entity_id/automate-rules",
471
+ "endpointParams": [
472
+ "app_id",
473
+ "entity_id"
474
+ ],
475
+ "controller": "AutomateRule.List",
476
+ "requestType": null,
477
+ "scalarParams": [],
478
+ "responseType": "AutomateRuleListRespVO"
479
+ },
480
+ {
481
+ "scope": "admin",
482
+ "module": "automate-rule",
483
+ "functionName": "getAutomateRule",
484
+ "commandPath": [
485
+ "automate-rule",
486
+ "get-automate-rule"
487
+ ],
488
+ "method": "GET",
489
+ "endpoint": "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id",
490
+ "endpointParams": [
491
+ "app_id",
492
+ "entity_id",
493
+ "rule_id"
494
+ ],
495
+ "controller": "AutomateRule.Get",
496
+ "requestType": null,
497
+ "scalarParams": [],
498
+ "responseType": "AutomateRuleGetRespVO"
499
+ },
500
+ {
501
+ "scope": "admin",
502
+ "module": "business-hooks",
503
+ "functionName": "getAvailableHooklets",
504
+ "commandPath": [
505
+ "business-hooks",
506
+ "get-available-hooklets"
507
+ ],
508
+ "method": "GET",
509
+ "endpoint": "/api/business-hooks/available-hooklets",
510
+ "endpointParams": [],
511
+ "controller": "BusinessHooks.GetAvailableHooklets",
512
+ "requestType": null,
513
+ "scalarParams": [],
514
+ "responseType": "BusinessHooksGetAvailableHookletsRespVO"
515
+ },
516
+ {
517
+ "scope": "admin",
518
+ "module": "business-hooks",
519
+ "functionName": "getAppConnections",
520
+ "commandPath": [
521
+ "business-hooks",
522
+ "get-app-connections"
523
+ ],
524
+ "method": "GET",
525
+ "endpoint": "/api/apps/:app_id/business-hooks/connections",
526
+ "endpointParams": [
527
+ "app_id"
528
+ ],
529
+ "controller": "BusinessHooks.GetAppConnections",
530
+ "requestType": null,
531
+ "scalarParams": [],
532
+ "responseType": "BusinessHooksGetAppConnectionsRespVO"
533
+ },
534
+ {
535
+ "scope": "admin",
536
+ "module": "config",
537
+ "functionName": "getAWSConfig",
538
+ "commandPath": [
539
+ "config",
540
+ "get-awsconfig"
541
+ ],
542
+ "method": "GET",
543
+ "endpoint": "/config/aws",
544
+ "endpointParams": [],
545
+ "controller": "App.GetAWSConfig",
546
+ "requestType": null,
547
+ "scalarParams": [],
548
+ "responseType": "AWSConfigVO"
549
+ },
550
+ {
551
+ "scope": "admin",
552
+ "module": "dashboard",
553
+ "functionName": "createDashboard",
554
+ "commandPath": [
555
+ "dashboard",
556
+ "create-dashboard"
557
+ ],
558
+ "method": "POST",
559
+ "endpoint": "/apps/:app_id/dashboard",
560
+ "endpointParams": [
561
+ "app_id"
562
+ ],
563
+ "controller": "Dashboard.Create",
564
+ "requestType": "DashboardCreateReqVO",
565
+ "scalarParams": [],
566
+ "responseType": "DashboardCreateRespVO"
567
+ },
568
+ {
569
+ "scope": "admin",
570
+ "module": "dashboard",
571
+ "functionName": "getDashboardOptions",
572
+ "commandPath": [
573
+ "dashboard",
574
+ "get-dashboard-options"
575
+ ],
576
+ "method": "GET",
577
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id/options",
578
+ "endpointParams": [
579
+ "app_id",
580
+ "dashboard_id"
581
+ ],
582
+ "controller": "Dashboard.FetchOptions",
583
+ "requestType": null,
584
+ "scalarParams": [],
585
+ "responseType": "DashboardFetchOptionsRespVO"
586
+ },
587
+ {
588
+ "scope": "admin",
589
+ "module": "dashboard",
590
+ "functionName": "getDashboardList",
591
+ "commandPath": [
592
+ "dashboard",
593
+ "get-dashboard-list"
594
+ ],
595
+ "method": "GET",
596
+ "endpoint": "/apps/:app_id/dashboard",
597
+ "endpointParams": [
598
+ "app_id"
599
+ ],
600
+ "controller": "Dashboard.GetList",
601
+ "requestType": null,
602
+ "scalarParams": [],
603
+ "responseType": "DashboardGetListRespVO"
604
+ },
605
+ {
606
+ "scope": "admin",
607
+ "module": "dashboard",
608
+ "functionName": "updateDashboardLayout",
609
+ "commandPath": [
610
+ "dashboard",
611
+ "update-dashboard-layout"
612
+ ],
613
+ "method": "PUT",
614
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id/layout",
615
+ "endpointParams": [
616
+ "app_id",
617
+ "dashboard_id"
618
+ ],
619
+ "controller": "Dashboard.UpdateLayout",
620
+ "requestType": "DashboardUpdateLayoutReqVO",
621
+ "scalarParams": [],
622
+ "responseType": "DashboardUpdateLayoutRespVO"
623
+ },
624
+ {
625
+ "scope": "admin",
626
+ "module": "dashboard",
627
+ "functionName": "updateDashboardOptions",
628
+ "commandPath": [
629
+ "dashboard",
630
+ "update-dashboard-options"
631
+ ],
632
+ "method": "PUT",
633
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id/options",
634
+ "endpointParams": [
635
+ "app_id",
636
+ "dashboard_id"
637
+ ],
638
+ "controller": "Dashboard.UpdateOptions",
639
+ "requestType": "DashboardUpdateOptionsReqVO",
640
+ "scalarParams": [],
641
+ "responseType": "DashboardUpdateOptionsRespVO"
642
+ },
643
+ {
644
+ "scope": "admin",
645
+ "module": "dashboard",
646
+ "functionName": "updateDashboardTitle",
647
+ "commandPath": [
648
+ "dashboard",
649
+ "update-dashboard-title"
650
+ ],
651
+ "method": "PUT",
652
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id/label",
653
+ "endpointParams": [
654
+ "app_id",
655
+ "dashboard_id"
656
+ ],
657
+ "controller": "Dashboard.UpdateTitle",
658
+ "requestType": "DashboardUpdateTitleReqVO",
659
+ "scalarParams": [],
660
+ "responseType": "DashboardUpdateTitleRespVO"
661
+ },
662
+ {
663
+ "scope": "admin",
664
+ "module": "dashboard",
665
+ "functionName": "deleteDashboard",
666
+ "commandPath": [
667
+ "dashboard",
668
+ "delete-dashboard"
669
+ ],
670
+ "method": "DELETE",
671
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id",
672
+ "endpointParams": [
673
+ "app_id",
674
+ "dashboard_id"
675
+ ],
676
+ "controller": "Dashboard.Delete",
677
+ "requestType": null,
678
+ "scalarParams": [],
679
+ "responseType": "any"
680
+ },
681
+ {
682
+ "scope": "admin",
683
+ "module": "dashboard",
684
+ "functionName": "cloneDashboard",
685
+ "commandPath": [
686
+ "dashboard",
687
+ "clone-dashboard"
688
+ ],
689
+ "method": "POST",
690
+ "endpoint": "/apps/:app_id/dashboard/:dashboard_id/clone",
691
+ "endpointParams": [
692
+ "app_id",
693
+ "dashboard_id"
694
+ ],
695
+ "controller": "Dashboard.Clone",
696
+ "requestType": "{ name: string }",
697
+ "scalarParams": [],
698
+ "responseType": "any"
699
+ },
700
+ {
701
+ "scope": "admin",
702
+ "module": "dataset",
703
+ "functionName": "createNewDataset",
704
+ "commandPath": [
705
+ "dataset",
706
+ "create-new-dataset"
707
+ ],
708
+ "method": "POST",
709
+ "endpoint": "/apps/:app_id/dataset",
710
+ "endpointParams": [
711
+ "app_id"
712
+ ],
713
+ "controller": "Dataset.CreateDataset",
714
+ "requestType": "DatasetCreateDatasetReqVO",
715
+ "scalarParams": [
716
+ {
717
+ "name": "endpoint",
718
+ "type": "string",
719
+ "hasDefault": false
720
+ }
721
+ ],
722
+ "responseType": "DatasetCreateDatasetRespVO"
723
+ },
724
+ {
725
+ "scope": "admin",
726
+ "module": "dataset",
727
+ "functionName": "createNewNode",
728
+ "commandPath": [
729
+ "dataset",
730
+ "create-new-node"
731
+ ],
732
+ "method": "POST",
733
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id",
734
+ "endpointParams": [
735
+ "app_id",
736
+ "id",
737
+ "node_id"
738
+ ],
739
+ "controller": "Dataset.CreateNode",
740
+ "requestType": "DatasetCreateNodeReqVO",
741
+ "scalarParams": [
742
+ {
743
+ "name": "endpoint",
744
+ "type": "string",
745
+ "hasDefault": false
746
+ },
747
+ {
748
+ "name": "datasetId",
749
+ "type": "string",
750
+ "hasDefault": false
751
+ },
752
+ {
753
+ "name": "parentId",
754
+ "type": "string",
755
+ "hasDefault": false
756
+ }
757
+ ],
758
+ "responseType": "DatasetCreateNodeRespVO"
759
+ },
760
+ {
761
+ "scope": "admin",
762
+ "module": "dataset",
763
+ "functionName": "deleteSingleNode",
764
+ "commandPath": [
765
+ "dataset",
766
+ "delete-single-node"
767
+ ],
768
+ "method": "DELETE",
769
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id",
770
+ "endpointParams": [
771
+ "app_id",
772
+ "id",
773
+ "node_id"
774
+ ],
775
+ "controller": "Dataset.Delete",
776
+ "requestType": null,
777
+ "scalarParams": [
778
+ {
779
+ "name": "endpoint",
780
+ "type": "string",
781
+ "hasDefault": false
782
+ },
783
+ {
784
+ "name": "datasetId",
785
+ "type": "string",
786
+ "hasDefault": false
787
+ }
788
+ ],
789
+ "responseType": "DatasetDeleteRespVO"
790
+ },
791
+ {
792
+ "scope": "admin",
793
+ "module": "dataset",
794
+ "functionName": "deleteSingleDataset",
795
+ "commandPath": [
796
+ "dataset",
797
+ "delete-single-dataset"
798
+ ],
799
+ "method": "DELETE",
800
+ "endpoint": "/apps/:app_id/dataset/:id",
801
+ "endpointParams": [
802
+ "app_id",
803
+ "id"
804
+ ],
805
+ "controller": "Dataset.DeleteDataset",
806
+ "requestType": null,
807
+ "scalarParams": [
808
+ {
809
+ "name": "endpoint",
810
+ "type": "string",
811
+ "hasDefault": false
812
+ },
813
+ {
814
+ "name": "datasetId",
815
+ "type": "string",
816
+ "hasDefault": false
817
+ }
818
+ ],
819
+ "responseType": "DatasetDeleteDatasetRespVO"
820
+ },
821
+ {
822
+ "scope": "admin",
823
+ "module": "dataset",
824
+ "functionName": "exportSingleDataset",
825
+ "commandPath": [
826
+ "dataset",
827
+ "export-single-dataset"
828
+ ],
829
+ "method": "POST",
830
+ "endpoint": "/apps/:app_id/dataset/export/:id",
831
+ "endpointParams": [
832
+ "app_id",
833
+ "id"
834
+ ],
835
+ "controller": "Dataset.Export",
836
+ "requestType": null,
837
+ "scalarParams": [
838
+ {
839
+ "name": "endpoint",
840
+ "type": "string",
841
+ "hasDefault": false
842
+ },
843
+ {
844
+ "name": "datasetId",
845
+ "type": "string",
846
+ "hasDefault": false
847
+ }
848
+ ],
849
+ "responseType": "DatasetExportRespVO"
850
+ },
851
+ {
852
+ "scope": "admin",
853
+ "module": "dataset",
854
+ "functionName": "getChildNode",
855
+ "commandPath": [
856
+ "dataset",
857
+ "get-child-node"
858
+ ],
859
+ "method": "GET",
860
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id/child",
861
+ "endpointParams": [
862
+ "app_id",
863
+ "id",
864
+ "node_id"
865
+ ],
866
+ "controller": "Dataset.GetChild",
867
+ "requestType": null,
868
+ "scalarParams": [
869
+ {
870
+ "name": "endpoint",
871
+ "type": "string",
872
+ "hasDefault": false
873
+ },
874
+ {
875
+ "name": "datasetId",
876
+ "type": "string",
877
+ "hasDefault": false
878
+ },
879
+ {
880
+ "name": "parentId",
881
+ "type": "string",
882
+ "hasDefault": false
883
+ }
884
+ ],
885
+ "responseType": "DatasetRow[]"
886
+ },
887
+ {
888
+ "scope": "admin",
889
+ "module": "dataset",
890
+ "functionName": "getSingleNode",
891
+ "commandPath": [
892
+ "dataset",
893
+ "get-single-node"
894
+ ],
895
+ "method": "GET",
896
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id",
897
+ "endpointParams": [
898
+ "app_id",
899
+ "id",
900
+ "node_id"
901
+ ],
902
+ "controller": "Dataset.GetNode",
903
+ "requestType": null,
904
+ "scalarParams": [
905
+ {
906
+ "name": "endpoint",
907
+ "type": "string",
908
+ "hasDefault": false
909
+ },
910
+ {
911
+ "name": "datasetId",
912
+ "type": "string",
913
+ "hasDefault": false
914
+ }
915
+ ],
916
+ "responseType": "DatasetGetNodeRespVO"
917
+ },
918
+ {
919
+ "scope": "admin",
920
+ "module": "dataset",
921
+ "functionName": "importNewDataset",
922
+ "commandPath": [
923
+ "dataset",
924
+ "import-new-dataset"
925
+ ],
926
+ "method": "POST",
927
+ "endpoint": "/apps/:app_id/dataset/import",
928
+ "endpointParams": [
929
+ "app_id"
930
+ ],
931
+ "controller": "Dataset.Import",
932
+ "requestType": "DatasetImportReqVO",
933
+ "scalarParams": [
934
+ {
935
+ "name": "endpoint",
936
+ "type": "string",
937
+ "hasDefault": false
938
+ }
939
+ ],
940
+ "responseType": "void"
941
+ },
942
+ {
943
+ "scope": "admin",
944
+ "module": "dataset",
945
+ "functionName": "listAllDatasets",
946
+ "commandPath": [
947
+ "dataset",
948
+ "list-all-datasets"
949
+ ],
950
+ "method": "GET",
951
+ "endpoint": "/apps/:app_id/dataset",
952
+ "endpointParams": [
953
+ "app_id"
954
+ ],
955
+ "controller": "Dataset.List",
956
+ "requestType": null,
957
+ "scalarParams": [
958
+ {
959
+ "name": "endpoint",
960
+ "type": "string",
961
+ "hasDefault": false
962
+ }
963
+ ],
964
+ "responseType": "DatasetListRespVO"
965
+ },
966
+ {
967
+ "scope": "admin",
968
+ "module": "dataset",
969
+ "functionName": "moveSingleNode",
970
+ "commandPath": [
971
+ "dataset",
972
+ "move-single-node"
973
+ ],
974
+ "method": "PUT",
975
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id/move",
976
+ "endpointParams": [
977
+ "app_id",
978
+ "id",
979
+ "node_id"
980
+ ],
981
+ "controller": "Dataset.Move",
982
+ "requestType": "DatasetMoveReqVO",
983
+ "scalarParams": [
984
+ {
985
+ "name": "endpoint",
986
+ "type": "string",
987
+ "hasDefault": false
988
+ },
989
+ {
990
+ "name": "datasetId",
991
+ "type": "string",
992
+ "hasDefault": false
993
+ }
994
+ ],
995
+ "responseType": "DatasetMoveRespVO"
996
+ },
997
+ {
998
+ "scope": "admin",
999
+ "module": "dataset",
1000
+ "functionName": "updateSingleNode",
1001
+ "commandPath": [
1002
+ "dataset",
1003
+ "update-single-node"
1004
+ ],
1005
+ "method": "PUT",
1006
+ "endpoint": "/apps/:app_id/dataset/:id/:node_id",
1007
+ "endpointParams": [
1008
+ "app_id",
1009
+ "id",
1010
+ "node_id"
1011
+ ],
1012
+ "controller": "Dataset.Update",
1013
+ "requestType": "DatasetUpdateReqVO",
1014
+ "scalarParams": [
1015
+ {
1016
+ "name": "endpoint",
1017
+ "type": "string",
1018
+ "hasDefault": false
1019
+ },
1020
+ {
1021
+ "name": "datasetId",
1022
+ "type": "string",
1023
+ "hasDefault": false
1024
+ }
1025
+ ],
1026
+ "responseType": "DatasetUpdateRespVO"
1027
+ },
1028
+ {
1029
+ "scope": "admin",
1030
+ "module": "departments",
1031
+ "functionName": "adminAddDepartment",
1032
+ "commandPath": [
1033
+ "departments",
1034
+ "admin-add-department"
1035
+ ],
1036
+ "method": "POST",
1037
+ "endpoint": "/organization/departments/add",
1038
+ "endpointParams": [],
1039
+ "controller": "Departments.Add",
1040
+ "requestType": "DepartmentsAddReqVO",
1041
+ "scalarParams": [],
1042
+ "responseType": "DepartmentsAddRespVO"
1043
+ },
1044
+ {
1045
+ "scope": "admin",
1046
+ "module": "departments",
1047
+ "functionName": "adminAddActor",
1048
+ "commandPath": [
1049
+ "departments",
1050
+ "admin-add-actor"
1051
+ ],
1052
+ "method": "POST",
1053
+ "endpoint": "/organization/actors/add",
1054
+ "endpointParams": [],
1055
+ "controller": "Departments.AddActor",
1056
+ "requestType": "DepartmentsAddActorReqVO",
1057
+ "scalarParams": [],
1058
+ "responseType": "DepartmentsAddActorRespVO"
1059
+ },
1060
+ {
1061
+ "scope": "admin",
1062
+ "module": "departments",
1063
+ "functionName": "adminCreateServiceAccount",
1064
+ "commandPath": [
1065
+ "departments",
1066
+ "admin-create-service-account"
1067
+ ],
1068
+ "method": "POST",
1069
+ "endpoint": "/organization/service-account/create",
1070
+ "endpointParams": [],
1071
+ "controller": "Departments.CreateServiceAccount",
1072
+ "requestType": "DepartmentsCreateServiceAccountReqVO",
1073
+ "scalarParams": [],
1074
+ "responseType": "DepartmentsCreateServiceAccountRespVO"
1075
+ },
1076
+ {
1077
+ "scope": "admin",
1078
+ "module": "departments",
1079
+ "functionName": "adminDeleteDepartment",
1080
+ "commandPath": [
1081
+ "departments",
1082
+ "admin-delete-department"
1083
+ ],
1084
+ "method": "DELETE",
1085
+ "endpoint": "/organization/departments/:id",
1086
+ "endpointParams": [
1087
+ "id"
1088
+ ],
1089
+ "controller": "Departments.Delete",
1090
+ "requestType": null,
1091
+ "scalarParams": [],
1092
+ "responseType": "DepartmentsDeleteRespVO"
1093
+ },
1094
+ {
1095
+ "scope": "admin",
1096
+ "module": "departments",
1097
+ "functionName": "adminDeleteActor",
1098
+ "commandPath": [
1099
+ "departments",
1100
+ "admin-delete-actor"
1101
+ ],
1102
+ "method": "POST",
1103
+ "endpoint": "/organization/actors/delete",
1104
+ "endpointParams": [],
1105
+ "controller": "Departments.DeleteActor",
1106
+ "requestType": "DepartmentsDeleteActorReqVO",
1107
+ "scalarParams": [],
1108
+ "responseType": "DepartmentsGetActorsRespVO"
1109
+ },
1110
+ {
1111
+ "scope": "admin",
1112
+ "module": "departments",
1113
+ "functionName": "adminDeleteUser",
1114
+ "commandPath": [
1115
+ "departments",
1116
+ "admin-delete-user"
1117
+ ],
1118
+ "method": "DELETE",
1119
+ "endpoint": "/organization/users/:tenant_user_id",
1120
+ "endpointParams": [
1121
+ "tenant_user_id"
1122
+ ],
1123
+ "controller": "Departments.DeleteUser",
1124
+ "requestType": null,
1125
+ "scalarParams": [],
1126
+ "responseType": "DepartmentsDeleteUserRespVO"
1127
+ },
1128
+ {
1129
+ "scope": "admin",
1130
+ "module": "departments",
1131
+ "functionName": "adminChangeEmployeeAccountPassword",
1132
+ "commandPath": [
1133
+ "departments",
1134
+ "admin-change-employee-account-password"
1135
+ ],
1136
+ "method": "POST",
1137
+ "endpoint": "/organization/employee-account/changePassword",
1138
+ "endpointParams": [],
1139
+ "controller": "Departments.EmployeeAccountChangePassword",
1140
+ "requestType": "DepartmentsEmployeeAccountChangePasswordReqVO",
1141
+ "scalarParams": [],
1142
+ "responseType": "DepartmentsEmployeeAccountChangePasswordRespVO"
1143
+ },
1144
+ {
1145
+ "scope": "admin",
1146
+ "module": "departments",
1147
+ "functionName": "adminCreateEmployeeAccount",
1148
+ "commandPath": [
1149
+ "departments",
1150
+ "admin-create-employee-account"
1151
+ ],
1152
+ "method": "POST",
1153
+ "endpoint": "/organization/employee-account/create",
1154
+ "endpointParams": [],
1155
+ "controller": "Departments.EmployeeAccountCreate",
1156
+ "requestType": "DepartmentsEmployeeAccountCreateReqVO",
1157
+ "scalarParams": [],
1158
+ "responseType": "DepartmentsEmployeeAccountCreateRespVO"
1159
+ },
1160
+ {
1161
+ "scope": "admin",
1162
+ "module": "departments",
1163
+ "functionName": "adminGetActors",
1164
+ "commandPath": [
1165
+ "departments",
1166
+ "admin-get-actors"
1167
+ ],
1168
+ "method": "POST",
1169
+ "endpoint": "/organization/actors/list",
1170
+ "endpointParams": [],
1171
+ "controller": "Departments.GetActors",
1172
+ "requestType": null,
1173
+ "scalarParams": [],
1174
+ "responseType": "DepartmentsGetActorsRespVO"
1175
+ },
1176
+ {
1177
+ "scope": "admin",
1178
+ "module": "departments",
1179
+ "functionName": "adminGetDepartmentPolicy",
1180
+ "commandPath": [
1181
+ "departments",
1182
+ "admin-get-department-policy"
1183
+ ],
1184
+ "method": "GET",
1185
+ "endpoint": "/organization/department-policy/:id",
1186
+ "endpointParams": [
1187
+ "id"
1188
+ ],
1189
+ "controller": "Departments.GetDeptPolicy",
1190
+ "requestType": null,
1191
+ "scalarParams": [],
1192
+ "responseType": "DepartmentsGetDeptPolicyRespVO"
1193
+ },
1194
+ {
1195
+ "scope": "admin",
1196
+ "module": "departments",
1197
+ "functionName": "adminGetDepartmentList",
1198
+ "commandPath": [
1199
+ "departments",
1200
+ "admin-get-department-list"
1201
+ ],
1202
+ "method": "POST",
1203
+ "endpoint": "/organization/departments/list",
1204
+ "endpointParams": [],
1205
+ "controller": "Departments.GetList",
1206
+ "requestType": null,
1207
+ "scalarParams": [
1208
+ {
1209
+ "name": "ids",
1210
+ "type": "number[]",
1211
+ "hasDefault": true
1212
+ }
1213
+ ],
1214
+ "responseType": "DepartmentsGetListRespVO"
1215
+ },
1216
+ {
1217
+ "scope": "admin",
1218
+ "module": "departments",
1219
+ "functionName": "getOrganizationTree",
1220
+ "commandPath": [
1221
+ "departments",
1222
+ "get-organization-tree"
1223
+ ],
1224
+ "method": "POST",
1225
+ "endpoint": "/organization/departments/tree",
1226
+ "endpointParams": [],
1227
+ "controller": "UserAction.GetOrganizationTree",
1228
+ "requestType": null,
1229
+ "scalarParams": [
1230
+ {
1231
+ "name": "parentId",
1232
+ "type": "number",
1233
+ "hasDefault": true
1234
+ }
1235
+ ],
1236
+ "responseType": "GetOrganizationTreeRespVO"
1237
+ },
1238
+ {
1239
+ "scope": "admin",
1240
+ "module": "departments",
1241
+ "functionName": "adminGetOrganizationUsers",
1242
+ "commandPath": [
1243
+ "departments",
1244
+ "admin-get-organization-users"
1245
+ ],
1246
+ "method": "POST",
1247
+ "endpoint": "/organization/list-users",
1248
+ "endpointParams": [],
1249
+ "controller": "Departments.GetOrganizationUsers",
1250
+ "requestType": "DepartmentsGetOrganizationUsersReqVO",
1251
+ "scalarParams": [],
1252
+ "responseType": "DepartmentsGetOrganizationUsersRespVO"
1253
+ },
1254
+ {
1255
+ "scope": "admin",
1256
+ "module": "departments",
1257
+ "functionName": "adminGetStaffUser",
1258
+ "commandPath": [
1259
+ "departments",
1260
+ "admin-get-staff-user"
1261
+ ],
1262
+ "method": "GET",
1263
+ "endpoint": "/organization/users/:tenant_user_id",
1264
+ "endpointParams": [
1265
+ "tenant_user_id"
1266
+ ],
1267
+ "controller": "Departments.GetUser",
1268
+ "requestType": null,
1269
+ "scalarParams": [],
1270
+ "responseType": "DepartmentsGetUserRespVO"
1271
+ },
1272
+ {
1273
+ "scope": "admin",
1274
+ "module": "departments",
1275
+ "functionName": "adminGetInviteCodeHistory",
1276
+ "commandPath": [
1277
+ "departments",
1278
+ "admin-get-invite-code-history"
1279
+ ],
1280
+ "method": "POST",
1281
+ "endpoint": "/organization/invite/invite-code-history",
1282
+ "endpointParams": [],
1283
+ "controller": "Departments.InviteCodeHistory",
1284
+ "requestType": "DepartmentsInviteCodeHistoryReqVO",
1285
+ "scalarParams": [],
1286
+ "responseType": "DepartmentsInviteCodeHistoryRespVO"
1287
+ },
1288
+ {
1289
+ "scope": "admin",
1290
+ "module": "departments",
1291
+ "functionName": "adminSwitchInviteCode",
1292
+ "commandPath": [
1293
+ "departments",
1294
+ "admin-switch-invite-code"
1295
+ ],
1296
+ "method": "POST",
1297
+ "endpoint": "/organization/invite/invite-code-switch",
1298
+ "endpointParams": [],
1299
+ "controller": "Departments.InviteCodeSwtich",
1300
+ "requestType": "DepartmentsInviteCodeSwitchReqVO",
1301
+ "scalarParams": [],
1302
+ "responseType": "DepartmentsInviteCodeSwitchRespVO"
1303
+ },
1304
+ {
1305
+ "scope": "admin",
1306
+ "module": "departments",
1307
+ "functionName": "adminInviteUserOneByOne",
1308
+ "commandPath": [
1309
+ "departments",
1310
+ "admin-invite-user-one-by-one"
1311
+ ],
1312
+ "method": "POST",
1313
+ "endpoint": "/organization/invite/one-by-one",
1314
+ "endpointParams": [],
1315
+ "controller": "Departments.InviteOneByOne",
1316
+ "requestType": "DepartmentsInviteOneByOneReqVO",
1317
+ "scalarParams": [],
1318
+ "responseType": "DepartmentsInviteOneByOneRespVO"
1319
+ },
1320
+ {
1321
+ "scope": "admin",
1322
+ "module": "departments",
1323
+ "functionName": "adminMakeInviteLink",
1324
+ "commandPath": [
1325
+ "departments",
1326
+ "admin-make-invite-link"
1327
+ ],
1328
+ "method": "POST",
1329
+ "endpoint": "/organization/invite/make-link",
1330
+ "endpointParams": [],
1331
+ "controller": "Departments.MakeLink",
1332
+ "requestType": "DepartmentsMakeLinkReqVO",
1333
+ "scalarParams": [],
1334
+ "responseType": "DepartmentsMakeLinkRespVO"
1335
+ },
1336
+ {
1337
+ "scope": "admin",
1338
+ "module": "departments",
1339
+ "functionName": "adminRelocateDepartment",
1340
+ "commandPath": [
1341
+ "departments",
1342
+ "admin-relocate-department"
1343
+ ],
1344
+ "method": "PUT",
1345
+ "endpoint": "/organization/departments/:id/relocate",
1346
+ "endpointParams": [
1347
+ "id"
1348
+ ],
1349
+ "controller": "Departments.Relocate",
1350
+ "requestType": "DepartmentsRelocateReqVO",
1351
+ "scalarParams": [],
1352
+ "responseType": "DepartmentsRelocateRespVO"
1353
+ },
1354
+ {
1355
+ "scope": "admin",
1356
+ "module": "departments",
1357
+ "functionName": "adminRenameDepartment",
1358
+ "commandPath": [
1359
+ "departments",
1360
+ "admin-rename-department"
1361
+ ],
1362
+ "method": "PUT",
1363
+ "endpoint": "/organization/departments/:id/rename",
1364
+ "endpointParams": [
1365
+ "id"
1366
+ ],
1367
+ "controller": "Departments.Rename",
1368
+ "requestType": "DepartmentsRenameReqVO",
1369
+ "scalarParams": [],
1370
+ "responseType": "DepartmentsRenameRespVO"
1371
+ },
1372
+ {
1373
+ "scope": "admin",
1374
+ "module": "departments",
1375
+ "functionName": "adminResendInvite",
1376
+ "commandPath": [
1377
+ "departments",
1378
+ "admin-resend-invite"
1379
+ ],
1380
+ "method": "POST",
1381
+ "endpoint": "/organization/invite/resend",
1382
+ "endpointParams": [],
1383
+ "controller": "Departments.ResendInvite",
1384
+ "requestType": "DepartmentsResendInviteReqVO",
1385
+ "scalarParams": [],
1386
+ "responseType": "DepartmentsResendInviteRespVO"
1387
+ },
1388
+ {
1389
+ "scope": "admin",
1390
+ "module": "departments",
1391
+ "functionName": "adminSetDepartmentPolicy",
1392
+ "commandPath": [
1393
+ "departments",
1394
+ "admin-set-department-policy"
1395
+ ],
1396
+ "method": "PUT",
1397
+ "endpoint": "/organization/department-policy/:id",
1398
+ "endpointParams": [
1399
+ "id"
1400
+ ],
1401
+ "controller": "Departments.SetDeptPolicy",
1402
+ "requestType": "DepartmentsSetDeptPolicyReqVO",
1403
+ "scalarParams": [],
1404
+ "responseType": "DepartmentsSetDeptPolicyRespVO"
1405
+ },
1406
+ {
1407
+ "scope": "admin",
1408
+ "module": "departments",
1409
+ "functionName": "adminUpdateStaffUser",
1410
+ "commandPath": [
1411
+ "departments",
1412
+ "admin-update-staff-user"
1413
+ ],
1414
+ "method": "PUT",
1415
+ "endpoint": "/organization/users/:tenant_user_id",
1416
+ "endpointParams": [
1417
+ "tenant_user_id"
1418
+ ],
1419
+ "controller": "Departments.UpdateUser",
1420
+ "requestType": "DepartmentsUpdateUserReqVO",
1421
+ "scalarParams": [],
1422
+ "responseType": "DepartmentsUpdateUserRespVO"
1423
+ },
1424
+ {
1425
+ "scope": "admin",
1426
+ "module": "developer",
1427
+ "functionName": "queryDeveloperClients",
1428
+ "commandPath": [
1429
+ "developer",
1430
+ "query-developer-clients"
1431
+ ],
1432
+ "method": "GET",
1433
+ "endpoint": "/developer/clients",
1434
+ "endpointParams": [],
1435
+ "controller": "Developer.ClientQuery",
1436
+ "requestType": null,
1437
+ "scalarParams": [],
1438
+ "responseType": "DeveloperClientQueryRespVO"
1439
+ },
1440
+ {
1441
+ "scope": "admin",
1442
+ "module": "developer",
1443
+ "functionName": "createDeveloperClient",
1444
+ "commandPath": [
1445
+ "developer",
1446
+ "create-developer-client"
1447
+ ],
1448
+ "method": "POST",
1449
+ "endpoint": "/developer/clients",
1450
+ "endpointParams": [],
1451
+ "controller": "Developer.ClientCreate",
1452
+ "requestType": "DeveloperClientCreateReqVO",
1453
+ "scalarParams": [],
1454
+ "responseType": "DeveloperClientCreateRespVO"
1455
+ },
1456
+ {
1457
+ "scope": "admin",
1458
+ "module": "developer",
1459
+ "functionName": "getDeveloperClient",
1460
+ "commandPath": [
1461
+ "developer",
1462
+ "get-developer-client"
1463
+ ],
1464
+ "method": "GET",
1465
+ "endpoint": "/developer/clients/:hash_id",
1466
+ "endpointParams": [
1467
+ "hash_id"
1468
+ ],
1469
+ "controller": "Developer.ClientGet",
1470
+ "requestType": null,
1471
+ "scalarParams": [],
1472
+ "responseType": "DeveloperClientGetRespVO"
1473
+ },
1474
+ {
1475
+ "scope": "admin",
1476
+ "module": "developer",
1477
+ "functionName": "updateDeveloperClient",
1478
+ "commandPath": [
1479
+ "developer",
1480
+ "update-developer-client"
1481
+ ],
1482
+ "method": "PUT",
1483
+ "endpoint": "/developer/clients/:hash_id",
1484
+ "endpointParams": [
1485
+ "hash_id"
1486
+ ],
1487
+ "controller": "Developer.ClientUpdate",
1488
+ "requestType": "DeveloperClientUpdateReqVO",
1489
+ "scalarParams": [],
1490
+ "responseType": "DeveloperClientUpdateRespVO"
1491
+ },
1492
+ {
1493
+ "scope": "admin",
1494
+ "module": "developer",
1495
+ "functionName": "deleteDeveloperClient",
1496
+ "commandPath": [
1497
+ "developer",
1498
+ "delete-developer-client"
1499
+ ],
1500
+ "method": "DELETE",
1501
+ "endpoint": "/developer/clients/:hash_id",
1502
+ "endpointParams": [
1503
+ "hash_id"
1504
+ ],
1505
+ "controller": "Developer.ClientDelete",
1506
+ "requestType": null,
1507
+ "scalarParams": [],
1508
+ "responseType": "string"
1509
+ },
1510
+ {
1511
+ "scope": "admin",
1512
+ "module": "developer",
1513
+ "functionName": "createDeveloperClientSecret",
1514
+ "commandPath": [
1515
+ "developer",
1516
+ "create-developer-client-secret"
1517
+ ],
1518
+ "method": "POST",
1519
+ "endpoint": "/developer/clients/:hash_id/secrets",
1520
+ "endpointParams": [
1521
+ "hash_id"
1522
+ ],
1523
+ "controller": "Developer.ClientSecretCreate",
1524
+ "requestType": null,
1525
+ "scalarParams": [],
1526
+ "responseType": "DeveloperClientSecretCreateRespVO"
1527
+ },
1528
+ {
1529
+ "scope": "admin",
1530
+ "module": "developer",
1531
+ "functionName": "listDeveloperClientSecrets",
1532
+ "commandPath": [
1533
+ "developer",
1534
+ "list-developer-client-secrets"
1535
+ ],
1536
+ "method": "GET",
1537
+ "endpoint": "/developer/clients/:hash_id/secrets",
1538
+ "endpointParams": [
1539
+ "hash_id"
1540
+ ],
1541
+ "controller": "Developer.ClientSecretList",
1542
+ "requestType": null,
1543
+ "scalarParams": [],
1544
+ "responseType": "DeveloperClientSecretListRespVO"
1545
+ },
1546
+ {
1547
+ "scope": "admin",
1548
+ "module": "developer",
1549
+ "functionName": "revokeDeveloperClientSecret",
1550
+ "commandPath": [
1551
+ "developer",
1552
+ "revoke-developer-client-secret"
1553
+ ],
1554
+ "method": "DELETE",
1555
+ "endpoint": "/developer/clients/:hash_id/secrets/:secret_id",
1556
+ "endpointParams": [
1557
+ "hash_id",
1558
+ "secret_id"
1559
+ ],
1560
+ "controller": "Developer.ClientSecretRevoke",
1561
+ "requestType": null,
1562
+ "scalarParams": [],
1563
+ "responseType": "number"
1564
+ },
1565
+ {
1566
+ "scope": "admin",
1567
+ "module": "developer",
1568
+ "functionName": "queryClientHooklets",
1569
+ "commandPath": [
1570
+ "developer",
1571
+ "query-client-hooklets"
1572
+ ],
1573
+ "method": "GET",
1574
+ "endpoint": "/developer/clients/:client_hash_id/hooklets",
1575
+ "endpointParams": [
1576
+ "client_hash_id"
1577
+ ],
1578
+ "controller": "Developer.ClientHookletQuery",
1579
+ "requestType": null,
1580
+ "scalarParams": [],
1581
+ "responseType": "DeveloperHookletQueryRespVO"
1582
+ },
1583
+ {
1584
+ "scope": "admin",
1585
+ "module": "developer",
1586
+ "functionName": "createClientHooklet",
1587
+ "commandPath": [
1588
+ "developer",
1589
+ "create-client-hooklet"
1590
+ ],
1591
+ "method": "POST",
1592
+ "endpoint": "/developer/clients/:client_hash_id/hooklets",
1593
+ "endpointParams": [
1594
+ "client_hash_id"
1595
+ ],
1596
+ "controller": "Developer.ClientHookletCreate",
1597
+ "requestType": "DeveloperHookletCreateReqVO",
1598
+ "scalarParams": [],
1599
+ "responseType": "DeveloperHookletCreateRespVO"
1600
+ },
1601
+ {
1602
+ "scope": "admin",
1603
+ "module": "developer",
1604
+ "functionName": "getClientHooklet",
1605
+ "commandPath": [
1606
+ "developer",
1607
+ "get-client-hooklet"
1608
+ ],
1609
+ "method": "GET",
1610
+ "endpoint": "/developer/clients/:client_hash_id/hooklets/:hash_id",
1611
+ "endpointParams": [
1612
+ "client_hash_id",
1613
+ "hash_id"
1614
+ ],
1615
+ "controller": "Developer.ClientHookletGet",
1616
+ "requestType": null,
1617
+ "scalarParams": [
1618
+ {
1619
+ "name": "hookletHashId",
1620
+ "type": "string",
1621
+ "hasDefault": false
1622
+ }
1623
+ ],
1624
+ "responseType": "DeveloperHookletGetRespVO"
1625
+ },
1626
+ {
1627
+ "scope": "admin",
1628
+ "module": "developer",
1629
+ "functionName": "updateClientHooklet",
1630
+ "commandPath": [
1631
+ "developer",
1632
+ "update-client-hooklet"
1633
+ ],
1634
+ "method": "PUT",
1635
+ "endpoint": "/developer/clients/:client_hash_id/hooklets/:hash_id",
1636
+ "endpointParams": [
1637
+ "client_hash_id",
1638
+ "hash_id"
1639
+ ],
1640
+ "controller": "Developer.ClientHookletUpdate",
1641
+ "requestType": "DeveloperHookletUpdateReqVO",
1642
+ "scalarParams": [
1643
+ {
1644
+ "name": "hookletHashId",
1645
+ "type": "string",
1646
+ "hasDefault": false
1647
+ }
1648
+ ],
1649
+ "responseType": "DeveloperHookletUpdateRespVO"
1650
+ },
1651
+ {
1652
+ "scope": "admin",
1653
+ "module": "developer",
1654
+ "functionName": "deleteClientHooklet",
1655
+ "commandPath": [
1656
+ "developer",
1657
+ "delete-client-hooklet"
1658
+ ],
1659
+ "method": "DELETE",
1660
+ "endpoint": "/developer/clients/:client_hash_id/hooklets/:hash_id",
1661
+ "endpointParams": [
1662
+ "client_hash_id",
1663
+ "hash_id"
1664
+ ],
1665
+ "controller": "Developer.ClientHookletDelete",
1666
+ "requestType": null,
1667
+ "scalarParams": [
1668
+ {
1669
+ "name": "hookletHashId",
1670
+ "type": "string",
1671
+ "hasDefault": false
1672
+ }
1673
+ ],
1674
+ "responseType": "string"
1675
+ },
1676
+ {
1677
+ "scope": "admin",
1678
+ "module": "entity-tags",
1679
+ "functionName": "getEntityTagNames",
1680
+ "commandPath": [
1681
+ "entity-tags",
1682
+ "get-entity-tag-names"
1683
+ ],
1684
+ "method": "GET",
1685
+ "endpoint": "/api/user-action-entity/:appId/:entityId/tag-names",
1686
+ "endpointParams": [
1687
+ "appId",
1688
+ "entityId"
1689
+ ],
1690
+ "controller": "UserActionEntity.GetEntityTagNames",
1691
+ "requestType": null,
1692
+ "scalarParams": [],
1693
+ "responseType": "string[]"
1694
+ },
1695
+ {
1696
+ "scope": "admin",
1697
+ "module": "entity-tags",
1698
+ "functionName": "batchAddEntityTags",
1699
+ "commandPath": [
1700
+ "entity-tags",
1701
+ "batch-add-entity-tags"
1702
+ ],
1703
+ "method": "POST",
1704
+ "endpoint": "/api/user-action-entity/:appId/:entityId/batch-add-tags",
1705
+ "endpointParams": [
1706
+ "appId",
1707
+ "entityId"
1708
+ ],
1709
+ "controller": "UserActionEntity.BatchAddEntityTags",
1710
+ "requestType": "{ policy_id: string selection: any tag_names: string[] }",
1711
+ "scalarParams": [],
1712
+ "responseType": "any"
1713
+ },
1714
+ {
1715
+ "scope": "admin",
1716
+ "module": "entity-tags",
1717
+ "functionName": "batchRemoveEntityTags",
1718
+ "commandPath": [
1719
+ "entity-tags",
1720
+ "batch-remove-entity-tags"
1721
+ ],
1722
+ "method": "POST",
1723
+ "endpoint": "/api/user-action-entity/:appId/:entityId/batch-remove-tags",
1724
+ "endpointParams": [
1725
+ "appId",
1726
+ "entityId"
1727
+ ],
1728
+ "controller": "UserActionEntity.BatchRemoveEntityTags",
1729
+ "requestType": "{ policy_id: string selection: any tag_names: string[] }",
1730
+ "scalarParams": [],
1731
+ "responseType": "any"
1732
+ },
1733
+ {
1734
+ "scope": "admin",
1735
+ "module": "entity-tags",
1736
+ "functionName": "getSelectionTags",
1737
+ "commandPath": [
1738
+ "entity-tags",
1739
+ "get-selection-tags"
1740
+ ],
1741
+ "method": "POST",
1742
+ "endpoint": "/api/user-action-entity/:appId/:entityId/get-selection-tags",
1743
+ "endpointParams": [
1744
+ "appId",
1745
+ "entityId"
1746
+ ],
1747
+ "controller": "UserActionEntity.GetSelectionTags",
1748
+ "requestType": "{ policy_id: string selection: any }",
1749
+ "scalarParams": [],
1750
+ "responseType": "string[]"
1751
+ },
1752
+ {
1753
+ "scope": "admin",
1754
+ "module": "entity-tags",
1755
+ "functionName": "updateRecordTags",
1756
+ "commandPath": [
1757
+ "entity-tags",
1758
+ "update-record-tags"
1759
+ ],
1760
+ "method": "PUT",
1761
+ "endpoint": "/api/entity/:appId/:entityId/row/:rowId",
1762
+ "endpointParams": [
1763
+ "appId",
1764
+ "entityId",
1765
+ "rowId"
1766
+ ],
1767
+ "controller": "UserAction.EntityUpdate (with tags support)",
1768
+ "requestType": "{ policy_id: string tags: string[] }",
1769
+ "scalarParams": [],
1770
+ "responseType": "boolean"
1771
+ },
1772
+ {
1773
+ "scope": "admin",
1774
+ "module": "entity",
1775
+ "functionName": "adminInvokeDebugHook",
1776
+ "commandPath": [
1777
+ "entity",
1778
+ "admin-invoke-debug-hook"
1779
+ ],
1780
+ "method": "POST",
1781
+ "endpoint": "/apps/:app_id/entity/:entity_id/invoke-debug",
1782
+ "endpointParams": [
1783
+ "app_id",
1784
+ "entity_id"
1785
+ ],
1786
+ "controller": "Entity.DebugInvokeHook",
1787
+ "requestType": "EntityDebugInvokeHookReqVO",
1788
+ "scalarParams": [],
1789
+ "responseType": "EntityDebugInvokeHookRespVO"
1790
+ },
1791
+ {
1792
+ "scope": "admin",
1793
+ "module": "entity",
1794
+ "functionName": "adminDeleteEntity",
1795
+ "commandPath": [
1796
+ "entity",
1797
+ "admin-delete-entity"
1798
+ ],
1799
+ "method": "DELETE",
1800
+ "endpoint": "/apps/:app_id/entity/:entity_id",
1801
+ "endpointParams": [
1802
+ "app_id",
1803
+ "entity_id"
1804
+ ],
1805
+ "controller": "Entity.DeleteEntity",
1806
+ "requestType": null,
1807
+ "scalarParams": [],
1808
+ "responseType": "EntityDeleteEntityRespVO"
1809
+ },
1810
+ {
1811
+ "scope": "admin",
1812
+ "module": "entity",
1813
+ "functionName": "adminGetEntityRecycle",
1814
+ "commandPath": [
1815
+ "entity",
1816
+ "admin-get-entity-recycle"
1817
+ ],
1818
+ "method": "GET",
1819
+ "endpoint": "/apps/:app_id/entity-recycle",
1820
+ "endpointParams": [
1821
+ "app_id"
1822
+ ],
1823
+ "controller": "Entity.EntityRecycle",
1824
+ "requestType": null,
1825
+ "scalarParams": [],
1826
+ "responseType": "void"
1827
+ },
1828
+ {
1829
+ "scope": "admin",
1830
+ "module": "entity",
1831
+ "functionName": "adminGetFieldRecycle",
1832
+ "commandPath": [
1833
+ "entity",
1834
+ "admin-get-field-recycle"
1835
+ ],
1836
+ "method": "GET",
1837
+ "endpoint": "/apps/:app_id/entity/:entity_id/restore-fields",
1838
+ "endpointParams": [
1839
+ "app_id",
1840
+ "entity_id"
1841
+ ],
1842
+ "controller": "Entity.FieldRecycle",
1843
+ "requestType": null,
1844
+ "scalarParams": [],
1845
+ "responseType": "EntityFieldRecycleRespVO"
1846
+ },
1847
+ {
1848
+ "scope": "admin",
1849
+ "module": "entity",
1850
+ "functionName": "adminGetEntityInfo",
1851
+ "commandPath": [
1852
+ "entity",
1853
+ "admin-get-entity-info"
1854
+ ],
1855
+ "method": "GET",
1856
+ "endpoint": "/apps/:app_id/entity/:entity_id",
1857
+ "endpointParams": [
1858
+ "app_id",
1859
+ "entity_id"
1860
+ ],
1861
+ "controller": "Entity.Info",
1862
+ "requestType": null,
1863
+ "scalarParams": [],
1864
+ "responseType": "EntityInfoRespVO"
1865
+ },
1866
+ {
1867
+ "scope": "admin",
1868
+ "module": "entity",
1869
+ "functionName": "adminSaveEntity",
1870
+ "commandPath": [
1871
+ "entity",
1872
+ "admin-save-entity"
1873
+ ],
1874
+ "method": "PUT",
1875
+ "endpoint": "/apps/:app_id/entity/:entity_id",
1876
+ "endpointParams": [
1877
+ "app_id",
1878
+ "entity_id"
1879
+ ],
1880
+ "controller": "Entity.Save",
1881
+ "requestType": "EntitySaveReqVO",
1882
+ "scalarParams": [],
1883
+ "responseType": "EntitySaveRespVO"
1884
+ },
1885
+ {
1886
+ "scope": "admin",
1887
+ "module": "entity",
1888
+ "functionName": "adminSaveEntityCustomKeys",
1889
+ "commandPath": [
1890
+ "entity",
1891
+ "admin-save-entity-custom-keys"
1892
+ ],
1893
+ "method": "PUT",
1894
+ "endpoint": "/apps/:app_id/entity/:entity_id/custom-keys",
1895
+ "endpointParams": [
1896
+ "app_id",
1897
+ "entity_id"
1898
+ ],
1899
+ "controller": "Entity.SaveCustomKeys",
1900
+ "requestType": "EntitySaveCustomKeysReqVO",
1901
+ "scalarParams": [],
1902
+ "responseType": "EntitySaveCustomKeysRespVO"
1903
+ },
1904
+ {
1905
+ "scope": "admin",
1906
+ "module": "entity",
1907
+ "functionName": "adminSaveEntityName",
1908
+ "commandPath": [
1909
+ "entity",
1910
+ "admin-save-entity-name"
1911
+ ],
1912
+ "method": "PUT",
1913
+ "endpoint": "/apps/:app_id/entity/:entity_id/name",
1914
+ "endpointParams": [
1915
+ "app_id",
1916
+ "entity_id"
1917
+ ],
1918
+ "controller": "Entity.SaveName",
1919
+ "requestType": "EntitySaveNameReqVO",
1920
+ "scalarParams": [],
1921
+ "responseType": "EntitySaveNameRespVO"
1922
+ },
1923
+ {
1924
+ "scope": "admin",
1925
+ "module": "entity",
1926
+ "functionName": "adminSetSerialInitValue",
1927
+ "commandPath": [
1928
+ "entity",
1929
+ "admin-set-serial-init-value"
1930
+ ],
1931
+ "method": "POST",
1932
+ "endpoint": "/apps/:app_id/entity/:entity_id/serial-initval",
1933
+ "endpointParams": [
1934
+ "app_id",
1935
+ "entity_id"
1936
+ ],
1937
+ "controller": "Entity.SerialInitVal",
1938
+ "requestType": "EntitySerialInitValReqVO",
1939
+ "scalarParams": [],
1940
+ "responseType": "EntitySerialInitValRespVO"
1941
+ },
1942
+ {
1943
+ "scope": "admin",
1944
+ "module": "entity",
1945
+ "functionName": "adminUpdateEntityButtons",
1946
+ "commandPath": [
1947
+ "entity",
1948
+ "admin-update-entity-buttons"
1949
+ ],
1950
+ "method": "PUT",
1951
+ "endpoint": "/apps/:app_id/entity/:entity_id/buttons",
1952
+ "endpointParams": [
1953
+ "app_id",
1954
+ "entity_id"
1955
+ ],
1956
+ "controller": "Entity.UpdateButtons",
1957
+ "requestType": "EntityUpdateButtonsReqVO",
1958
+ "scalarParams": [],
1959
+ "responseType": "EntityUpdateButtonsRespVO"
1960
+ },
1961
+ {
1962
+ "scope": "admin",
1963
+ "module": "entity",
1964
+ "functionName": "adminUpdateEntityOptions",
1965
+ "commandPath": [
1966
+ "entity",
1967
+ "admin-update-entity-options"
1968
+ ],
1969
+ "method": "PUT",
1970
+ "endpoint": "/apps/:app_id/entity/:entity_id/options",
1971
+ "endpointParams": [
1972
+ "app_id",
1973
+ "entity_id"
1974
+ ],
1975
+ "controller": "Entity.UpdateOptions",
1976
+ "requestType": "EntityUpdateOptionsReqVO",
1977
+ "scalarParams": [],
1978
+ "responseType": "EntityUpdateOptionsRespVO"
1979
+ },
1980
+ {
1981
+ "scope": "admin",
1982
+ "module": "entity",
1983
+ "functionName": "adminUpdateEntitySuccessScreen",
1984
+ "commandPath": [
1985
+ "entity",
1986
+ "admin-update-entity-success-screen"
1987
+ ],
1988
+ "method": "PUT",
1989
+ "endpoint": "/apps/:app_id/entity/:entity_id/success-screen",
1990
+ "endpointParams": [
1991
+ "app_id",
1992
+ "entity_id"
1993
+ ],
1994
+ "controller": "Entity.UpdateSuccessScreen",
1995
+ "requestType": "EntityUpdateSuccessScreenReqVO",
1996
+ "scalarParams": [],
1997
+ "responseType": "EntityUpdateSuccessScreenRespVO"
1998
+ },
1999
+ {
2000
+ "scope": "admin",
2001
+ "module": "entity",
2002
+ "functionName": "adminUpdateEntityNotifications",
2003
+ "commandPath": [
2004
+ "entity",
2005
+ "admin-update-entity-notifications"
2006
+ ],
2007
+ "method": "PUT",
2008
+ "endpoint": "/apps/:app_id/entity/:entity_id/notifications",
2009
+ "endpointParams": [
2010
+ "app_id",
2011
+ "entity_id"
2012
+ ],
2013
+ "controller": "Entity.UpdateNotifications",
2014
+ "requestType": "EntityUpdateNotificationsReqVO",
2015
+ "scalarParams": [],
2016
+ "responseType": "EntityUpdateNotificationsRespVO"
2017
+ },
2018
+ {
2019
+ "scope": "admin",
2020
+ "module": "entity",
2021
+ "functionName": "adminTestEntityNotification",
2022
+ "commandPath": [
2023
+ "entity",
2024
+ "admin-test-entity-notification"
2025
+ ],
2026
+ "method": "POST",
2027
+ "endpoint": "/apps/:app_id/entity/:entity_id/test-notification",
2028
+ "endpointParams": [
2029
+ "app_id",
2030
+ "entity_id"
2031
+ ],
2032
+ "controller": "Entity.TestNotification",
2033
+ "requestType": "EntityTestNotificationReqVO",
2034
+ "scalarParams": [],
2035
+ "responseType": "EntityTestNotificationRespVO"
2036
+ },
2037
+ {
2038
+ "scope": "admin",
2039
+ "module": "entity",
2040
+ "functionName": "adminGetEntityDataRecycle",
2041
+ "commandPath": [
2042
+ "entity",
2043
+ "admin-get-entity-data-recycle"
2044
+ ],
2045
+ "method": "GET",
2046
+ "endpoint": "/apps/:app_id/entity/:entity_id/restore-data",
2047
+ "endpointParams": [
2048
+ "app_id",
2049
+ "entity_id"
2050
+ ],
2051
+ "controller": "Entity.DataRecycle",
2052
+ "requestType": null,
2053
+ "scalarParams": [],
2054
+ "responseType": "any"
2055
+ },
2056
+ {
2057
+ "scope": "admin",
2058
+ "module": "entity",
2059
+ "functionName": "sendEntityClone",
2060
+ "commandPath": [
2061
+ "entity",
2062
+ "send-entity-clone"
2063
+ ],
2064
+ "method": "POST",
2065
+ "endpoint": "/apps/:app_id/entity/:entity_id/clone",
2066
+ "endpointParams": [
2067
+ "app_id",
2068
+ "entity_id"
2069
+ ],
2070
+ "controller": "Entity.CloneEntity",
2071
+ "requestType": "EntityCloneReqVO",
2072
+ "scalarParams": [],
2073
+ "responseType": "EntityCloneRespVO"
2074
+ },
2075
+ {
2076
+ "scope": "admin",
2077
+ "module": "extension",
2078
+ "functionName": "getExtensionHttpRequest",
2079
+ "commandPath": [
2080
+ "extension",
2081
+ "get-extension-http-request"
2082
+ ],
2083
+ "method": "GET",
2084
+ "endpoint": "/extension/:id/*path",
2085
+ "endpointParams": [
2086
+ "id"
2087
+ ],
2088
+ "controller": "Extension.HttpRequest",
2089
+ "requestType": null,
2090
+ "scalarParams": [
2091
+ {
2092
+ "name": "path",
2093
+ "type": "string",
2094
+ "hasDefault": false
2095
+ }
2096
+ ],
2097
+ "responseType": "void"
2098
+ },
2099
+ {
2100
+ "scope": "admin",
2101
+ "module": "extension",
2102
+ "functionName": "getExtensionStaticFile",
2103
+ "commandPath": [
2104
+ "extension",
2105
+ "get-extension-static-file"
2106
+ ],
2107
+ "method": "GET",
2108
+ "endpoint": "/extension/:id/*filepath",
2109
+ "endpointParams": [
2110
+ "id"
2111
+ ],
2112
+ "controller": "Extension.StaticFile",
2113
+ "requestType": null,
2114
+ "scalarParams": [
2115
+ {
2116
+ "name": "filepath",
2117
+ "type": "string",
2118
+ "hasDefault": false
2119
+ }
2120
+ ],
2121
+ "responseType": "void"
2122
+ },
2123
+ {
2124
+ "scope": "admin",
2125
+ "module": "ingress",
2126
+ "functionName": "createEntityIngress",
2127
+ "commandPath": [
2128
+ "ingress",
2129
+ "create-entity-ingress"
2130
+ ],
2131
+ "method": "POST",
2132
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress",
2133
+ "endpointParams": [
2134
+ "app_id",
2135
+ "entity_id"
2136
+ ],
2137
+ "controller": "App.IngressCreate",
2138
+ "requestType": "AppIngressCreateReqVO",
2139
+ "scalarParams": [],
2140
+ "responseType": "AppIngressCreateRespVO"
2141
+ },
2142
+ {
2143
+ "scope": "admin",
2144
+ "module": "ingress",
2145
+ "functionName": "createEntityIngressFrom",
2146
+ "commandPath": [
2147
+ "ingress",
2148
+ "create-entity-ingress-from"
2149
+ ],
2150
+ "method": "POST",
2151
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress?from_ingress_id=:id",
2152
+ "endpointParams": [
2153
+ "app_id",
2154
+ "entity_id",
2155
+ "id"
2156
+ ],
2157
+ "controller": "App.IngressCreate (clone from existing ingress)",
2158
+ "requestType": "AppIngressCreateReqVO",
2159
+ "scalarParams": [
2160
+ {
2161
+ "name": "fromIngressId",
2162
+ "type": "string",
2163
+ "hasDefault": false
2164
+ }
2165
+ ],
2166
+ "responseType": "AppIngressCreateRespVO"
2167
+ },
2168
+ {
2169
+ "scope": "admin",
2170
+ "module": "ingress",
2171
+ "functionName": "deleteEntityIngress",
2172
+ "commandPath": [
2173
+ "ingress",
2174
+ "delete-entity-ingress"
2175
+ ],
2176
+ "method": "DELETE",
2177
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress/:id",
2178
+ "endpointParams": [
2179
+ "app_id",
2180
+ "entity_id",
2181
+ "id"
2182
+ ],
2183
+ "controller": "App.IngressDelete",
2184
+ "requestType": null,
2185
+ "scalarParams": [],
2186
+ "responseType": "AppIngressDeleteRespVO"
2187
+ },
2188
+ {
2189
+ "scope": "admin",
2190
+ "module": "ingress",
2191
+ "functionName": "getEntityIngress",
2192
+ "commandPath": [
2193
+ "ingress",
2194
+ "get-entity-ingress"
2195
+ ],
2196
+ "method": "GET",
2197
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress/:id",
2198
+ "endpointParams": [
2199
+ "app_id",
2200
+ "entity_id",
2201
+ "id"
2202
+ ],
2203
+ "controller": "App.IngressGet",
2204
+ "requestType": null,
2205
+ "scalarParams": [],
2206
+ "responseType": "AppIngressGetRespVO"
2207
+ },
2208
+ {
2209
+ "scope": "admin",
2210
+ "module": "ingress",
2211
+ "functionName": "getEntityIngressBlocks",
2212
+ "commandPath": [
2213
+ "ingress",
2214
+ "get-entity-ingress-blocks"
2215
+ ],
2216
+ "method": "GET",
2217
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress-blocks/:id",
2218
+ "endpointParams": [
2219
+ "app_id",
2220
+ "entity_id",
2221
+ "id"
2222
+ ],
2223
+ "controller": "App.IngressGetBlocks",
2224
+ "requestType": null,
2225
+ "scalarParams": [],
2226
+ "responseType": "AppIngressGetBlocksRespVO"
2227
+ },
2228
+ {
2229
+ "scope": "admin",
2230
+ "module": "ingress",
2231
+ "functionName": "getEntityIngressByHashID",
2232
+ "commandPath": [
2233
+ "ingress",
2234
+ "get-entity-ingress-by-hash-id"
2235
+ ],
2236
+ "method": "GET",
2237
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress-h/:id",
2238
+ "endpointParams": [
2239
+ "app_id",
2240
+ "entity_id",
2241
+ "id"
2242
+ ],
2243
+ "controller": "App.IngressGetByHashID",
2244
+ "requestType": null,
2245
+ "scalarParams": [],
2246
+ "responseType": "AppIngressGetByHashIDRespVO"
2247
+ },
2248
+ {
2249
+ "scope": "admin",
2250
+ "module": "ingress",
2251
+ "functionName": "getEntityIngressList",
2252
+ "commandPath": [
2253
+ "ingress",
2254
+ "get-entity-ingress-list"
2255
+ ],
2256
+ "method": "GET",
2257
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress",
2258
+ "endpointParams": [
2259
+ "app_id",
2260
+ "entity_id"
2261
+ ],
2262
+ "controller": "App.IngressList",
2263
+ "requestType": null,
2264
+ "scalarParams": [],
2265
+ "responseType": "AppIngressListRespVO"
2266
+ },
2267
+ {
2268
+ "scope": "admin",
2269
+ "module": "ingress",
2270
+ "functionName": "updateEntityIngress",
2271
+ "commandPath": [
2272
+ "ingress",
2273
+ "update-entity-ingress"
2274
+ ],
2275
+ "method": "PUT",
2276
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress/:id",
2277
+ "endpointParams": [
2278
+ "app_id",
2279
+ "entity_id",
2280
+ "id"
2281
+ ],
2282
+ "controller": "App.IngressUpdate",
2283
+ "requestType": "AppIngressUpdateReqVO",
2284
+ "scalarParams": [],
2285
+ "responseType": "AppIngressUpdateRespVO"
2286
+ },
2287
+ {
2288
+ "scope": "admin",
2289
+ "module": "ingress",
2290
+ "functionName": "updateEntityIngressBlocks",
2291
+ "commandPath": [
2292
+ "ingress",
2293
+ "update-entity-ingress-blocks"
2294
+ ],
2295
+ "method": "PUT",
2296
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress-blocks/:id",
2297
+ "endpointParams": [
2298
+ "app_id",
2299
+ "entity_id",
2300
+ "id"
2301
+ ],
2302
+ "controller": "App.IngressUpdateBlocks",
2303
+ "requestType": "AppIngressUpdateBlocksReqVO",
2304
+ "scalarParams": [],
2305
+ "responseType": "AppIngressUpdateBlocksRespVO"
2306
+ },
2307
+ {
2308
+ "scope": "admin",
2309
+ "module": "ingress",
2310
+ "functionName": "updateEntityIngressByHashID",
2311
+ "commandPath": [
2312
+ "ingress",
2313
+ "update-entity-ingress-by-hash-id"
2314
+ ],
2315
+ "method": "PUT",
2316
+ "endpoint": "/apps/:app_id/entity/:entity_id/ingress-h/:id",
2317
+ "endpointParams": [
2318
+ "app_id",
2319
+ "entity_id",
2320
+ "id"
2321
+ ],
2322
+ "controller": "App.IngressUpdateByHashID",
2323
+ "requestType": "AppIngressUpdateReqVO",
2324
+ "scalarParams": [],
2325
+ "responseType": "AppIngressUpdateRespVO"
2326
+ },
2327
+ {
2328
+ "scope": "admin",
2329
+ "module": "integration",
2330
+ "functionName": "getIntegrationTemplateCategories",
2331
+ "commandPath": [
2332
+ "integration",
2333
+ "get-integration-template-categories"
2334
+ ],
2335
+ "method": "GET",
2336
+ "endpoint": "/integration/templates-categories/",
2337
+ "endpointParams": [],
2338
+ "controller": "Intergration.GetTemplateCategroies",
2339
+ "requestType": null,
2340
+ "scalarParams": [],
2341
+ "responseType": "IntergrationGetTemplateCategoriesRespVO"
2342
+ },
2343
+ {
2344
+ "scope": "admin",
2345
+ "module": "integration",
2346
+ "functionName": "getIntegrationChalaxyProxy",
2347
+ "commandPath": [
2348
+ "integration",
2349
+ "get-integration-chalaxy-proxy"
2350
+ ],
2351
+ "method": "GET",
2352
+ "endpoint": "/integration/*path",
2353
+ "endpointParams": [],
2354
+ "controller": "Intergration.ChalaxyProxy",
2355
+ "requestType": null,
2356
+ "scalarParams": [
2357
+ {
2358
+ "name": "path",
2359
+ "type": "string",
2360
+ "hasDefault": false
2361
+ }
2362
+ ],
2363
+ "responseType": "IntergrationChalaxyProxyRespVO"
2364
+ },
2365
+ {
2366
+ "scope": "admin",
2367
+ "module": "integration",
2368
+ "functionName": "getIntegrationAllTemplates",
2369
+ "commandPath": [
2370
+ "integration",
2371
+ "get-integration-all-templates"
2372
+ ],
2373
+ "method": "GET",
2374
+ "endpoint": "/integration/templates/",
2375
+ "endpointParams": [],
2376
+ "controller": "Intergration.GetAllTemplates",
2377
+ "requestType": null,
2378
+ "scalarParams": [],
2379
+ "responseType": "IntergrationGetAllTemplatesRespVO"
2380
+ },
2381
+ {
2382
+ "scope": "admin",
2383
+ "module": "integration",
2384
+ "functionName": "getIntegrationTemplate",
2385
+ "commandPath": [
2386
+ "integration",
2387
+ "get-integration-template"
2388
+ ],
2389
+ "method": "GET",
2390
+ "endpoint": "/integration/templates/:id",
2391
+ "endpointParams": [
2392
+ "id"
2393
+ ],
2394
+ "controller": "Intergration.GetTemplate",
2395
+ "requestType": null,
2396
+ "scalarParams": [],
2397
+ "responseType": "IntergrationGetTemplateRespVO"
2398
+ },
2399
+ {
2400
+ "scope": "admin",
2401
+ "module": "integration",
2402
+ "functionName": "getIntegrationConnectors",
2403
+ "commandPath": [
2404
+ "integration",
2405
+ "get-integration-connectors"
2406
+ ],
2407
+ "method": "GET",
2408
+ "endpoint": "/integration/connectors",
2409
+ "endpointParams": [],
2410
+ "controller": "Intergration.ChalaxyProxy",
2411
+ "requestType": null,
2412
+ "scalarParams": [
2413
+ {
2414
+ "name": "params",
2415
+ "type": "{ key?: string }",
2416
+ "hasDefault": true
2417
+ }
2418
+ ],
2419
+ "responseType": "IntergrationGetConnectorsRespVO"
2420
+ },
2421
+ {
2422
+ "scope": "admin",
2423
+ "module": "integration",
2424
+ "functionName": "sendIntegrationConnectorStartAuth",
2425
+ "commandPath": [
2426
+ "integration",
2427
+ "send-integration-connector-start-auth"
2428
+ ],
2429
+ "method": "POST",
2430
+ "endpoint": "/integration/connectors/:id/start-auth",
2431
+ "endpointParams": [
2432
+ "id"
2433
+ ],
2434
+ "controller": "Intergration.ChalaxyProxy",
2435
+ "requestType": "any",
2436
+ "scalarParams": [],
2437
+ "responseType": "IntergrationChalaxyProxyRespVO"
2438
+ },
2439
+ {
2440
+ "scope": "admin",
2441
+ "module": "integration",
2442
+ "functionName": "sendIntegrationConnectorInvokeTrigger",
2443
+ "commandPath": [
2444
+ "integration",
2445
+ "send-integration-connector-invoke-trigger"
2446
+ ],
2447
+ "method": "POST",
2448
+ "endpoint": "/integration/connectors/:id/invoke-trigger/:triggerKey",
2449
+ "endpointParams": [
2450
+ "id",
2451
+ "triggerKey"
2452
+ ],
2453
+ "controller": "Intergration.ChalaxyProxy",
2454
+ "requestType": "any",
2455
+ "scalarParams": [],
2456
+ "responseType": "IntergrationChalaxyProxyRespVO"
2457
+ },
2458
+ {
2459
+ "scope": "admin",
2460
+ "module": "kiosk-flow",
2461
+ "functionName": "cloneKioskFlow",
2462
+ "commandPath": [
2463
+ "kiosk-flow",
2464
+ "clone-kiosk-flow"
2465
+ ],
2466
+ "method": "POST",
2467
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow/:id/clone",
2468
+ "endpointParams": [
2469
+ "app_id",
2470
+ "entity_id",
2471
+ "id"
2472
+ ],
2473
+ "controller": "Entity.KioskFlowClone",
2474
+ "requestType": "any",
2475
+ "scalarParams": [],
2476
+ "responseType": "EntityKioskFlow"
2477
+ },
2478
+ {
2479
+ "scope": "admin",
2480
+ "module": "kiosk-flow",
2481
+ "functionName": "createKioskFlow",
2482
+ "commandPath": [
2483
+ "kiosk-flow",
2484
+ "create-kiosk-flow"
2485
+ ],
2486
+ "method": "POST",
2487
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow",
2488
+ "endpointParams": [
2489
+ "app_id",
2490
+ "entity_id"
2491
+ ],
2492
+ "controller": "Entity.KioskFlowCreate",
2493
+ "requestType": "EntityKioskFlowCreateReqVO",
2494
+ "scalarParams": [],
2495
+ "responseType": "EntityKioskFlow"
2496
+ },
2497
+ {
2498
+ "scope": "admin",
2499
+ "module": "kiosk-flow",
2500
+ "functionName": "deleteKioskFlow",
2501
+ "commandPath": [
2502
+ "kiosk-flow",
2503
+ "delete-kiosk-flow"
2504
+ ],
2505
+ "method": "DELETE",
2506
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow/:id",
2507
+ "endpointParams": [
2508
+ "app_id",
2509
+ "entity_id",
2510
+ "id"
2511
+ ],
2512
+ "controller": "Entity.KioskFlowDelete",
2513
+ "requestType": null,
2514
+ "scalarParams": [],
2515
+ "responseType": "boolean"
2516
+ },
2517
+ {
2518
+ "scope": "admin",
2519
+ "module": "kiosk-flow",
2520
+ "functionName": "getKioskFlow",
2521
+ "commandPath": [
2522
+ "kiosk-flow",
2523
+ "get-kiosk-flow"
2524
+ ],
2525
+ "method": "GET",
2526
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow/:id",
2527
+ "endpointParams": [
2528
+ "app_id",
2529
+ "entity_id",
2530
+ "id"
2531
+ ],
2532
+ "controller": "Entity.KioskFlowGet",
2533
+ "requestType": null,
2534
+ "scalarParams": [],
2535
+ "responseType": "EntityKioskFlow"
2536
+ },
2537
+ {
2538
+ "scope": "admin",
2539
+ "module": "kiosk-flow",
2540
+ "functionName": "getKioskFlowList",
2541
+ "commandPath": [
2542
+ "kiosk-flow",
2543
+ "get-kiosk-flow-list"
2544
+ ],
2545
+ "method": "GET",
2546
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow",
2547
+ "endpointParams": [
2548
+ "app_id",
2549
+ "entity_id"
2550
+ ],
2551
+ "controller": "Entity.KioskFlowList",
2552
+ "requestType": null,
2553
+ "scalarParams": [],
2554
+ "responseType": "EntityKioskFlow[]"
2555
+ },
2556
+ {
2557
+ "scope": "admin",
2558
+ "module": "kiosk-flow",
2559
+ "functionName": "updateKioskFlow",
2560
+ "commandPath": [
2561
+ "kiosk-flow",
2562
+ "update-kiosk-flow"
2563
+ ],
2564
+ "method": "PUT",
2565
+ "endpoint": "/apps/:app_id/entity/:entity_id/kiosk-flow/:id",
2566
+ "endpointParams": [
2567
+ "app_id",
2568
+ "entity_id",
2569
+ "id"
2570
+ ],
2571
+ "controller": "Entity.KioskFlowUpdate",
2572
+ "requestType": "EntityKioskFlowUpdateReqVO",
2573
+ "scalarParams": [],
2574
+ "responseType": "EntityKioskFlow"
2575
+ },
2576
+ {
2577
+ "scope": "admin",
2578
+ "module": "print-template-background",
2579
+ "functionName": "uploadPrintTemplateBackground",
2580
+ "commandPath": [
2581
+ "print-template-background",
2582
+ "upload-print-template-background"
2583
+ ],
2584
+ "method": "POST",
2585
+ "endpoint": "/api/apps/:app_id/entity/:entity_id/print-templates/:template_id/background",
2586
+ "endpointParams": [
2587
+ "app_id",
2588
+ "entity_id",
2589
+ "template_id"
2590
+ ],
2591
+ "controller": "Entity.PrintTemplateBackgroundUpload",
2592
+ "requestType": "PrintTemplateBackgroundUploadReqVO",
2593
+ "scalarParams": [],
2594
+ "responseType": "PrintTemplateBackgroundUploadRespVO"
2595
+ },
2596
+ {
2597
+ "scope": "admin",
2598
+ "module": "print-template-background",
2599
+ "functionName": "deletePrintTemplateBackground",
2600
+ "commandPath": [
2601
+ "print-template-background",
2602
+ "delete-print-template-background"
2603
+ ],
2604
+ "method": "DELETE",
2605
+ "endpoint": "/api/apps/:app_id/entity/:entity_id/print-templates/:template_id/background",
2606
+ "endpointParams": [
2607
+ "app_id",
2608
+ "entity_id",
2609
+ "template_id"
2610
+ ],
2611
+ "controller": "Entity.PrintTemplateBackgroundDelete",
2612
+ "requestType": null,
2613
+ "scalarParams": [],
2614
+ "responseType": "PrintTemplateBackgroundDeleteRespVO"
2615
+ },
2616
+ {
2617
+ "scope": "admin",
2618
+ "module": "print-templates",
2619
+ "functionName": "createEntityPrintTemplate",
2620
+ "commandPath": [
2621
+ "print-templates",
2622
+ "create-entity-print-template"
2623
+ ],
2624
+ "method": "POST",
2625
+ "endpoint": "/apps/:app_id/entity/:entity_id/print-templates",
2626
+ "endpointParams": [
2627
+ "app_id",
2628
+ "entity_id"
2629
+ ],
2630
+ "controller": "Entity.PrintTemplatesCreate",
2631
+ "requestType": "EntityPrintTemplatesCreateReqVO",
2632
+ "scalarParams": [],
2633
+ "responseType": "EntityPrintTemplatesCreateRespVO"
2634
+ },
2635
+ {
2636
+ "scope": "admin",
2637
+ "module": "print-templates",
2638
+ "functionName": "deleteEntityPrintTemplate",
2639
+ "commandPath": [
2640
+ "print-templates",
2641
+ "delete-entity-print-template"
2642
+ ],
2643
+ "method": "DELETE",
2644
+ "endpoint": "/apps/:app_id/entity/:entity_id/print-templates/:id",
2645
+ "endpointParams": [
2646
+ "app_id",
2647
+ "entity_id",
2648
+ "id"
2649
+ ],
2650
+ "controller": "Entity.PrintTemplatesDelete",
2651
+ "requestType": null,
2652
+ "scalarParams": [],
2653
+ "responseType": "EntityPrintTemplatesDeleteRespVO"
2654
+ },
2655
+ {
2656
+ "scope": "admin",
2657
+ "module": "print-templates",
2658
+ "functionName": "getEntityPrintTemplate",
2659
+ "commandPath": [
2660
+ "print-templates",
2661
+ "get-entity-print-template"
2662
+ ],
2663
+ "method": "GET",
2664
+ "endpoint": "/apps/:app_id/entity/:entity_id/print-templates/:id",
2665
+ "endpointParams": [
2666
+ "app_id",
2667
+ "entity_id",
2668
+ "id"
2669
+ ],
2670
+ "controller": "Entity.PrintTemplatesGet",
2671
+ "requestType": null,
2672
+ "scalarParams": [],
2673
+ "responseType": "EntityPrintTemplatesGetRespVO"
2674
+ },
2675
+ {
2676
+ "scope": "admin",
2677
+ "module": "print-templates",
2678
+ "functionName": "getEntityPrintTemplateList",
2679
+ "commandPath": [
2680
+ "print-templates",
2681
+ "get-entity-print-template-list"
2682
+ ],
2683
+ "method": "GET",
2684
+ "endpoint": "/apps/:app_id/entity/:entity_id/print-templates",
2685
+ "endpointParams": [
2686
+ "app_id",
2687
+ "entity_id"
2688
+ ],
2689
+ "controller": "Entity.PrintTemplatesList",
2690
+ "requestType": null,
2691
+ "scalarParams": [],
2692
+ "responseType": "EntityPrintTemplatesListRespVO"
2693
+ },
2694
+ {
2695
+ "scope": "admin",
2696
+ "module": "print-templates",
2697
+ "functionName": "updateEntityPrintTemplate",
2698
+ "commandPath": [
2699
+ "print-templates",
2700
+ "update-entity-print-template"
2701
+ ],
2702
+ "method": "PUT",
2703
+ "endpoint": "/apps/:app_id/entity/:entity_id/print-templates/:id",
2704
+ "endpointParams": [
2705
+ "app_id",
2706
+ "entity_id",
2707
+ "id"
2708
+ ],
2709
+ "controller": "Entity.PrintTemplatesUpdate",
2710
+ "requestType": "EntityPrintTemplatesUpdateReqVO",
2711
+ "scalarParams": [],
2712
+ "responseType": "EntityPrintTemplatesUpdateRespVO"
2713
+ },
2714
+ {
2715
+ "scope": "admin",
2716
+ "module": "tenant",
2717
+ "functionName": "getTenantConfig",
2718
+ "commandPath": [
2719
+ "tenant",
2720
+ "get-tenant-config"
2721
+ ],
2722
+ "method": "POST",
2723
+ "endpoint": "/tenants/config/get",
2724
+ "endpointParams": [],
2725
+ "controller": "Tenant.ConfigGet",
2726
+ "requestType": "TenantConfigGetReqVO",
2727
+ "scalarParams": [],
2728
+ "responseType": "TenantConfigGetRespVO"
2729
+ },
2730
+ {
2731
+ "scope": "admin",
2732
+ "module": "tenant",
2733
+ "functionName": "updateTenantConfig",
2734
+ "commandPath": [
2735
+ "tenant",
2736
+ "update-tenant-config"
2737
+ ],
2738
+ "method": "PUT",
2739
+ "endpoint": "/tenants/config/update",
2740
+ "endpointParams": [],
2741
+ "controller": "Tenant.ConfigUpdate",
2742
+ "requestType": "TenantConfigUpdateReqVO",
2743
+ "scalarParams": [],
2744
+ "responseType": "TenantConfigUpdateRespVO"
2745
+ },
2746
+ {
2747
+ "scope": "admin",
2748
+ "module": "tenant",
2749
+ "functionName": "updateTenantConfigAuth",
2750
+ "commandPath": [
2751
+ "tenant",
2752
+ "update-tenant-config-auth"
2753
+ ],
2754
+ "method": "PUT",
2755
+ "endpoint": "/tenants/config/update-auth",
2756
+ "endpointParams": [],
2757
+ "controller": "Tenant.ConfigUpdateAuth",
2758
+ "requestType": "TenantConfigUpdateAuthReqVO",
2759
+ "scalarParams": [],
2760
+ "responseType": "TenantConfigUpdateAuthRespVO"
2761
+ },
2762
+ {
2763
+ "scope": "admin",
2764
+ "module": "tenant",
2765
+ "functionName": "updateTenantConfigAuthBgImage",
2766
+ "commandPath": [
2767
+ "tenant",
2768
+ "update-tenant-config-auth-bg-image"
2769
+ ],
2770
+ "method": "PUT",
2771
+ "endpoint": "/tenants/config/update-auth-bgimage",
2772
+ "endpointParams": [],
2773
+ "controller": "Tenant.ConfigUpdateAuthBgImage",
2774
+ "requestType": "TenantConfigUpdateAuthBgImageReqVO",
2775
+ "scalarParams": [],
2776
+ "responseType": "TenantConfigUpdateAuthBgImageRespVO"
2777
+ },
2778
+ {
2779
+ "scope": "admin",
2780
+ "module": "tenant",
2781
+ "functionName": "updateTenantConfigEmail",
2782
+ "commandPath": [
2783
+ "tenant",
2784
+ "update-tenant-config-email"
2785
+ ],
2786
+ "method": "PUT",
2787
+ "endpoint": "/tenants/config/update-mail",
2788
+ "endpointParams": [],
2789
+ "controller": "Tenant.ConfigUpdateEmail",
2790
+ "requestType": "TenantConfigUpdateEmailReqVO",
2791
+ "scalarParams": [],
2792
+ "responseType": "TenantConfigUpdateEmailRespVO"
2793
+ },
2794
+ {
2795
+ "scope": "admin",
2796
+ "module": "tenant",
2797
+ "functionName": "updateTenantConfigIcon",
2798
+ "commandPath": [
2799
+ "tenant",
2800
+ "update-tenant-config-icon"
2801
+ ],
2802
+ "method": "PUT",
2803
+ "endpoint": "/tenants/config/update-icon",
2804
+ "endpointParams": [],
2805
+ "controller": "Tenant.ConfigUpdateIcon",
2806
+ "requestType": "TenantConfigUpdateIconReqVO",
2807
+ "scalarParams": [],
2808
+ "responseType": "TenantConfigUpdateIconRespVO"
2809
+ },
2810
+ {
2811
+ "scope": "admin",
2812
+ "module": "tenant",
2813
+ "functionName": "updateTenantConfigLogo",
2814
+ "commandPath": [
2815
+ "tenant",
2816
+ "update-tenant-config-logo"
2817
+ ],
2818
+ "method": "PUT",
2819
+ "endpoint": "/tenants/config/update-logo",
2820
+ "endpointParams": [],
2821
+ "controller": "Tenant.ConfigUpdateLogo",
2822
+ "requestType": "TenantConfigUpdateLogoReqVO",
2823
+ "scalarParams": [],
2824
+ "responseType": "TenantConfigUpdateLogoRespVO"
2825
+ },
2826
+ {
2827
+ "scope": "admin",
2828
+ "module": "tenant",
2829
+ "functionName": "updateTenantConfigMeta",
2830
+ "commandPath": [
2831
+ "tenant",
2832
+ "update-tenant-config-meta"
2833
+ ],
2834
+ "method": "PUT",
2835
+ "endpoint": "/tenants/config/update-usermeta",
2836
+ "endpointParams": [],
2837
+ "controller": "Tenant.ConfigUpdateMeta",
2838
+ "requestType": "TenantConfigUpdateMetaReqVO",
2839
+ "scalarParams": [],
2840
+ "responseType": "TenantConfigUpdateMetaRespVO"
2841
+ },
2842
+ {
2843
+ "scope": "admin",
2844
+ "module": "tenant",
2845
+ "functionName": "updateTenantConfigName",
2846
+ "commandPath": [
2847
+ "tenant",
2848
+ "update-tenant-config-name"
2849
+ ],
2850
+ "method": "PUT",
2851
+ "endpoint": "/tenants/config/update-name",
2852
+ "endpointParams": [],
2853
+ "controller": "Tenant.ConfigUpdateName",
2854
+ "requestType": "TenantConfigUpdateNameReqVO",
2855
+ "scalarParams": [],
2856
+ "responseType": "TenantConfigUpdateNameRespVO"
2857
+ },
2858
+ {
2859
+ "scope": "admin",
2860
+ "module": "tenant",
2861
+ "functionName": "createTenantCustomDomain",
2862
+ "commandPath": [
2863
+ "tenant",
2864
+ "create-tenant-custom-domain"
2865
+ ],
2866
+ "method": "POST",
2867
+ "endpoint": "/admin/custom_domain",
2868
+ "endpointParams": [],
2869
+ "controller": "Tenant.CreateCustomDomain",
2870
+ "requestType": "TenantCreateCustomDomainReqVO",
2871
+ "scalarParams": [],
2872
+ "responseType": "TenantCreateCustomDomainRespVO"
2873
+ },
2874
+ {
2875
+ "scope": "admin",
2876
+ "module": "tenant",
2877
+ "functionName": "getTenant",
2878
+ "commandPath": [
2879
+ "tenant",
2880
+ "get-tenant"
2881
+ ],
2882
+ "method": "GET",
2883
+ "endpoint": "/tenants",
2884
+ "endpointParams": [],
2885
+ "controller": "Tenant.Get",
2886
+ "requestType": null,
2887
+ "scalarParams": [],
2888
+ "responseType": "TenantGetRespVO"
2889
+ },
2890
+ {
2891
+ "scope": "admin",
2892
+ "module": "tenant",
2893
+ "functionName": "getTenantApiService",
2894
+ "commandPath": [
2895
+ "tenant",
2896
+ "get-tenant-api-service"
2897
+ ],
2898
+ "method": "GET",
2899
+ "endpoint": "/api-service/:api_service_id",
2900
+ "endpointParams": [
2901
+ "api_service_id"
2902
+ ],
2903
+ "controller": "Tenant.GetApiService",
2904
+ "requestType": null,
2905
+ "scalarParams": [],
2906
+ "responseType": "TenantGetApiServiceRespVO"
2907
+ },
2908
+ {
2909
+ "scope": "admin",
2910
+ "module": "tenant",
2911
+ "functionName": "getTenantApiServiceList",
2912
+ "commandPath": [
2913
+ "tenant",
2914
+ "get-tenant-api-service-list"
2915
+ ],
2916
+ "method": "GET",
2917
+ "endpoint": "/api-service/",
2918
+ "endpointParams": [],
2919
+ "controller": "Tenant.GetApiServiceList",
2920
+ "requestType": null,
2921
+ "scalarParams": [],
2922
+ "responseType": "TenantGetApiServiceListRespVO"
2923
+ },
2924
+ {
2925
+ "scope": "admin",
2926
+ "module": "tenant",
2927
+ "functionName": "getTenantCustomDomain",
2928
+ "commandPath": [
2929
+ "tenant",
2930
+ "get-tenant-custom-domain"
2931
+ ],
2932
+ "method": "GET",
2933
+ "endpoint": "/admin/custom_domain",
2934
+ "endpointParams": [],
2935
+ "controller": "Tenant.GetCustomDomain",
2936
+ "requestType": null,
2937
+ "scalarParams": [],
2938
+ "responseType": "TenantGetCustomDomainRespVO"
2939
+ },
2940
+ {
2941
+ "scope": "admin",
2942
+ "module": "tenant",
2943
+ "functionName": "getTenantKioskFlowListAll",
2944
+ "commandPath": [
2945
+ "tenant",
2946
+ "get-tenant-kiosk-flow-list-all"
2947
+ ],
2948
+ "method": "GET",
2949
+ "endpoint": "/kiosk-flows/list",
2950
+ "endpointParams": [],
2951
+ "controller": "Tenant.KioskFlowListAll",
2952
+ "requestType": null,
2953
+ "scalarParams": [],
2954
+ "responseType": "TenantKioskFlowListAllRespVO"
2955
+ },
2956
+ {
2957
+ "scope": "admin",
2958
+ "module": "tenant",
2959
+ "functionName": "createTenantKioskGroup",
2960
+ "commandPath": [
2961
+ "tenant",
2962
+ "create-tenant-kiosk-group"
2963
+ ],
2964
+ "method": "POST",
2965
+ "endpoint": "/kiosk-group",
2966
+ "endpointParams": [],
2967
+ "controller": "Tenant.KioskGroupCreate",
2968
+ "requestType": "TenantKioskGroupCreateReqVO",
2969
+ "scalarParams": [],
2970
+ "responseType": "TenantKioskGroupCreateRespVO"
2971
+ },
2972
+ {
2973
+ "scope": "admin",
2974
+ "module": "tenant",
2975
+ "functionName": "deleteTenantKioskGroup",
2976
+ "commandPath": [
2977
+ "tenant",
2978
+ "delete-tenant-kiosk-group"
2979
+ ],
2980
+ "method": "DELETE",
2981
+ "endpoint": "/kiosk-group/:id",
2982
+ "endpointParams": [
2983
+ "id"
2984
+ ],
2985
+ "controller": "Tenant.KioskGroupDelete",
2986
+ "requestType": null,
2987
+ "scalarParams": [],
2988
+ "responseType": "TenantKioskGroupDeleteRespVO"
2989
+ },
2990
+ {
2991
+ "scope": "admin",
2992
+ "module": "tenant",
2993
+ "functionName": "getTenantKioskGroup",
2994
+ "commandPath": [
2995
+ "tenant",
2996
+ "get-tenant-kiosk-group"
2997
+ ],
2998
+ "method": "GET",
2999
+ "endpoint": "/kiosk-group/:id",
3000
+ "endpointParams": [
3001
+ "id"
3002
+ ],
3003
+ "controller": "Tenant.KioskGroupGet",
3004
+ "requestType": null,
3005
+ "scalarParams": [],
3006
+ "responseType": "TenantKioskGroupGetRespVO"
3007
+ },
3008
+ {
3009
+ "scope": "admin",
3010
+ "module": "tenant",
3011
+ "functionName": "queryTenantKioskGroup",
3012
+ "commandPath": [
3013
+ "tenant",
3014
+ "query-tenant-kiosk-group"
3015
+ ],
3016
+ "method": "GET",
3017
+ "endpoint": "/kiosk-group",
3018
+ "endpointParams": [],
3019
+ "controller": "Tenant.KioskGroupQuery",
3020
+ "requestType": "TenantKioskGroupQueryReqVO",
3021
+ "scalarParams": [],
3022
+ "responseType": "TenantKioskGroupQueryRespVO"
3023
+ },
3024
+ {
3025
+ "scope": "admin",
3026
+ "module": "tenant",
3027
+ "functionName": "updateTenantKioskGroup",
3028
+ "commandPath": [
3029
+ "tenant",
3030
+ "update-tenant-kiosk-group"
3031
+ ],
3032
+ "method": "PUT",
3033
+ "endpoint": "/kiosk-group/:id",
3034
+ "endpointParams": [
3035
+ "id"
3036
+ ],
3037
+ "controller": "Tenant.KioskGroupUpdate",
3038
+ "requestType": "TenantKioskGroupUpdateReqVO",
3039
+ "scalarParams": [],
3040
+ "responseType": "TenantKioskGroupUpdateRespVO"
3041
+ },
3042
+ {
3043
+ "scope": "admin",
3044
+ "module": "tenant",
3045
+ "functionName": "getTenantSystemMap",
3046
+ "commandPath": [
3047
+ "tenant",
3048
+ "get-tenant-system-map"
3049
+ ],
3050
+ "method": "GET",
3051
+ "endpoint": "/system-map",
3052
+ "endpointParams": [],
3053
+ "controller": "Tenant.SystemMap",
3054
+ "requestType": null,
3055
+ "scalarParams": [],
3056
+ "responseType": "TenantSystemMapRespVO"
3057
+ },
3058
+ {
3059
+ "scope": "admin",
3060
+ "module": "tenant",
3061
+ "functionName": "verifyTenantCustomDomainOwner",
3062
+ "commandPath": [
3063
+ "tenant",
3064
+ "verify-tenant-custom-domain-owner"
3065
+ ],
3066
+ "method": "POST",
3067
+ "endpoint": "/admin/custom_domain/verify_owner",
3068
+ "endpointParams": [],
3069
+ "controller": "Tenant.VerifyCustomDomainOwner",
3070
+ "requestType": "TenantVerifyCustomDomainOwnerReqVO",
3071
+ "scalarParams": [],
3072
+ "responseType": "TenantVerifyCustomDomainOwnerRespVO"
3073
+ },
3074
+ {
3075
+ "scope": "admin",
3076
+ "module": "tenant",
3077
+ "functionName": "getTenantUsageSnapshot",
3078
+ "commandPath": [
3079
+ "tenant",
3080
+ "get-tenant-usage-snapshot"
3081
+ ],
3082
+ "method": "GET",
3083
+ "endpoint": "/tenant/usage/snapshot",
3084
+ "endpointParams": [],
3085
+ "controller": "Tenant.GetUsageSnapshot",
3086
+ "requestType": null,
3087
+ "scalarParams": [],
3088
+ "responseType": "TenantUsageSnapshotRespVO"
3089
+ },
3090
+ {
3091
+ "scope": "admin",
3092
+ "module": "tenant",
3093
+ "functionName": "getTenantUsageDaily",
3094
+ "commandPath": [
3095
+ "tenant",
3096
+ "get-tenant-usage-daily"
3097
+ ],
3098
+ "method": "GET",
3099
+ "endpoint": "/tenant/usage/daily",
3100
+ "endpointParams": [],
3101
+ "controller": "Tenant.GetUsageDaily",
3102
+ "requestType": null,
3103
+ "scalarParams": [
3104
+ {
3105
+ "name": "days",
3106
+ "type": "number",
3107
+ "hasDefault": true
3108
+ }
3109
+ ],
3110
+ "responseType": "TenantUsageDailyRespVO"
3111
+ },
3112
+ {
3113
+ "scope": "admin",
3114
+ "module": "workflow",
3115
+ "functionName": "deployEntityWorkflow",
3116
+ "commandPath": [
3117
+ "workflow",
3118
+ "deploy-entity-workflow"
3119
+ ],
3120
+ "method": "POST",
3121
+ "endpoint": "/apps/:app_id/entity/:entity_id/workflow/deploy",
3122
+ "endpointParams": [
3123
+ "app_id",
3124
+ "entity_id"
3125
+ ],
3126
+ "controller": "Entity.WorkflowDeploy",
3127
+ "requestType": "EntityWorkflowDeployReqVO",
3128
+ "scalarParams": [],
3129
+ "responseType": "EntityWorkflowDeployRespVO"
3130
+ },
3131
+ {
3132
+ "scope": "admin",
3133
+ "module": "workflow",
3134
+ "functionName": "getEntityWorkflow",
3135
+ "commandPath": [
3136
+ "workflow",
3137
+ "get-entity-workflow"
3138
+ ],
3139
+ "method": "GET",
3140
+ "endpoint": "/apps/:app_id/entity/:entity_id/workflow",
3141
+ "endpointParams": [
3142
+ "app_id",
3143
+ "entity_id"
3144
+ ],
3145
+ "controller": "Entity.WorkflowGet",
3146
+ "requestType": null,
3147
+ "scalarParams": [
3148
+ {
3149
+ "name": "workingId",
3150
+ "type": "string",
3151
+ "hasDefault": true
3152
+ }
3153
+ ],
3154
+ "responseType": "EntityWorkflowGetRespVO"
3155
+ },
3156
+ {
3157
+ "scope": "admin",
3158
+ "module": "workflow",
3159
+ "functionName": "createEntityWorkflowVersion",
3160
+ "commandPath": [
3161
+ "workflow",
3162
+ "create-entity-workflow-version"
3163
+ ],
3164
+ "method": "POST",
3165
+ "endpoint": "/apps/:app_id/entity/:entity_id/workflow/new",
3166
+ "endpointParams": [
3167
+ "app_id",
3168
+ "entity_id"
3169
+ ],
3170
+ "controller": "Entity.WorkflowNewVersion",
3171
+ "requestType": null,
3172
+ "scalarParams": [],
3173
+ "responseType": "EntityWorkflowNewVersionRespVO"
3174
+ },
3175
+ {
3176
+ "scope": "admin",
3177
+ "module": "workflow",
3178
+ "functionName": "updateEntityWorkflow",
3179
+ "commandPath": [
3180
+ "workflow",
3181
+ "update-entity-workflow"
3182
+ ],
3183
+ "method": "POST",
3184
+ "endpoint": "/apps/:app_id/entity/:entity_id/workflow",
3185
+ "endpointParams": [
3186
+ "app_id",
3187
+ "entity_id"
3188
+ ],
3189
+ "controller": "Entity.WorkflowUpdate",
3190
+ "requestType": "EntityWorkflowUpdateReqVO",
3191
+ "scalarParams": [],
3192
+ "responseType": "EntityWorkflowUpdateRespVO"
3193
+ }
3194
+ ] as const
3195
+
3196
+ export const userCommands = [
3197
+ {
3198
+ "scope": "user",
3199
+ "module": "common",
3200
+ "functionName": "getAppDetail",
3201
+ "commandPath": [
3202
+ "common",
3203
+ "get-app-detail"
3204
+ ],
3205
+ "method": "GET",
3206
+ "endpoint": "/apps/:id",
3207
+ "endpointParams": [
3208
+ "id"
3209
+ ],
3210
+ "controller": "UserAction.AppDetail",
3211
+ "requestType": null,
3212
+ "scalarParams": [],
3213
+ "responseType": "AppDetailRespVO"
3214
+ },
3215
+ {
3216
+ "scope": "user",
3217
+ "module": "common",
3218
+ "functionName": "getDataset",
3219
+ "commandPath": [
3220
+ "common",
3221
+ "get-dataset"
3222
+ ],
3223
+ "method": "GET",
3224
+ "endpoint": "/dataset/:id/:node_id",
3225
+ "endpointParams": [
3226
+ "id",
3227
+ "node_id"
3228
+ ],
3229
+ "controller": "UserAction.GetDataset",
3230
+ "requestType": null,
3231
+ "scalarParams": [],
3232
+ "responseType": "DatasetRow[]"
3233
+ },
3234
+ {
3235
+ "scope": "user",
3236
+ "module": "common",
3237
+ "functionName": "getOrganizationTree",
3238
+ "commandPath": [
3239
+ "common",
3240
+ "get-organization-tree"
3241
+ ],
3242
+ "method": "POST",
3243
+ "endpoint": "/organization/departments/tree",
3244
+ "endpointParams": [],
3245
+ "controller": "UserAction.GetOrganizationTree",
3246
+ "requestType": "GetOrganizationTreeReqVO",
3247
+ "scalarParams": [],
3248
+ "responseType": "GetOrganizationTreeRespVO"
3249
+ },
3250
+ {
3251
+ "scope": "user",
3252
+ "module": "common",
3253
+ "functionName": "getOrganizationUsers",
3254
+ "commandPath": [
3255
+ "common",
3256
+ "get-organization-users"
3257
+ ],
3258
+ "method": "POST",
3259
+ "endpoint": "/organization/users",
3260
+ "endpointParams": [],
3261
+ "controller": "UserAction.GetOrganizationUsers",
3262
+ "requestType": "GetOrganizationUsersReqVO",
3263
+ "scalarParams": [],
3264
+ "responseType": "GetOrganizationUsersRespVO"
3265
+ },
3266
+ {
3267
+ "scope": "user",
3268
+ "module": "common",
3269
+ "functionName": "getUploadToken",
3270
+ "commandPath": [
3271
+ "common",
3272
+ "get-upload-token"
3273
+ ],
3274
+ "method": "POST",
3275
+ "endpoint": "/upload/token",
3276
+ "endpointParams": [],
3277
+ "controller": "UserAction.GetUploadToken",
3278
+ "requestType": "GetUploadTokenReqVO",
3279
+ "scalarParams": [],
3280
+ "responseType": "GetUploadTokenRespVO"
3281
+ },
3282
+ {
3283
+ "scope": "user",
3284
+ "module": "common",
3285
+ "functionName": "getIngress",
3286
+ "commandPath": [
3287
+ "common",
3288
+ "get-ingress"
3289
+ ],
3290
+ "method": "GET",
3291
+ "endpoint": "/ingress/:app_id/:ingress_id",
3292
+ "endpointParams": [
3293
+ "app_id",
3294
+ "ingress_id"
3295
+ ],
3296
+ "controller": "UserAction.Ingress",
3297
+ "requestType": null,
3298
+ "scalarParams": [],
3299
+ "responseType": "IngressRespVO"
3300
+ },
3301
+ {
3302
+ "scope": "user",
3303
+ "module": "common",
3304
+ "functionName": "setIngressOptionsTabber",
3305
+ "commandPath": [
3306
+ "common",
3307
+ "set-ingress-options-tabber"
3308
+ ],
3309
+ "method": "PUT",
3310
+ "endpoint": "/ingress/:app_id/:ingress_id/options-tabber",
3311
+ "endpointParams": [
3312
+ "app_id",
3313
+ "ingress_id"
3314
+ ],
3315
+ "controller": "UserAction.IngressSetOptionsTabber",
3316
+ "requestType": "IngressSetOptionsTabberReqVO",
3317
+ "scalarParams": [],
3318
+ "responseType": "IngressSetOptionsTabberRespVO"
3319
+ },
3320
+ {
3321
+ "scope": "user",
3322
+ "module": "common",
3323
+ "functionName": "mobileUpload",
3324
+ "commandPath": [
3325
+ "common",
3326
+ "mobile-upload"
3327
+ ],
3328
+ "method": "POST",
3329
+ "endpoint": "/upload/mobile-upload",
3330
+ "endpointParams": [],
3331
+ "controller": "UserAction.MobileUpload",
3332
+ "requestType": "MobileUploadReqVO",
3333
+ "scalarParams": [],
3334
+ "responseType": "MobileUploadRespVO"
3335
+ },
3336
+ {
3337
+ "scope": "user",
3338
+ "module": "common",
3339
+ "functionName": "checkMobileUpload",
3340
+ "commandPath": [
3341
+ "common",
3342
+ "check-mobile-upload"
3343
+ ],
3344
+ "method": "POST",
3345
+ "endpoint": "/upload/mobile-upload/check",
3346
+ "endpointParams": [],
3347
+ "controller": "UserAction.MobileUploadCheck",
3348
+ "requestType": "MobileUploadCheckReqVO",
3349
+ "scalarParams": [],
3350
+ "responseType": "MobileUploadCheckRespVO"
3351
+ },
3352
+ {
3353
+ "scope": "user",
3354
+ "module": "common",
3355
+ "functionName": "uploadPreview",
3356
+ "commandPath": [
3357
+ "common",
3358
+ "upload-preview"
3359
+ ],
3360
+ "method": "POST",
3361
+ "endpoint": "/upload/preview",
3362
+ "endpointParams": [],
3363
+ "controller": "UserAction.UploadPreview",
3364
+ "requestType": "UploadPreviewReqVO",
3365
+ "scalarParams": [],
3366
+ "responseType": "UploadPreviewRespVO"
3367
+ },
3368
+ {
3369
+ "scope": "user",
3370
+ "module": "common",
3371
+ "functionName": "validateEntityUnique",
3372
+ "commandPath": [
3373
+ "common",
3374
+ "validate-entity-unique"
3375
+ ],
3376
+ "method": "POST",
3377
+ "endpoint": "/entity/:app_id/:entity_id/validate-uniq",
3378
+ "endpointParams": [
3379
+ "app_id",
3380
+ "entity_id"
3381
+ ],
3382
+ "controller": "UserAction.EntityValidateUniq",
3383
+ "requestType": "EntityValidateUniqReqVO",
3384
+ "scalarParams": [],
3385
+ "responseType": "EntityValidateUniqRespVO"
3386
+ },
3387
+ {
3388
+ "scope": "user",
3389
+ "module": "common",
3390
+ "functionName": "queryEntityRelation",
3391
+ "commandPath": [
3392
+ "common",
3393
+ "query-entity-relation"
3394
+ ],
3395
+ "method": "POST",
3396
+ "endpoint": "/entity/:app_id/:entity_id/query-rel",
3397
+ "endpointParams": [
3398
+ "app_id",
3399
+ "entity_id"
3400
+ ],
3401
+ "controller": "UserAction.EntityQueryRelation",
3402
+ "requestType": "EntityQueryRelationReqVO",
3403
+ "scalarParams": [],
3404
+ "responseType": "EntityQueryRelationRespVO"
3405
+ },
3406
+ {
3407
+ "scope": "user",
3408
+ "module": "common",
3409
+ "functionName": "queryLinktoPickOptions",
3410
+ "commandPath": [
3411
+ "common",
3412
+ "query-linkto-pick-options"
3413
+ ],
3414
+ "method": "POST",
3415
+ "endpoint": "/entity/:app_id/:entity_id/query-linkto-pick",
3416
+ "endpointParams": [
3417
+ "app_id",
3418
+ "entity_id"
3419
+ ],
3420
+ "controller": "UserAction.EntityQueryLinkToPick",
3421
+ "requestType": "EntityQueryRelationReqVO",
3422
+ "scalarParams": [],
3423
+ "responseType": "EntityQueryRelationRespVO"
3424
+ },
3425
+ {
3426
+ "scope": "user",
3427
+ "module": "common",
3428
+ "functionName": "queryLinktoValues",
3429
+ "commandPath": [
3430
+ "common",
3431
+ "query-linkto-values"
3432
+ ],
3433
+ "method": "POST",
3434
+ "endpoint": "/entity/:app_id/:entity_id/query-linkto-values",
3435
+ "endpointParams": [
3436
+ "app_id",
3437
+ "entity_id"
3438
+ ],
3439
+ "controller": "UserAction.EntityQueryLinkToValues",
3440
+ "requestType": "EntityQueryLinkToValuesReqVO",
3441
+ "scalarParams": [],
3442
+ "responseType": "EntityQueryRelationRespVO"
3443
+ },
3444
+ {
3445
+ "scope": "user",
3446
+ "module": "common",
3447
+ "functionName": "getSubformRelationData",
3448
+ "commandPath": [
3449
+ "common",
3450
+ "get-subform-relation-data"
3451
+ ],
3452
+ "method": "POST",
3453
+ "endpoint": "/entity/:app_id/:entity_id/query-subform-rel",
3454
+ "endpointParams": [
3455
+ "app_id",
3456
+ "entity_id"
3457
+ ],
3458
+ "controller": "UserAction.EntityQuerySubformRelation",
3459
+ "requestType": null,
3460
+ "scalarParams": [
3461
+ {
3462
+ "name": "options",
3463
+ "type": "any",
3464
+ "hasDefault": false
3465
+ }
3466
+ ],
3467
+ "responseType": "any"
3468
+ },
3469
+ {
3470
+ "scope": "user",
3471
+ "module": "context",
3472
+ "functionName": "getContextUserToken",
3473
+ "commandPath": [
3474
+ "context",
3475
+ "get-context-user-token"
3476
+ ],
3477
+ "method": "POST",
3478
+ "endpoint": "/api/context/user-token",
3479
+ "endpointParams": [],
3480
+ "controller": "BusinessHooks.GetContextUserToken",
3481
+ "requestType": null,
3482
+ "scalarParams": [],
3483
+ "responseType": "FetchUserTokenRespVO"
3484
+ },
3485
+ {
3486
+ "scope": "user",
3487
+ "module": "copilot",
3488
+ "functionName": "initCopilotConversation",
3489
+ "commandPath": [
3490
+ "copilot",
3491
+ "init-copilot-conversation"
3492
+ ],
3493
+ "method": "POST",
3494
+ "endpoint": "/copilot/init",
3495
+ "endpointParams": [],
3496
+ "controller": "CopilotController.InitConversation",
3497
+ "requestType": null,
3498
+ "scalarParams": [],
3499
+ "responseType": "CopilotInitConversationRespVO"
3500
+ },
3501
+ {
3502
+ "scope": "user",
3503
+ "module": "copilot",
3504
+ "functionName": "sendCopilotMessage",
3505
+ "commandPath": [
3506
+ "copilot",
3507
+ "send-copilot-message"
3508
+ ],
3509
+ "method": "POST",
3510
+ "endpoint": "/copilot/send-message",
3511
+ "endpointParams": [],
3512
+ "controller": "CopilotController.SendMessage",
3513
+ "requestType": "CopilotSendMessageReqVO",
3514
+ "scalarParams": [],
3515
+ "responseType": "CopilotSendMessageRespVO"
3516
+ },
3517
+ {
3518
+ "scope": "user",
3519
+ "module": "dashboard",
3520
+ "functionName": "getDashboard",
3521
+ "commandPath": [
3522
+ "dashboard",
3523
+ "get-dashboard"
3524
+ ],
3525
+ "method": "GET",
3526
+ "endpoint": "/dashboard/:app_id/:dashboard_id",
3527
+ "endpointParams": [
3528
+ "app_id",
3529
+ "dashboard_id"
3530
+ ],
3531
+ "controller": "UserAction.DashboardGet",
3532
+ "requestType": null,
3533
+ "scalarParams": [],
3534
+ "responseType": "DashboardGetRespVO"
3535
+ },
3536
+ {
3537
+ "scope": "user",
3538
+ "module": "dashboard",
3539
+ "functionName": "getDashboardWidgets",
3540
+ "commandPath": [
3541
+ "dashboard",
3542
+ "get-dashboard-widgets"
3543
+ ],
3544
+ "method": "GET",
3545
+ "endpoint": "/dashboard/:app_id/:dashboard_id/widgets",
3546
+ "endpointParams": [
3547
+ "app_id",
3548
+ "dashboard_id"
3549
+ ],
3550
+ "controller": "UserAction.DashboardWidgets",
3551
+ "requestType": null,
3552
+ "scalarParams": [],
3553
+ "responseType": "DashboardWidgets[]"
3554
+ },
3555
+ {
3556
+ "scope": "user",
3557
+ "module": "dashboard",
3558
+ "functionName": "getExportTask",
3559
+ "commandPath": [
3560
+ "dashboard",
3561
+ "get-export-task"
3562
+ ],
3563
+ "method": "GET",
3564
+ "endpoint": "/export-task/:id",
3565
+ "endpointParams": [
3566
+ "id"
3567
+ ],
3568
+ "controller": "UserAction.ExportTask",
3569
+ "requestType": null,
3570
+ "scalarParams": [],
3571
+ "responseType": "ExportTaskRespVO"
3572
+ },
3573
+ {
3574
+ "scope": "user",
3575
+ "module": "dashboard",
3576
+ "functionName": "fetchWidgetsData",
3577
+ "commandPath": [
3578
+ "dashboard",
3579
+ "fetch-widgets-data"
3580
+ ],
3581
+ "method": "POST",
3582
+ "endpoint": "/apps/:app_id/widgets-data",
3583
+ "endpointParams": [
3584
+ "app_id"
3585
+ ],
3586
+ "controller": "UserAction.FetchWidgetsData",
3587
+ "requestType": "FetchWidgetsDataReqVO",
3588
+ "scalarParams": [],
3589
+ "responseType": "FetchWidgetsDataRespVO"
3590
+ },
3591
+ {
3592
+ "scope": "user",
3593
+ "module": "entity",
3594
+ "functionName": "addEntityComment",
3595
+ "commandPath": [
3596
+ "entity",
3597
+ "add-entity-comment"
3598
+ ],
3599
+ "method": "POST",
3600
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/comment-add",
3601
+ "endpointParams": [
3602
+ "app_id",
3603
+ "entity_id",
3604
+ "row_id"
3605
+ ],
3606
+ "controller": "UserAction.EntityAddComment",
3607
+ "requestType": "EntityAddCommentReqVO",
3608
+ "scalarParams": [],
3609
+ "responseType": "EntityAddCommentRespVO"
3610
+ },
3611
+ {
3612
+ "scope": "user",
3613
+ "module": "entity",
3614
+ "functionName": "configEntityAIImport",
3615
+ "commandPath": [
3616
+ "entity",
3617
+ "config-entity-aiimport"
3618
+ ],
3619
+ "method": "POST",
3620
+ "endpoint": "/entity/:app_id/:entity_id/import-ai-config",
3621
+ "endpointParams": [
3622
+ "app_id",
3623
+ "entity_id"
3624
+ ],
3625
+ "controller": "UserAction.EntityAIImportConfig",
3626
+ "requestType": "EntityAIImportConfigReqVO",
3627
+ "scalarParams": [],
3628
+ "responseType": "EntityAIImportConfigRespVO"
3629
+ },
3630
+ {
3631
+ "scope": "user",
3632
+ "module": "entity",
3633
+ "functionName": "updateEntityBulk",
3634
+ "commandPath": [
3635
+ "entity",
3636
+ "update-entity-bulk"
3637
+ ],
3638
+ "method": "POST",
3639
+ "endpoint": "/entity/:app_id/:entity_id/bulk-update",
3640
+ "endpointParams": [
3641
+ "app_id",
3642
+ "entity_id"
3643
+ ],
3644
+ "controller": "UserAction.EntityBulkUpdate",
3645
+ "requestType": "EntityBulkUpdateReqVO",
3646
+ "scalarParams": [],
3647
+ "responseType": "EntityBulkUpdateRespVO"
3648
+ },
3649
+ {
3650
+ "scope": "user",
3651
+ "module": "entity",
3652
+ "functionName": "saveEntityBulkUpdateAs",
3653
+ "commandPath": [
3654
+ "entity",
3655
+ "save-entity-bulk-update-as"
3656
+ ],
3657
+ "method": "POST",
3658
+ "endpoint": "/entity/:app_id/:entity_id/bulk-update-save-as",
3659
+ "endpointParams": [
3660
+ "app_id",
3661
+ "entity_id"
3662
+ ],
3663
+ "controller": "UserAction.EntityBulkUpdateSaveAs",
3664
+ "requestType": "EntityBulkUpdateSaveAsReqVO",
3665
+ "scalarParams": [],
3666
+ "responseType": "EntityBulkUpdateSaveAsRespVO"
3667
+ },
3668
+ {
3669
+ "scope": "user",
3670
+ "module": "entity",
3671
+ "functionName": "deleteEntityComment",
3672
+ "commandPath": [
3673
+ "entity",
3674
+ "delete-entity-comment"
3675
+ ],
3676
+ "method": "POST",
3677
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/comment-delete",
3678
+ "endpointParams": [
3679
+ "app_id",
3680
+ "entity_id",
3681
+ "row_id"
3682
+ ],
3683
+ "controller": "UserAction.EntityDelComment",
3684
+ "requestType": "EntityDelCommentReqVO",
3685
+ "scalarParams": [],
3686
+ "responseType": "EntityDelCommentRespVO"
3687
+ },
3688
+ {
3689
+ "scope": "user",
3690
+ "module": "entity",
3691
+ "functionName": "doEntityAction",
3692
+ "commandPath": [
3693
+ "entity",
3694
+ "do-entity-action"
3695
+ ],
3696
+ "method": "POST",
3697
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/action/:action",
3698
+ "endpointParams": [
3699
+ "app_id",
3700
+ "entity_id",
3701
+ "row_id",
3702
+ "action"
3703
+ ],
3704
+ "controller": "UserAction.EntityDoAction",
3705
+ "requestType": "EntityDoActionReqVO",
3706
+ "scalarParams": [],
3707
+ "responseType": "EntityDoActionRespVO"
3708
+ },
3709
+ {
3710
+ "scope": "user",
3711
+ "module": "entity",
3712
+ "functionName": "doEntityFsmAction",
3713
+ "commandPath": [
3714
+ "entity",
3715
+ "do-entity-fsm-action"
3716
+ ],
3717
+ "method": "POST",
3718
+ "endpoint": "/entity/:app_id/:entity_id/convert/:action_code",
3719
+ "endpointParams": [
3720
+ "app_id",
3721
+ "entity_id",
3722
+ "action_code"
3723
+ ],
3724
+ "controller": "UserAction.EntityDoFsmAction",
3725
+ "requestType": "EntityDoFsmActionReqVO",
3726
+ "scalarParams": [],
3727
+ "responseType": "EntityDoFsmActionRespVO"
3728
+ },
3729
+ {
3730
+ "scope": "user",
3731
+ "module": "entity",
3732
+ "functionName": "exportEntity",
3733
+ "commandPath": [
3734
+ "entity",
3735
+ "export-entity"
3736
+ ],
3737
+ "method": "POST",
3738
+ "endpoint": "/entity/:app_id/:entity_id/export",
3739
+ "endpointParams": [
3740
+ "app_id",
3741
+ "entity_id"
3742
+ ],
3743
+ "controller": "UserAction.EntityExport",
3744
+ "requestType": "EntityExportReqVO",
3745
+ "scalarParams": [],
3746
+ "responseType": "EntityExportRespVO"
3747
+ },
3748
+ {
3749
+ "scope": "user",
3750
+ "module": "entity",
3751
+ "functionName": "getEntityComments",
3752
+ "commandPath": [
3753
+ "entity",
3754
+ "get-entity-comments"
3755
+ ],
3756
+ "method": "POST",
3757
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/comment-query",
3758
+ "endpointParams": [
3759
+ "app_id",
3760
+ "entity_id",
3761
+ "row_id"
3762
+ ],
3763
+ "controller": "UserAction.EntityGetComments",
3764
+ "requestType": "CommonQueryFormVO",
3765
+ "scalarParams": [],
3766
+ "responseType": "EntityGetCommentsRespVO"
3767
+ },
3768
+ {
3769
+ "scope": "user",
3770
+ "module": "entity",
3771
+ "functionName": "getEntityLogs",
3772
+ "commandPath": [
3773
+ "entity",
3774
+ "get-entity-logs"
3775
+ ],
3776
+ "method": "POST",
3777
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/log-query",
3778
+ "endpointParams": [
3779
+ "app_id",
3780
+ "entity_id",
3781
+ "row_id"
3782
+ ],
3783
+ "controller": "UserAction.EntityGetLogs",
3784
+ "requestType": "CommonQueryFormVO",
3785
+ "scalarParams": [],
3786
+ "responseType": "EntityGetLogsRespVO"
3787
+ },
3788
+ {
3789
+ "scope": "user",
3790
+ "module": "entity",
3791
+ "functionName": "importEntity",
3792
+ "commandPath": [
3793
+ "entity",
3794
+ "import-entity"
3795
+ ],
3796
+ "method": "POST",
3797
+ "endpoint": "/entity/:app_id/:entity_id/import",
3798
+ "endpointParams": [
3799
+ "app_id",
3800
+ "entity_id"
3801
+ ],
3802
+ "controller": "UserAction.EntityImport",
3803
+ "requestType": "EntityImportReqVO & EntityImportActionVO",
3804
+ "scalarParams": [],
3805
+ "responseType": "ImporterPostUploadRespVO | ImporterDoProcessRespVO | ImporterGetStateRespVO | ImporterInitTokenRespVO"
3806
+ },
3807
+ {
3808
+ "scope": "user",
3809
+ "module": "entity",
3810
+ "functionName": "prepareEntityImport",
3811
+ "commandPath": [
3812
+ "entity",
3813
+ "prepare-entity-import"
3814
+ ],
3815
+ "method": "POST",
3816
+ "endpoint": "/entity/:app_id/:entity_id/import-prepare",
3817
+ "endpointParams": [
3818
+ "app_id",
3819
+ "entity_id"
3820
+ ],
3821
+ "controller": "UserAction.EntityImportPrepare",
3822
+ "requestType": "EntityImportPrepareReqVO",
3823
+ "scalarParams": [],
3824
+ "responseType": "EntityImportPrepareRespVO"
3825
+ },
3826
+ {
3827
+ "scope": "user",
3828
+ "module": "entity",
3829
+ "functionName": "getEntityInfo",
3830
+ "commandPath": [
3831
+ "entity",
3832
+ "get-entity-info"
3833
+ ],
3834
+ "method": "GET",
3835
+ "endpoint": "/entity/:app_id/:entity_id",
3836
+ "endpointParams": [
3837
+ "app_id",
3838
+ "entity_id"
3839
+ ],
3840
+ "controller": "UserAction.EntityInfo",
3841
+ "requestType": null,
3842
+ "scalarParams": [],
3843
+ "responseType": "EntityInfoRespVO"
3844
+ },
3845
+ {
3846
+ "scope": "user",
3847
+ "module": "entity",
3848
+ "functionName": "invokeEntityBatchOperator",
3849
+ "commandPath": [
3850
+ "entity",
3851
+ "invoke-entity-batch-operator"
3852
+ ],
3853
+ "method": "POST",
3854
+ "endpoint": "/entity/:app_id/:entity_id/invoke-batch-operator",
3855
+ "endpointParams": [
3856
+ "app_id",
3857
+ "entity_id"
3858
+ ],
3859
+ "controller": "UserAction.EntityInvokeBatchOperator",
3860
+ "requestType": "EntityInvokeBatchOperatorReqVO & InvokeRequestVO",
3861
+ "scalarParams": [],
3862
+ "responseType": "EntityInvokeBatchOperatorRespVO"
3863
+ },
3864
+ {
3865
+ "scope": "user",
3866
+ "module": "entity",
3867
+ "functionName": "invokeEntityHook",
3868
+ "commandPath": [
3869
+ "entity",
3870
+ "invoke-entity-hook"
3871
+ ],
3872
+ "method": "POST",
3873
+ "endpoint": "/entity/:app_id/:entity_id/invoke/:action_id",
3874
+ "endpointParams": [
3875
+ "app_id",
3876
+ "entity_id",
3877
+ "action_id"
3878
+ ],
3879
+ "controller": "UserAction.EntityInvokeHook",
3880
+ "requestType": "InvokeRequestVO",
3881
+ "scalarParams": [],
3882
+ "responseType": "EntityInvokeHookRespVO"
3883
+ },
3884
+ {
3885
+ "scope": "user",
3886
+ "module": "entity",
3887
+ "functionName": "getEntityProcessMap",
3888
+ "commandPath": [
3889
+ "entity",
3890
+ "get-entity-process-map"
3891
+ ],
3892
+ "method": "GET",
3893
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/process-map",
3894
+ "endpointParams": [
3895
+ "app_id",
3896
+ "entity_id",
3897
+ "row_id"
3898
+ ],
3899
+ "controller": "UserAction.EntityProcessMap",
3900
+ "requestType": null,
3901
+ "scalarParams": [],
3902
+ "responseType": "EntityProcessMapRespVO"
3903
+ },
3904
+ {
3905
+ "scope": "user",
3906
+ "module": "entity",
3907
+ "functionName": "getEntityPrintTemplates",
3908
+ "commandPath": [
3909
+ "entity",
3910
+ "get-entity-print-templates"
3911
+ ],
3912
+ "method": "POST",
3913
+ "endpoint": "/entity/:app_id/:entity_id/print-templates",
3914
+ "endpointParams": [
3915
+ "app_id",
3916
+ "entity_id"
3917
+ ],
3918
+ "controller": "UserAction.GetPrintTemplates",
3919
+ "requestType": null,
3920
+ "scalarParams": [],
3921
+ "responseType": "EntityPrintTemplatesListRespVO"
3922
+ },
3923
+ {
3924
+ "scope": "user",
3925
+ "module": "flow",
3926
+ "functionName": "queryUserFlow",
3927
+ "commandPath": [
3928
+ "flow",
3929
+ "query-user-flow"
3930
+ ],
3931
+ "method": "POST",
3932
+ "endpoint": "/flows",
3933
+ "endpointParams": [],
3934
+ "controller": "UserFlow.Query",
3935
+ "requestType": "UserFlowQueryReqVO",
3936
+ "scalarParams": [],
3937
+ "responseType": "UserFlowQueryRespVO"
3938
+ },
3939
+ {
3940
+ "scope": "user",
3941
+ "module": "flow",
3942
+ "functionName": "getUserFlowStatus",
3943
+ "commandPath": [
3944
+ "flow",
3945
+ "get-user-flow-status"
3946
+ ],
3947
+ "method": "POST",
3948
+ "endpoint": "/flows/status",
3949
+ "endpointParams": [],
3950
+ "controller": "UserFlow.Status",
3951
+ "requestType": null,
3952
+ "scalarParams": [],
3953
+ "responseType": "UserFlowStatusRespVO"
3954
+ },
3955
+ {
3956
+ "scope": "user",
3957
+ "module": "global-action",
3958
+ "functionName": "acceptTenantInvitation",
3959
+ "commandPath": [
3960
+ "global-action",
3961
+ "accept-tenant-invitation"
3962
+ ],
3963
+ "method": "POST",
3964
+ "endpoint": "/tenant/accept-invitation",
3965
+ "endpointParams": [],
3966
+ "controller": "GlobalAction.AcceptInvitation",
3967
+ "requestType": "GlobalActionAcceptInvitationReqVO",
3968
+ "scalarParams": [],
3969
+ "responseType": "GlobalActionAcceptInvitationRespVO"
3970
+ },
3971
+ {
3972
+ "scope": "user",
3973
+ "module": "global-action",
3974
+ "functionName": "acceptTenantInvitationLink",
3975
+ "commandPath": [
3976
+ "global-action",
3977
+ "accept-tenant-invitation-link"
3978
+ ],
3979
+ "method": "POST",
3980
+ "endpoint": "/tenant/accept-invitation-link",
3981
+ "endpointParams": [],
3982
+ "controller": "GlobalAction.AcceptInvitationLink",
3983
+ "requestType": "GlobalActionAcceptInvitationLinkReqVO",
3984
+ "scalarParams": [],
3985
+ "responseType": "GlobalActionAcceptInvitationLinkRespVO"
3986
+ },
3987
+ {
3988
+ "scope": "user",
3989
+ "module": "global-action",
3990
+ "functionName": "createTenant",
3991
+ "commandPath": [
3992
+ "global-action",
3993
+ "create-tenant"
3994
+ ],
3995
+ "method": "POST",
3996
+ "endpoint": "/tenant",
3997
+ "endpointParams": [],
3998
+ "controller": "GlobalAction.CreateTenant",
3999
+ "requestType": "GlobalActionCreateTenantReqVO",
4000
+ "scalarParams": [],
4001
+ "responseType": "GlobalActionCreateTenantRespVO"
4002
+ },
4003
+ {
4004
+ "scope": "user",
4005
+ "module": "global-action",
4006
+ "functionName": "setDefaultTenant",
4007
+ "commandPath": [
4008
+ "global-action",
4009
+ "set-default-tenant"
4010
+ ],
4011
+ "method": "POST",
4012
+ "endpoint": "/tenant/set-default",
4013
+ "endpointParams": [],
4014
+ "controller": "GlobalAction.SetDefaultTenant",
4015
+ "requestType": "GlobalActionSetDefaultTenantReqVO",
4016
+ "scalarParams": [],
4017
+ "responseType": "GlobalActionSetDefaultTenantRespVO"
4018
+ },
4019
+ {
4020
+ "scope": "user",
4021
+ "module": "global-action",
4022
+ "functionName": "verifyEmail",
4023
+ "commandPath": [
4024
+ "global-action",
4025
+ "verify-email"
4026
+ ],
4027
+ "method": "POST",
4028
+ "endpoint": "/auth/email-verify",
4029
+ "endpointParams": [],
4030
+ "controller": "GlobalAction.EmailVerify",
4031
+ "requestType": "GlobalActionEmailVerifyReqVO",
4032
+ "scalarParams": [],
4033
+ "responseType": "GlobalActionEmailVerifyRespVO"
4034
+ },
4035
+ {
4036
+ "scope": "user",
4037
+ "module": "global-action",
4038
+ "functionName": "resendEmailVerify",
4039
+ "commandPath": [
4040
+ "global-action",
4041
+ "resend-email-verify"
4042
+ ],
4043
+ "method": "POST",
4044
+ "endpoint": "/auth/resend-email-verify",
4045
+ "endpointParams": [],
4046
+ "controller": "GlobalAction.EmailVerifyResend",
4047
+ "requestType": "GlobalActionEmailVerifyResendReqVO",
4048
+ "scalarParams": [],
4049
+ "responseType": "GlobalActionEmailVerifyResendRespVO"
4050
+ },
4051
+ {
4052
+ "scope": "user",
4053
+ "module": "global-action",
4054
+ "functionName": "getEmailVerifyStatus",
4055
+ "commandPath": [
4056
+ "global-action",
4057
+ "get-email-verify-status"
4058
+ ],
4059
+ "method": "POST",
4060
+ "endpoint": "/auth/email-verify-status",
4061
+ "endpointParams": [],
4062
+ "controller": "GlobalAction.EmailVerifyStatus",
4063
+ "requestType": null,
4064
+ "scalarParams": [],
4065
+ "responseType": "GlobalActionEmailVerifyStatusRespVO"
4066
+ },
4067
+ {
4068
+ "scope": "user",
4069
+ "module": "global-action",
4070
+ "functionName": "getEntry",
4071
+ "commandPath": [
4072
+ "global-action",
4073
+ "get-entry"
4074
+ ],
4075
+ "method": "GET",
4076
+ "endpoint": "/entry",
4077
+ "endpointParams": [],
4078
+ "controller": "GlobalAction.Entry",
4079
+ "requestType": null,
4080
+ "scalarParams": [
4081
+ {
4082
+ "name": "refresh",
4083
+ "type": "boolean",
4084
+ "hasDefault": true
4085
+ }
4086
+ ],
4087
+ "responseType": "GlobalActionEntryRespVO"
4088
+ },
4089
+ {
4090
+ "scope": "user",
4091
+ "module": "global-action",
4092
+ "functionName": "getTenantAuthRole",
4093
+ "commandPath": [
4094
+ "global-action",
4095
+ "get-tenant-auth-role"
4096
+ ],
4097
+ "method": "GET",
4098
+ "endpoint": "/tenant/authrole",
4099
+ "endpointParams": [],
4100
+ "controller": "GlobalAction.GetAuthRole",
4101
+ "requestType": null,
4102
+ "scalarParams": [],
4103
+ "responseType": "GlobalActionGetAuthRoleRespVO"
4104
+ },
4105
+ {
4106
+ "scope": "user",
4107
+ "module": "global-action",
4108
+ "functionName": "getTenantInvitationLink",
4109
+ "commandPath": [
4110
+ "global-action",
4111
+ "get-tenant-invitation-link"
4112
+ ],
4113
+ "method": "GET",
4114
+ "endpoint": "/tenant/invitation-link/:id",
4115
+ "endpointParams": [
4116
+ "id"
4117
+ ],
4118
+ "controller": "GlobalAction.GetInvitationLink",
4119
+ "requestType": null,
4120
+ "scalarParams": [],
4121
+ "responseType": "GlobalActionGetInvitationLinkRespVO"
4122
+ },
4123
+ {
4124
+ "scope": "user",
4125
+ "module": "global-action",
4126
+ "functionName": "getLink",
4127
+ "commandPath": [
4128
+ "global-action",
4129
+ "get-link"
4130
+ ],
4131
+ "method": "GET",
4132
+ "endpoint": "/link/:name",
4133
+ "endpointParams": [
4134
+ "name"
4135
+ ],
4136
+ "controller": "GlobalAction.LinkTo",
4137
+ "requestType": null,
4138
+ "scalarParams": [],
4139
+ "responseType": "void"
4140
+ },
4141
+ {
4142
+ "scope": "user",
4143
+ "module": "global-action",
4144
+ "functionName": "setProfileEmail",
4145
+ "commandPath": [
4146
+ "global-action",
4147
+ "set-profile-email"
4148
+ ],
4149
+ "method": "POST",
4150
+ "endpoint": "/user-profile/set-email",
4151
+ "endpointParams": [],
4152
+ "controller": "GlobalAction.ProfileSetEmail",
4153
+ "requestType": "GlobalActionProfileSetEmailReqVO",
4154
+ "scalarParams": [],
4155
+ "responseType": "GlobalActionProfileSetEmailRespVO"
4156
+ },
4157
+ {
4158
+ "scope": "user",
4159
+ "module": "global-action",
4160
+ "functionName": "cancelProfileEmail",
4161
+ "commandPath": [
4162
+ "global-action",
4163
+ "cancel-profile-email"
4164
+ ],
4165
+ "method": "DELETE",
4166
+ "endpoint": "/user-profile/set-email/:hashid",
4167
+ "endpointParams": [
4168
+ "hashid"
4169
+ ],
4170
+ "controller": "GlobalAction.ProfileSetEmailCancel",
4171
+ "requestType": null,
4172
+ "scalarParams": [],
4173
+ "responseType": "GlobalActionProfileSetEmailCancelRespVO"
4174
+ },
4175
+ {
4176
+ "scope": "user",
4177
+ "module": "global-action",
4178
+ "functionName": "getProfileEmailHistory",
4179
+ "commandPath": [
4180
+ "global-action",
4181
+ "get-profile-email-history"
4182
+ ],
4183
+ "method": "GET",
4184
+ "endpoint": "/user-profile/set-email",
4185
+ "endpointParams": [],
4186
+ "controller": "GlobalAction.ProfileSetEmailHistory",
4187
+ "requestType": null,
4188
+ "scalarParams": [],
4189
+ "responseType": "GlobalActionProfileSetEmailHistoryRespVO"
4190
+ },
4191
+ {
4192
+ "scope": "user",
4193
+ "module": "kiosk",
4194
+ "functionName": "getKioskScreens",
4195
+ "commandPath": [
4196
+ "kiosk",
4197
+ "get-kiosk-screens"
4198
+ ],
4199
+ "method": "GET",
4200
+ "endpoint": "/apps/:app_id/kiosk",
4201
+ "endpointParams": [
4202
+ "app_id"
4203
+ ],
4204
+ "controller": "UserAction.KioskScreens",
4205
+ "requestType": null,
4206
+ "scalarParams": [],
4207
+ "responseType": "KioskScreensRespVO"
4208
+ },
4209
+ {
4210
+ "scope": "user",
4211
+ "module": "profile",
4212
+ "functionName": "getUserProfile",
4213
+ "commandPath": [
4214
+ "profile",
4215
+ "get-user-profile"
4216
+ ],
4217
+ "method": "GET",
4218
+ "endpoint": "/user-profile",
4219
+ "endpointParams": [],
4220
+ "controller": "UserAction.UserProfile",
4221
+ "requestType": null,
4222
+ "scalarParams": [],
4223
+ "responseType": "UserProfileRespVO"
4224
+ },
4225
+ {
4226
+ "scope": "user",
4227
+ "module": "profile",
4228
+ "functionName": "updateUserProfile",
4229
+ "commandPath": [
4230
+ "profile",
4231
+ "update-user-profile"
4232
+ ],
4233
+ "method": "PUT",
4234
+ "endpoint": "/user-profile",
4235
+ "endpointParams": [],
4236
+ "controller": "UserAction.UserProfileUpdate",
4237
+ "requestType": "UserProfileUpdateReqVO",
4238
+ "scalarParams": [],
4239
+ "responseType": "UserProfileUpdateRespVO"
4240
+ },
4241
+ {
4242
+ "scope": "user",
4243
+ "module": "profile",
4244
+ "functionName": "updateUserAvatar",
4245
+ "commandPath": [
4246
+ "profile",
4247
+ "update-user-avatar"
4248
+ ],
4249
+ "method": "PUT",
4250
+ "endpoint": "/user-profile/update-avatar",
4251
+ "endpointParams": [],
4252
+ "controller": "UserAction.UpdateAvatar",
4253
+ "requestType": "UpdateAvatarReqVO",
4254
+ "scalarParams": [],
4255
+ "responseType": "UpdateAvatarRespVO"
4256
+ },
4257
+ {
4258
+ "scope": "user",
4259
+ "module": "profile",
4260
+ "functionName": "getUserAuthChannels",
4261
+ "commandPath": [
4262
+ "profile",
4263
+ "get-user-auth-channels"
4264
+ ],
4265
+ "method": "GET",
4266
+ "endpoint": "/user-profile/auth-channels",
4267
+ "endpointParams": [],
4268
+ "controller": "UserAction.AuthChannels",
4269
+ "requestType": null,
4270
+ "scalarParams": [],
4271
+ "responseType": "AuthChannelsRespVO"
4272
+ },
4273
+ {
4274
+ "scope": "user",
4275
+ "module": "profile",
4276
+ "functionName": "changeUserPassword",
4277
+ "commandPath": [
4278
+ "profile",
4279
+ "change-user-password"
4280
+ ],
4281
+ "method": "POST",
4282
+ "endpoint": "/user-profile/change-password",
4283
+ "endpointParams": [],
4284
+ "controller": "UserAction.ChangePassword",
4285
+ "requestType": "ChangePasswordReqVO",
4286
+ "scalarParams": [],
4287
+ "responseType": "ChangePasswordRespVO"
4288
+ },
4289
+ {
4290
+ "scope": "user",
4291
+ "module": "profile",
4292
+ "functionName": "fetchEntityUserToken",
4293
+ "commandPath": [
4294
+ "profile",
4295
+ "fetch-entity-user-token"
4296
+ ],
4297
+ "method": "POST",
4298
+ "endpoint": "/entity/:app_id/:entity_id/user-token",
4299
+ "endpointParams": [
4300
+ "app_id",
4301
+ "entity_id"
4302
+ ],
4303
+ "controller": "UserAction.FetchUserToken",
4304
+ "requestType": null,
4305
+ "scalarParams": [],
4306
+ "responseType": "FetchUserTokenRespVO"
4307
+ },
4308
+ {
4309
+ "scope": "user",
4310
+ "module": "workflow",
4311
+ "functionName": "putEntityQueryKeeper",
4312
+ "commandPath": [
4313
+ "workflow",
4314
+ "put-entity-query-keeper"
4315
+ ],
4316
+ "method": "POST",
4317
+ "endpoint": "/entity/:app_id/:entity_id/query-keeper",
4318
+ "endpointParams": [
4319
+ "app_id",
4320
+ "entity_id"
4321
+ ],
4322
+ "controller": "UserAction.EntityPutQueryKeeper",
4323
+ "requestType": "EntityPutQueryKeeperReqVO",
4324
+ "scalarParams": [],
4325
+ "responseType": "EntityPutQueryKeeperRespVO"
4326
+ },
4327
+ {
4328
+ "scope": "user",
4329
+ "module": "workflow",
4330
+ "functionName": "queryEntity",
4331
+ "commandPath": [
4332
+ "workflow",
4333
+ "query-entity"
4334
+ ],
4335
+ "method": "POST",
4336
+ "endpoint": "/entity/:app_id/:entity_id/data-query",
4337
+ "endpointParams": [
4338
+ "app_id",
4339
+ "entity_id"
4340
+ ],
4341
+ "controller": "UserAction.EntityQuery",
4342
+ "requestType": "EntityQueryReqVO",
4343
+ "scalarParams": [],
4344
+ "responseType": "EntityQueryRespVO"
4345
+ },
4346
+ {
4347
+ "scope": "user",
4348
+ "module": "workflow",
4349
+ "functionName": "filterEntityQuery",
4350
+ "commandPath": [
4351
+ "workflow",
4352
+ "filter-entity-query"
4353
+ ],
4354
+ "method": "POST",
4355
+ "endpoint": "/entity/:app_id/:entity_id/query-filter",
4356
+ "endpointParams": [
4357
+ "app_id",
4358
+ "entity_id"
4359
+ ],
4360
+ "controller": "UserAction.EntityQueryFilter",
4361
+ "requestType": "EntityQueryFilterReqVO",
4362
+ "scalarParams": [],
4363
+ "responseType": "EntityQueryFilterRespVO"
4364
+ },
4365
+ {
4366
+ "scope": "user",
4367
+ "module": "workflow",
4368
+ "functionName": "queryEntitySelection",
4369
+ "commandPath": [
4370
+ "workflow",
4371
+ "query-entity-selection"
4372
+ ],
4373
+ "method": "POST",
4374
+ "endpoint": "/entity/:app_id/:entity_id/selection-query/:action",
4375
+ "endpointParams": [
4376
+ "app_id",
4377
+ "entity_id",
4378
+ "action"
4379
+ ],
4380
+ "controller": "UserAction.EntityQuerySelection",
4381
+ "requestType": "EntitySelectionActionReqVO",
4382
+ "scalarParams": [],
4383
+ "responseType": "EntityQuerySelectionRespVO"
4384
+ },
4385
+ {
4386
+ "scope": "user",
4387
+ "module": "workflow",
4388
+ "functionName": "resolveEntityWorkflow",
4389
+ "commandPath": [
4390
+ "workflow",
4391
+ "resolve-entity-workflow"
4392
+ ],
4393
+ "method": "POST",
4394
+ "endpoint": "/entity/:app_id/:entity_id/resolve-workflow",
4395
+ "endpointParams": [
4396
+ "app_id",
4397
+ "entity_id"
4398
+ ],
4399
+ "controller": "UserAction.EntityResolveWorkflow",
4400
+ "requestType": "EntityResolveWorkflowReqVO",
4401
+ "scalarParams": [],
4402
+ "responseType": "EntityResolveWorkflowRespVO"
4403
+ },
4404
+ {
4405
+ "scope": "user",
4406
+ "module": "workflow",
4407
+ "functionName": "getEntityRow",
4408
+ "commandPath": [
4409
+ "workflow",
4410
+ "get-entity-row"
4411
+ ],
4412
+ "method": "GET",
4413
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id",
4414
+ "endpointParams": [
4415
+ "app_id",
4416
+ "entity_id",
4417
+ "row_id"
4418
+ ],
4419
+ "controller": "UserAction.EntityRow",
4420
+ "requestType": null,
4421
+ "scalarParams": [
4422
+ {
4423
+ "name": "params",
4424
+ "type": "Record<string, any>",
4425
+ "hasDefault": true
4426
+ }
4427
+ ],
4428
+ "responseType": "EntityRowRespVO"
4429
+ },
4430
+ {
4431
+ "scope": "user",
4432
+ "module": "workflow",
4433
+ "functionName": "deleteEntityRow",
4434
+ "commandPath": [
4435
+ "workflow",
4436
+ "delete-entity-row"
4437
+ ],
4438
+ "method": "POST",
4439
+ "endpoint": "/entity/:app_id/:entity_id/delete-item",
4440
+ "endpointParams": [
4441
+ "app_id",
4442
+ "entity_id"
4443
+ ],
4444
+ "controller": "UserAction.EntityRowDelete",
4445
+ "requestType": "EntitySelectionActionReqVO",
4446
+ "scalarParams": [],
4447
+ "responseType": "EntityRowDeleteRespVO"
4448
+ },
4449
+ {
4450
+ "scope": "user",
4451
+ "module": "workflow",
4452
+ "functionName": "restoreEntityRow",
4453
+ "commandPath": [
4454
+ "workflow",
4455
+ "restore-entity-row"
4456
+ ],
4457
+ "method": "POST",
4458
+ "endpoint": "/entity/:app_id/:entity_id/restore-item",
4459
+ "endpointParams": [
4460
+ "app_id",
4461
+ "entity_id"
4462
+ ],
4463
+ "controller": "UserAction.EntityRowRestore",
4464
+ "requestType": "EntitySelectionActionReqVO",
4465
+ "scalarParams": [],
4466
+ "responseType": "{ restored: number }"
4467
+ },
4468
+ {
4469
+ "scope": "user",
4470
+ "module": "workflow",
4471
+ "functionName": "updateEntityRow",
4472
+ "commandPath": [
4473
+ "workflow",
4474
+ "update-entity-row"
4475
+ ],
4476
+ "method": "PUT",
4477
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id",
4478
+ "endpointParams": [
4479
+ "app_id",
4480
+ "entity_id",
4481
+ "row_id"
4482
+ ],
4483
+ "controller": "UserAction.EntityUpdate",
4484
+ "requestType": "EntityUpdateReqVO",
4485
+ "scalarParams": [],
4486
+ "responseType": "EntityUpdateRespVO"
4487
+ },
4488
+ {
4489
+ "scope": "user",
4490
+ "module": "workflow",
4491
+ "functionName": "validateEntityUniq",
4492
+ "commandPath": [
4493
+ "workflow",
4494
+ "validate-entity-uniq"
4495
+ ],
4496
+ "method": "POST",
4497
+ "endpoint": "/entity/:app_id/:entity_id/validate-uniq",
4498
+ "endpointParams": [
4499
+ "app_id",
4500
+ "entity_id"
4501
+ ],
4502
+ "controller": "UserAction.EntityValidateUniq",
4503
+ "requestType": "EntityValidateUniqReqVO",
4504
+ "scalarParams": [],
4505
+ "responseType": "EntityValidateUniqRespVO"
4506
+ },
4507
+ {
4508
+ "scope": "user",
4509
+ "module": "workflow",
4510
+ "functionName": "insertEntity",
4511
+ "commandPath": [
4512
+ "workflow",
4513
+ "insert-entity"
4514
+ ],
4515
+ "method": "POST",
4516
+ "endpoint": "/entity/:app_id/:entity_id/insert",
4517
+ "endpointParams": [
4518
+ "app_id",
4519
+ "entity_id"
4520
+ ],
4521
+ "controller": "UserAction.Insert",
4522
+ "requestType": "InsertReqVO",
4523
+ "scalarParams": [],
4524
+ "responseType": "InsertRespVO"
4525
+ },
4526
+ {
4527
+ "scope": "user",
4528
+ "module": "workflow",
4529
+ "functionName": "prepareEntityInsert",
4530
+ "commandPath": [
4531
+ "workflow",
4532
+ "prepare-entity-insert"
4533
+ ],
4534
+ "method": "POST",
4535
+ "endpoint": "/entity/:app_id/:entity_id/prepare",
4536
+ "endpointParams": [
4537
+ "app_id",
4538
+ "entity_id"
4539
+ ],
4540
+ "controller": "UserAction.InsertPrepare",
4541
+ "requestType": "InsertPrepareReqVO",
4542
+ "scalarParams": [],
4543
+ "responseType": "InsertPrepareRespVO"
4544
+ },
4545
+ {
4546
+ "scope": "user",
4547
+ "module": "workflow",
4548
+ "functionName": "queryEntityWorkflowApproveUsers",
4549
+ "commandPath": [
4550
+ "workflow",
4551
+ "query-entity-workflow-approve-users"
4552
+ ],
4553
+ "method": "POST",
4554
+ "endpoint": "/entity/:app_id/:entity_id/query-approve-users",
4555
+ "endpointParams": [
4556
+ "app_id",
4557
+ "entity_id"
4558
+ ],
4559
+ "controller": "UserAction.EntityWorkflowApproveUsers",
4560
+ "requestType": null,
4561
+ "scalarParams": [],
4562
+ "responseType": "EntityWorkflowApproveUsersRespVO"
4563
+ },
4564
+ {
4565
+ "scope": "user",
4566
+ "module": "workflow",
4567
+ "functionName": "queryEntityWorkflowNodes",
4568
+ "commandPath": [
4569
+ "workflow",
4570
+ "query-entity-workflow-nodes"
4571
+ ],
4572
+ "method": "POST",
4573
+ "endpoint": "/entity/:app_id/:entity_id/query-workflow-nodes",
4574
+ "endpointParams": [
4575
+ "app_id",
4576
+ "entity_id"
4577
+ ],
4578
+ "controller": "UserAction.EntityWorkflowNodes",
4579
+ "requestType": null,
4580
+ "scalarParams": [],
4581
+ "responseType": "EntityWorkflowNodesRespVO"
4582
+ },
4583
+ {
4584
+ "scope": "user",
4585
+ "module": "workflow",
4586
+ "functionName": "getEntitySubformItems",
4587
+ "commandPath": [
4588
+ "workflow",
4589
+ "get-entity-subform-items"
4590
+ ],
4591
+ "method": "POST",
4592
+ "endpoint": "/entity/:app_id/:entity_id/row/:row_id/get-subitems",
4593
+ "endpointParams": [
4594
+ "app_id",
4595
+ "entity_id",
4596
+ "row_id"
4597
+ ],
4598
+ "controller": "UserAction.GetSubformItems",
4599
+ "requestType": "GetSubformItemsReqVO",
4600
+ "scalarParams": [],
4601
+ "responseType": "GetSubformItemsRespVO"
4602
+ }
4603
+ ] as const