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