@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.
- package/bundle/arcubase-admin.mjs +9875 -0
- package/bundle/arcubase.mjs +9875 -0
- package/dist/bin/arcubase-admin.d.ts +2 -0
- package/dist/bin/arcubase-admin.d.ts.map +1 -0
- package/dist/bin/arcubase-admin.js +22 -0
- package/dist/bin/arcubase.d.ts +2 -0
- package/dist/bin/arcubase.d.ts.map +1 -0
- package/dist/bin/arcubase.js +22 -0
- package/dist/generated/command_registry.generated.d.ts +3072 -0
- package/dist/generated/command_registry.generated.d.ts.map +1 -0
- package/dist/generated/command_registry.generated.js +4587 -0
- package/dist/generated/type_index.generated.d.ts +496 -0
- package/dist/generated/type_index.generated.d.ts.map +1 -0
- package/dist/generated/type_index.generated.js +502 -0
- package/dist/generated/zod_registry.generated.d.ts +356 -0
- package/dist/generated/zod_registry.generated.d.ts.map +1 -0
- package/dist/generated/zod_registry.generated.js +483 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/runtime/argv.d.ts +8 -0
- package/dist/runtime/argv.d.ts.map +1 -0
- package/dist/runtime/argv.js +31 -0
- package/dist/runtime/body_loader.d.ts +3 -0
- package/dist/runtime/body_loader.d.ts.map +1 -0
- package/dist/runtime/body_loader.js +26 -0
- package/dist/runtime/command_registry.d.ts +9 -0
- package/dist/runtime/command_registry.d.ts.map +1 -0
- package/dist/runtime/command_registry.js +14 -0
- package/dist/runtime/env.d.ts +14 -0
- package/dist/runtime/env.d.ts.map +1 -0
- package/dist/runtime/env.js +42 -0
- package/dist/runtime/errors.d.ts +23 -0
- package/dist/runtime/errors.d.ts.map +1 -0
- package/dist/runtime/errors.js +18 -0
- package/dist/runtime/execute.d.ts +17 -0
- package/dist/runtime/execute.d.ts.map +1 -0
- package/dist/runtime/execute.js +183 -0
- package/dist/runtime/http.d.ts +4 -0
- package/dist/runtime/http.d.ts.map +1 -0
- package/dist/runtime/http.js +21 -0
- package/dist/runtime/output.d.ts +2 -0
- package/dist/runtime/output.d.ts.map +1 -0
- package/dist/runtime/output.js +3 -0
- package/dist/runtime/paths.d.ts +4 -0
- package/dist/runtime/paths.d.ts.map +1 -0
- package/dist/runtime/paths.js +8 -0
- package/dist/runtime/zod_registry.d.ts +10 -0
- package/dist/runtime/zod_registry.d.ts.map +1 -0
- package/dist/runtime/zod_registry.js +50 -0
- package/dist/tests/bootstrap.test.d.ts +2 -0
- package/dist/tests/bootstrap.test.d.ts.map +1 -0
- package/dist/tests/bootstrap.test.js +59 -0
- package/dist/tests/command_registry.test.d.ts +2 -0
- package/dist/tests/command_registry.test.d.ts.map +1 -0
- package/dist/tests/command_registry.test.js +22 -0
- package/dist/tests/execute_validation.test.d.ts +2 -0
- package/dist/tests/execute_validation.test.d.ts.map +1 -0
- package/dist/tests/execute_validation.test.js +41 -0
- package/dist/tests/help.test.d.ts +2 -0
- package/dist/tests/help.test.d.ts.map +1 -0
- package/dist/tests/help.test.js +22 -0
- package/dist/tests/zod_registry.test.d.ts +2 -0
- package/dist/tests/zod_registry.test.d.ts.map +1 -0
- package/dist/tests/zod_registry.test.js +26 -0
- package/package.json +46 -0
- package/sdk-dist/api/admin/app-entity-share.ts +52 -0
- package/sdk-dist/api/admin/app.ts +187 -0
- package/sdk-dist/api/admin/automate-rule.ts +59 -0
- package/sdk-dist/api/admin/business-hooks.ts +17 -0
- package/sdk-dist/api/admin/config.ts +12 -0
- package/sdk-dist/api/admin/dashboard.ts +88 -0
- package/sdk-dist/api/admin/dataset.ts +133 -0
- package/sdk-dist/api/admin/departments.ts +223 -0
- package/sdk-dist/api/admin/developer.ts +126 -0
- package/sdk-dist/api/admin/entity-tags.ts +71 -0
- package/sdk-dist/api/admin/entity.ts +188 -0
- package/sdk-dist/api/admin/extension.ts +19 -0
- package/sdk-dist/api/admin/index.ts +21 -0
- package/sdk-dist/api/admin/ingress.ts +117 -0
- package/sdk-dist/api/admin/integration.ts +64 -0
- package/sdk-dist/api/admin/kiosk-flow.ts +67 -0
- package/sdk-dist/api/admin/print-template-background.ts +43 -0
- package/sdk-dist/api/admin/print-templates.ts +60 -0
- package/sdk-dist/api/admin/tenant.ts +231 -0
- package/sdk-dist/api/admin/workflow.ts +51 -0
- package/sdk-dist/api/kiosk/index.ts +4 -0
- package/sdk-dist/api/kiosk/starter.ts +34 -0
- package/sdk-dist/api/kiosk/ui.ts +79 -0
- package/sdk-dist/api/open/api.ts +11 -0
- package/sdk-dist/api/open/index.ts +3 -0
- package/sdk-dist/api/shared-link/form.ts +103 -0
- package/sdk-dist/api/shared-link/index.ts +3 -0
- package/sdk-dist/api/user/common.ts +159 -0
- package/sdk-dist/api/user/context.ts +10 -0
- package/sdk-dist/api/user/copilot.ts +20 -0
- package/sdk-dist/api/user/dashboard.ts +43 -0
- package/sdk-dist/api/user/entity.ts +213 -0
- package/sdk-dist/api/user/flow.ts +20 -0
- package/sdk-dist/api/user/global-action.ts +128 -0
- package/sdk-dist/api/user/index.ts +12 -0
- package/sdk-dist/api/user/kiosk.ts +12 -0
- package/sdk-dist/api/user/profile.ts +57 -0
- package/sdk-dist/api/user/workflow.ts +186 -0
- package/sdk-dist/generated/command_registry.generated.ts +4603 -0
- package/sdk-dist/generated/type_index.generated.ts +503 -0
- package/sdk-dist/generated/zod_registry.generated.ts +713 -0
- package/sdk-dist/types/app-user.ts +0 -0
- package/sdk-dist/types/app.ts +182 -0
- package/sdk-dist/types/auth.ts +174 -0
- package/sdk-dist/types/automate-rule.ts +100 -0
- package/sdk-dist/types/business-hooks.ts +37 -0
- package/sdk-dist/types/common.ts +676 -0
- package/sdk-dist/types/copilot.ts +34 -0
- package/sdk-dist/types/dashboard.ts +122 -0
- package/sdk-dist/types/dataset.ts +168 -0
- package/sdk-dist/types/departments.ts +351 -0
- package/sdk-dist/types/developer.ts +190 -0
- package/sdk-dist/types/entity.ts +400 -0
- package/sdk-dist/types/extension.ts +15 -0
- package/sdk-dist/types/global-action.ts +206 -0
- package/sdk-dist/types/index.ts +26 -0
- package/sdk-dist/types/ingress.ts +173 -0
- package/sdk-dist/types/kiosk-starter.ts +46 -0
- package/sdk-dist/types/kiosk-ui.ts +94 -0
- package/sdk-dist/types/oauth-authorize.ts +52 -0
- package/sdk-dist/types/oauth.ts +33 -0
- package/sdk-dist/types/openapi.ts +24 -0
- package/sdk-dist/types/platform-setup.ts +26 -0
- package/sdk-dist/types/shared-link.ts +41 -0
- package/sdk-dist/types/tenant.ts +340 -0
- package/sdk-dist/types/upload.ts +0 -0
- package/sdk-dist/types/user-action.ts +871 -0
- package/sdk-dist/types/user-flow.ts +90 -0
- package/sdk-dist/types/widgets.ts +115 -0
- package/sdk-dist/types/workflow.ts +162 -0
- package/src/bin/arcubase-admin.ts +23 -0
- package/src/bin/arcubase.ts +23 -0
- package/src/generated/command_registry.generated.ts +4603 -0
- package/src/generated/type_index.generated.ts +503 -0
- package/src/generated/zod_registry.generated.ts +713 -0
- package/src/index.ts +4 -0
- package/src/runtime/argv.ts +39 -0
- package/src/runtime/body_loader.ts +26 -0
- package/src/runtime/command_registry.ts +22 -0
- package/src/runtime/env.ts +60 -0
- package/src/runtime/errors.ts +41 -0
- package/src/runtime/execute.ts +206 -0
- package/src/runtime/http.ts +23 -0
- package/src/runtime/output.ts +3 -0
- package/src/runtime/paths.ts +8 -0
- package/src/runtime/zod_registry.ts +53 -0
- package/src/tests/bootstrap.test.ts +67 -0
- package/src/tests/command_registry.test.ts +27 -0
- package/src/tests/execute_validation.test.ts +50 -0
- package/src/tests/help.test.ts +25 -0
- package/src/tests/zod_registry.test.ts +33 -0
|
@@ -0,0 +1,3072 @@
|
|
|
1
|
+
export type GeneratedCommandDef = {
|
|
2
|
+
scope: 'admin' | 'user';
|
|
3
|
+
module: string;
|
|
4
|
+
functionName: string;
|
|
5
|
+
commandPath: readonly [string, string];
|
|
6
|
+
method: string;
|
|
7
|
+
endpoint: string;
|
|
8
|
+
endpointParams: readonly string[];
|
|
9
|
+
controller: string;
|
|
10
|
+
requestType: string | null;
|
|
11
|
+
scalarParams: readonly {
|
|
12
|
+
name: string;
|
|
13
|
+
type: string;
|
|
14
|
+
hasDefault: boolean;
|
|
15
|
+
}[];
|
|
16
|
+
responseType: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const adminCommands: readonly [{
|
|
19
|
+
readonly scope: "admin";
|
|
20
|
+
readonly module: "app-entity-share";
|
|
21
|
+
readonly functionName: "getAppEntityShares";
|
|
22
|
+
readonly commandPath: readonly ["app-entity-share", "get-app-entity-shares"];
|
|
23
|
+
readonly method: "GET";
|
|
24
|
+
readonly endpoint: "/api/apps/:app_id/entity-shares";
|
|
25
|
+
readonly endpointParams: readonly ["app_id"];
|
|
26
|
+
readonly controller: "AppGetEntityShares";
|
|
27
|
+
readonly requestType: null;
|
|
28
|
+
readonly scalarParams: readonly [];
|
|
29
|
+
readonly responseType: "AppGetEntitySharesRespVO";
|
|
30
|
+
}, {
|
|
31
|
+
readonly scope: "admin";
|
|
32
|
+
readonly module: "app-entity-share";
|
|
33
|
+
readonly functionName: "createAppEntityShare";
|
|
34
|
+
readonly commandPath: readonly ["app-entity-share", "create-app-entity-share"];
|
|
35
|
+
readonly method: "POST";
|
|
36
|
+
readonly endpoint: "/api/apps/:app_id/entity-shares";
|
|
37
|
+
readonly endpointParams: readonly ["app_id"];
|
|
38
|
+
readonly controller: "AppCreateEntityShare";
|
|
39
|
+
readonly requestType: "AppCreateEntityShareReqVO";
|
|
40
|
+
readonly scalarParams: readonly [];
|
|
41
|
+
readonly responseType: "{ success: boolean }";
|
|
42
|
+
}, {
|
|
43
|
+
readonly scope: "admin";
|
|
44
|
+
readonly module: "app-entity-share";
|
|
45
|
+
readonly functionName: "deleteAppEntityShare";
|
|
46
|
+
readonly commandPath: readonly ["app-entity-share", "delete-app-entity-share"];
|
|
47
|
+
readonly method: "DELETE";
|
|
48
|
+
readonly endpoint: "/api/apps/:app_id/entity-shares";
|
|
49
|
+
readonly endpointParams: readonly ["app_id"];
|
|
50
|
+
readonly controller: "AppDeleteEntityShare";
|
|
51
|
+
readonly requestType: "AppDeleteEntityShareReqVO";
|
|
52
|
+
readonly scalarParams: readonly [];
|
|
53
|
+
readonly responseType: "{ success: boolean }";
|
|
54
|
+
}, {
|
|
55
|
+
readonly scope: "admin";
|
|
56
|
+
readonly module: "app";
|
|
57
|
+
readonly functionName: "renameApp";
|
|
58
|
+
readonly commandPath: readonly ["app", "rename-app"];
|
|
59
|
+
readonly method: "PUT";
|
|
60
|
+
readonly endpoint: "/apps/:id/name";
|
|
61
|
+
readonly endpointParams: readonly ["id"];
|
|
62
|
+
readonly controller: "App.AppRename";
|
|
63
|
+
readonly requestType: "AppRenameReqVO";
|
|
64
|
+
readonly scalarParams: readonly [];
|
|
65
|
+
readonly responseType: "AppRenameRespVO";
|
|
66
|
+
}, {
|
|
67
|
+
readonly scope: "admin";
|
|
68
|
+
readonly module: "app";
|
|
69
|
+
readonly functionName: "createAppByTenants";
|
|
70
|
+
readonly commandPath: readonly ["app", "create-app-by-tenants"];
|
|
71
|
+
readonly method: "POST";
|
|
72
|
+
readonly endpoint: "/apps";
|
|
73
|
+
readonly endpointParams: readonly [];
|
|
74
|
+
readonly controller: "App.CreateAppByTenants";
|
|
75
|
+
readonly requestType: "AppCreateByTenantsReqVO";
|
|
76
|
+
readonly scalarParams: readonly [];
|
|
77
|
+
readonly responseType: "AppCreateByTenantsRespVO";
|
|
78
|
+
}, {
|
|
79
|
+
readonly scope: "admin";
|
|
80
|
+
readonly module: "app";
|
|
81
|
+
readonly functionName: "createEntity";
|
|
82
|
+
readonly commandPath: readonly ["app", "create-entity"];
|
|
83
|
+
readonly method: "POST";
|
|
84
|
+
readonly endpoint: "/apps/:id/entities";
|
|
85
|
+
readonly endpointParams: readonly ["id"];
|
|
86
|
+
readonly controller: "App.CreateEntity";
|
|
87
|
+
readonly requestType: "AppCreateEntityReqVO";
|
|
88
|
+
readonly scalarParams: readonly [];
|
|
89
|
+
readonly responseType: "AppCreateEntityRespVO";
|
|
90
|
+
}, {
|
|
91
|
+
readonly scope: "admin";
|
|
92
|
+
readonly module: "app";
|
|
93
|
+
readonly functionName: "deleteApp";
|
|
94
|
+
readonly commandPath: readonly ["app", "delete-app"];
|
|
95
|
+
readonly method: "DELETE";
|
|
96
|
+
readonly endpoint: "/apps/:id";
|
|
97
|
+
readonly endpointParams: readonly ["id"];
|
|
98
|
+
readonly controller: "App.DeleteApp";
|
|
99
|
+
readonly requestType: null;
|
|
100
|
+
readonly scalarParams: readonly [];
|
|
101
|
+
readonly responseType: "boolean";
|
|
102
|
+
}, {
|
|
103
|
+
readonly scope: "admin";
|
|
104
|
+
readonly module: "app";
|
|
105
|
+
readonly functionName: "deleteWidgets";
|
|
106
|
+
readonly commandPath: readonly ["app", "delete-widgets"];
|
|
107
|
+
readonly method: "DELETE";
|
|
108
|
+
readonly endpoint: "/apps/:app_id/widgets/:widgets_id";
|
|
109
|
+
readonly endpointParams: readonly ["app_id", "widgets_id"];
|
|
110
|
+
readonly controller: "App.DeleteWidgets";
|
|
111
|
+
readonly requestType: null;
|
|
112
|
+
readonly scalarParams: readonly [];
|
|
113
|
+
readonly responseType: "boolean";
|
|
114
|
+
}, {
|
|
115
|
+
readonly scope: "admin";
|
|
116
|
+
readonly module: "app";
|
|
117
|
+
readonly functionName: "getAppSchema";
|
|
118
|
+
readonly commandPath: readonly ["app", "get-app-schema"];
|
|
119
|
+
readonly method: "POST";
|
|
120
|
+
readonly endpoint: "/apps/:id/schema";
|
|
121
|
+
readonly endpointParams: readonly ["id"];
|
|
122
|
+
readonly controller: "App.GetAppSchema";
|
|
123
|
+
readonly requestType: null;
|
|
124
|
+
readonly scalarParams: readonly [{
|
|
125
|
+
readonly name: "refresh";
|
|
126
|
+
readonly type: "boolean";
|
|
127
|
+
readonly hasDefault: true;
|
|
128
|
+
}];
|
|
129
|
+
readonly responseType: "AppGetAppSchemaRespVO";
|
|
130
|
+
}, {
|
|
131
|
+
readonly scope: "admin";
|
|
132
|
+
readonly module: "app";
|
|
133
|
+
readonly functionName: "getEntities";
|
|
134
|
+
readonly commandPath: readonly ["app", "get-entities"];
|
|
135
|
+
readonly method: "GET";
|
|
136
|
+
readonly endpoint: "/apps/:id/entities";
|
|
137
|
+
readonly endpointParams: readonly ["id"];
|
|
138
|
+
readonly controller: "App.GetEntities";
|
|
139
|
+
readonly requestType: null;
|
|
140
|
+
readonly scalarParams: readonly [];
|
|
141
|
+
readonly responseType: "AppGetEntitiesRespVO";
|
|
142
|
+
}, {
|
|
143
|
+
readonly scope: "admin";
|
|
144
|
+
readonly module: "app";
|
|
145
|
+
readonly functionName: "getPredefinedPermissions";
|
|
146
|
+
readonly commandPath: readonly ["app", "get-predefined-permissions"];
|
|
147
|
+
readonly method: "GET";
|
|
148
|
+
readonly endpoint: "/permissions/predefined";
|
|
149
|
+
readonly endpointParams: readonly [];
|
|
150
|
+
readonly controller: "App.GetPredefinedPermissions";
|
|
151
|
+
readonly requestType: null;
|
|
152
|
+
readonly scalarParams: readonly [];
|
|
153
|
+
readonly responseType: "any[]";
|
|
154
|
+
}, {
|
|
155
|
+
readonly scope: "admin";
|
|
156
|
+
readonly module: "app";
|
|
157
|
+
readonly functionName: "getSiteMaps";
|
|
158
|
+
readonly commandPath: readonly ["app", "get-site-maps"];
|
|
159
|
+
readonly method: "GET";
|
|
160
|
+
readonly endpoint: "/apps/:id/sitemap";
|
|
161
|
+
readonly endpointParams: readonly ["id"];
|
|
162
|
+
readonly controller: "App.GetSiteMaps";
|
|
163
|
+
readonly requestType: null;
|
|
164
|
+
readonly scalarParams: readonly [];
|
|
165
|
+
readonly responseType: "AppGetSiteMapsRespVO";
|
|
166
|
+
}, {
|
|
167
|
+
readonly scope: "admin";
|
|
168
|
+
readonly module: "app";
|
|
169
|
+
readonly functionName: "getWidgets";
|
|
170
|
+
readonly commandPath: readonly ["app", "get-widgets"];
|
|
171
|
+
readonly method: "GET";
|
|
172
|
+
readonly endpoint: "/apps/:app_id/widgets/:widgets_id";
|
|
173
|
+
readonly endpointParams: readonly ["app_id", "widgets_id"];
|
|
174
|
+
readonly controller: "App.GetWidgets";
|
|
175
|
+
readonly requestType: null;
|
|
176
|
+
readonly scalarParams: readonly [];
|
|
177
|
+
readonly responseType: "AppGetWidgetsRespVO";
|
|
178
|
+
}, {
|
|
179
|
+
readonly scope: "admin";
|
|
180
|
+
readonly module: "app";
|
|
181
|
+
readonly functionName: "newWidgets";
|
|
182
|
+
readonly commandPath: readonly ["app", "new-widgets"];
|
|
183
|
+
readonly method: "POST";
|
|
184
|
+
readonly endpoint: "/apps/:app_id/widgets";
|
|
185
|
+
readonly endpointParams: readonly ["app_id"];
|
|
186
|
+
readonly controller: "App.NewWidgets";
|
|
187
|
+
readonly requestType: "AppNewWidgetsReqVO";
|
|
188
|
+
readonly scalarParams: readonly [];
|
|
189
|
+
readonly responseType: "AppNewWidgetsRespVO";
|
|
190
|
+
}, {
|
|
191
|
+
readonly scope: "admin";
|
|
192
|
+
readonly module: "app";
|
|
193
|
+
readonly functionName: "previewWidgetsData";
|
|
194
|
+
readonly commandPath: readonly ["app", "preview-widgets-data"];
|
|
195
|
+
readonly method: "POST";
|
|
196
|
+
readonly endpoint: "/apps/:app_id/widgets-preview";
|
|
197
|
+
readonly endpointParams: readonly ["app_id"];
|
|
198
|
+
readonly controller: "App.PreviewWidgetsData";
|
|
199
|
+
readonly requestType: "AppPreviewWidgetsDataReqVO";
|
|
200
|
+
readonly scalarParams: readonly [];
|
|
201
|
+
readonly responseType: "AppPreviewWidgetsDataRespVO";
|
|
202
|
+
}, {
|
|
203
|
+
readonly scope: "admin";
|
|
204
|
+
readonly module: "app";
|
|
205
|
+
readonly functionName: "saveSiteMaps";
|
|
206
|
+
readonly commandPath: readonly ["app", "save-site-maps"];
|
|
207
|
+
readonly method: "PUT";
|
|
208
|
+
readonly endpoint: "/apps/:id/sitemap";
|
|
209
|
+
readonly endpointParams: readonly ["id"];
|
|
210
|
+
readonly controller: "App.SaveSiteMaps";
|
|
211
|
+
readonly requestType: "AppSaveSiteMapsReqVO";
|
|
212
|
+
readonly scalarParams: readonly [];
|
|
213
|
+
readonly responseType: "AppGetSiteMapsRespVO";
|
|
214
|
+
}, {
|
|
215
|
+
readonly scope: "admin";
|
|
216
|
+
readonly module: "app";
|
|
217
|
+
readonly functionName: "updateApp";
|
|
218
|
+
readonly commandPath: readonly ["app", "update-app"];
|
|
219
|
+
readonly method: "PUT";
|
|
220
|
+
readonly endpoint: "/apps/:id";
|
|
221
|
+
readonly endpointParams: readonly ["id"];
|
|
222
|
+
readonly controller: "App.UpdateApp";
|
|
223
|
+
readonly requestType: "AppUpdateAppReqVO";
|
|
224
|
+
readonly scalarParams: readonly [];
|
|
225
|
+
readonly responseType: "AppUpdateAppRespVO";
|
|
226
|
+
}, {
|
|
227
|
+
readonly scope: "admin";
|
|
228
|
+
readonly module: "app";
|
|
229
|
+
readonly functionName: "updateI18n";
|
|
230
|
+
readonly commandPath: readonly ["app", "update-i18n"];
|
|
231
|
+
readonly method: "PUT";
|
|
232
|
+
readonly endpoint: "/apps/:app_id/i18n";
|
|
233
|
+
readonly endpointParams: readonly ["app_id"];
|
|
234
|
+
readonly controller: "App.UpdateI18n";
|
|
235
|
+
readonly requestType: "AppUpdateI18nReqVO";
|
|
236
|
+
readonly scalarParams: readonly [];
|
|
237
|
+
readonly responseType: "AppUpdateI18nRespVO";
|
|
238
|
+
}, {
|
|
239
|
+
readonly scope: "admin";
|
|
240
|
+
readonly module: "app";
|
|
241
|
+
readonly functionName: "updateWidgets";
|
|
242
|
+
readonly commandPath: readonly ["app", "update-widgets"];
|
|
243
|
+
readonly method: "PUT";
|
|
244
|
+
readonly endpoint: "/apps/:app_id/widgets/:widgets_id";
|
|
245
|
+
readonly endpointParams: readonly ["app_id", "widgets_id"];
|
|
246
|
+
readonly controller: "App.UpdateWidgets";
|
|
247
|
+
readonly requestType: "AppUpdateWidgetsReqVO";
|
|
248
|
+
readonly scalarParams: readonly [];
|
|
249
|
+
readonly responseType: "AppUpdateWidgetsRespVO";
|
|
250
|
+
}, {
|
|
251
|
+
readonly scope: "admin";
|
|
252
|
+
readonly module: "app";
|
|
253
|
+
readonly functionName: "updateWidgetsIngressOptions";
|
|
254
|
+
readonly commandPath: readonly ["app", "update-widgets-ingress-options"];
|
|
255
|
+
readonly method: "PUT";
|
|
256
|
+
readonly endpoint: "/apps/:app_id/widgets/:widgets_id/ingress-options";
|
|
257
|
+
readonly endpointParams: readonly ["app_id", "widgets_id"];
|
|
258
|
+
readonly controller: "App.UpdateWidgetsIngressOptions";
|
|
259
|
+
readonly requestType: "AppUpdateWidgetsIngressOptionsReqVO";
|
|
260
|
+
readonly scalarParams: readonly [];
|
|
261
|
+
readonly responseType: "AppUpdateWidgetsIngressOptionsRespVO";
|
|
262
|
+
}, {
|
|
263
|
+
readonly scope: "admin";
|
|
264
|
+
readonly module: "app";
|
|
265
|
+
readonly functionName: "widgetsList";
|
|
266
|
+
readonly commandPath: readonly ["app", "widgets-list"];
|
|
267
|
+
readonly method: "GET";
|
|
268
|
+
readonly endpoint: "/apps/:app_id/widgets";
|
|
269
|
+
readonly endpointParams: readonly ["app_id"];
|
|
270
|
+
readonly controller: "App.WidgetsList";
|
|
271
|
+
readonly requestType: null;
|
|
272
|
+
readonly scalarParams: readonly [];
|
|
273
|
+
readonly responseType: "AppWidgetsListRespVO";
|
|
274
|
+
}, {
|
|
275
|
+
readonly scope: "admin";
|
|
276
|
+
readonly module: "automate-rule";
|
|
277
|
+
readonly functionName: "createAutomateRule";
|
|
278
|
+
readonly commandPath: readonly ["automate-rule", "create-automate-rule"];
|
|
279
|
+
readonly method: "POST";
|
|
280
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/automate-rules";
|
|
281
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
282
|
+
readonly controller: "AutomateRule.Create";
|
|
283
|
+
readonly requestType: "AutomateRuleCreateReqVO";
|
|
284
|
+
readonly scalarParams: readonly [];
|
|
285
|
+
readonly responseType: "AutomateRuleCreateRespVO";
|
|
286
|
+
}, {
|
|
287
|
+
readonly scope: "admin";
|
|
288
|
+
readonly module: "automate-rule";
|
|
289
|
+
readonly functionName: "updateAutomateRule";
|
|
290
|
+
readonly commandPath: readonly ["automate-rule", "update-automate-rule"];
|
|
291
|
+
readonly method: "PUT";
|
|
292
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id";
|
|
293
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "rule_id"];
|
|
294
|
+
readonly controller: "AutomateRule.Update";
|
|
295
|
+
readonly requestType: "AutomateRuleUpdateReqVO";
|
|
296
|
+
readonly scalarParams: readonly [];
|
|
297
|
+
readonly responseType: "AutomateRuleUpdateRespVO";
|
|
298
|
+
}, {
|
|
299
|
+
readonly scope: "admin";
|
|
300
|
+
readonly module: "automate-rule";
|
|
301
|
+
readonly functionName: "deleteAutomateRule";
|
|
302
|
+
readonly commandPath: readonly ["automate-rule", "delete-automate-rule"];
|
|
303
|
+
readonly method: "DELETE";
|
|
304
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id";
|
|
305
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "rule_id"];
|
|
306
|
+
readonly controller: "AutomateRule.Delete";
|
|
307
|
+
readonly requestType: null;
|
|
308
|
+
readonly scalarParams: readonly [];
|
|
309
|
+
readonly responseType: "{ success: boolean }";
|
|
310
|
+
}, {
|
|
311
|
+
readonly scope: "admin";
|
|
312
|
+
readonly module: "automate-rule";
|
|
313
|
+
readonly functionName: "listAutomateRules";
|
|
314
|
+
readonly commandPath: readonly ["automate-rule", "list-automate-rules"];
|
|
315
|
+
readonly method: "GET";
|
|
316
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/automate-rules";
|
|
317
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
318
|
+
readonly controller: "AutomateRule.List";
|
|
319
|
+
readonly requestType: null;
|
|
320
|
+
readonly scalarParams: readonly [];
|
|
321
|
+
readonly responseType: "AutomateRuleListRespVO";
|
|
322
|
+
}, {
|
|
323
|
+
readonly scope: "admin";
|
|
324
|
+
readonly module: "automate-rule";
|
|
325
|
+
readonly functionName: "getAutomateRule";
|
|
326
|
+
readonly commandPath: readonly ["automate-rule", "get-automate-rule"];
|
|
327
|
+
readonly method: "GET";
|
|
328
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/automate-rules/:rule_id";
|
|
329
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "rule_id"];
|
|
330
|
+
readonly controller: "AutomateRule.Get";
|
|
331
|
+
readonly requestType: null;
|
|
332
|
+
readonly scalarParams: readonly [];
|
|
333
|
+
readonly responseType: "AutomateRuleGetRespVO";
|
|
334
|
+
}, {
|
|
335
|
+
readonly scope: "admin";
|
|
336
|
+
readonly module: "business-hooks";
|
|
337
|
+
readonly functionName: "getAvailableHooklets";
|
|
338
|
+
readonly commandPath: readonly ["business-hooks", "get-available-hooklets"];
|
|
339
|
+
readonly method: "GET";
|
|
340
|
+
readonly endpoint: "/api/business-hooks/available-hooklets";
|
|
341
|
+
readonly endpointParams: readonly [];
|
|
342
|
+
readonly controller: "BusinessHooks.GetAvailableHooklets";
|
|
343
|
+
readonly requestType: null;
|
|
344
|
+
readonly scalarParams: readonly [];
|
|
345
|
+
readonly responseType: "BusinessHooksGetAvailableHookletsRespVO";
|
|
346
|
+
}, {
|
|
347
|
+
readonly scope: "admin";
|
|
348
|
+
readonly module: "business-hooks";
|
|
349
|
+
readonly functionName: "getAppConnections";
|
|
350
|
+
readonly commandPath: readonly ["business-hooks", "get-app-connections"];
|
|
351
|
+
readonly method: "GET";
|
|
352
|
+
readonly endpoint: "/api/apps/:app_id/business-hooks/connections";
|
|
353
|
+
readonly endpointParams: readonly ["app_id"];
|
|
354
|
+
readonly controller: "BusinessHooks.GetAppConnections";
|
|
355
|
+
readonly requestType: null;
|
|
356
|
+
readonly scalarParams: readonly [];
|
|
357
|
+
readonly responseType: "BusinessHooksGetAppConnectionsRespVO";
|
|
358
|
+
}, {
|
|
359
|
+
readonly scope: "admin";
|
|
360
|
+
readonly module: "config";
|
|
361
|
+
readonly functionName: "getAWSConfig";
|
|
362
|
+
readonly commandPath: readonly ["config", "get-awsconfig"];
|
|
363
|
+
readonly method: "GET";
|
|
364
|
+
readonly endpoint: "/config/aws";
|
|
365
|
+
readonly endpointParams: readonly [];
|
|
366
|
+
readonly controller: "App.GetAWSConfig";
|
|
367
|
+
readonly requestType: null;
|
|
368
|
+
readonly scalarParams: readonly [];
|
|
369
|
+
readonly responseType: "AWSConfigVO";
|
|
370
|
+
}, {
|
|
371
|
+
readonly scope: "admin";
|
|
372
|
+
readonly module: "dashboard";
|
|
373
|
+
readonly functionName: "createDashboard";
|
|
374
|
+
readonly commandPath: readonly ["dashboard", "create-dashboard"];
|
|
375
|
+
readonly method: "POST";
|
|
376
|
+
readonly endpoint: "/apps/:app_id/dashboard";
|
|
377
|
+
readonly endpointParams: readonly ["app_id"];
|
|
378
|
+
readonly controller: "Dashboard.Create";
|
|
379
|
+
readonly requestType: "DashboardCreateReqVO";
|
|
380
|
+
readonly scalarParams: readonly [];
|
|
381
|
+
readonly responseType: "DashboardCreateRespVO";
|
|
382
|
+
}, {
|
|
383
|
+
readonly scope: "admin";
|
|
384
|
+
readonly module: "dashboard";
|
|
385
|
+
readonly functionName: "getDashboardOptions";
|
|
386
|
+
readonly commandPath: readonly ["dashboard", "get-dashboard-options"];
|
|
387
|
+
readonly method: "GET";
|
|
388
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id/options";
|
|
389
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
390
|
+
readonly controller: "Dashboard.FetchOptions";
|
|
391
|
+
readonly requestType: null;
|
|
392
|
+
readonly scalarParams: readonly [];
|
|
393
|
+
readonly responseType: "DashboardFetchOptionsRespVO";
|
|
394
|
+
}, {
|
|
395
|
+
readonly scope: "admin";
|
|
396
|
+
readonly module: "dashboard";
|
|
397
|
+
readonly functionName: "getDashboardList";
|
|
398
|
+
readonly commandPath: readonly ["dashboard", "get-dashboard-list"];
|
|
399
|
+
readonly method: "GET";
|
|
400
|
+
readonly endpoint: "/apps/:app_id/dashboard";
|
|
401
|
+
readonly endpointParams: readonly ["app_id"];
|
|
402
|
+
readonly controller: "Dashboard.GetList";
|
|
403
|
+
readonly requestType: null;
|
|
404
|
+
readonly scalarParams: readonly [];
|
|
405
|
+
readonly responseType: "DashboardGetListRespVO";
|
|
406
|
+
}, {
|
|
407
|
+
readonly scope: "admin";
|
|
408
|
+
readonly module: "dashboard";
|
|
409
|
+
readonly functionName: "updateDashboardLayout";
|
|
410
|
+
readonly commandPath: readonly ["dashboard", "update-dashboard-layout"];
|
|
411
|
+
readonly method: "PUT";
|
|
412
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id/layout";
|
|
413
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
414
|
+
readonly controller: "Dashboard.UpdateLayout";
|
|
415
|
+
readonly requestType: "DashboardUpdateLayoutReqVO";
|
|
416
|
+
readonly scalarParams: readonly [];
|
|
417
|
+
readonly responseType: "DashboardUpdateLayoutRespVO";
|
|
418
|
+
}, {
|
|
419
|
+
readonly scope: "admin";
|
|
420
|
+
readonly module: "dashboard";
|
|
421
|
+
readonly functionName: "updateDashboardOptions";
|
|
422
|
+
readonly commandPath: readonly ["dashboard", "update-dashboard-options"];
|
|
423
|
+
readonly method: "PUT";
|
|
424
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id/options";
|
|
425
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
426
|
+
readonly controller: "Dashboard.UpdateOptions";
|
|
427
|
+
readonly requestType: "DashboardUpdateOptionsReqVO";
|
|
428
|
+
readonly scalarParams: readonly [];
|
|
429
|
+
readonly responseType: "DashboardUpdateOptionsRespVO";
|
|
430
|
+
}, {
|
|
431
|
+
readonly scope: "admin";
|
|
432
|
+
readonly module: "dashboard";
|
|
433
|
+
readonly functionName: "updateDashboardTitle";
|
|
434
|
+
readonly commandPath: readonly ["dashboard", "update-dashboard-title"];
|
|
435
|
+
readonly method: "PUT";
|
|
436
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id/label";
|
|
437
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
438
|
+
readonly controller: "Dashboard.UpdateTitle";
|
|
439
|
+
readonly requestType: "DashboardUpdateTitleReqVO";
|
|
440
|
+
readonly scalarParams: readonly [];
|
|
441
|
+
readonly responseType: "DashboardUpdateTitleRespVO";
|
|
442
|
+
}, {
|
|
443
|
+
readonly scope: "admin";
|
|
444
|
+
readonly module: "dashboard";
|
|
445
|
+
readonly functionName: "deleteDashboard";
|
|
446
|
+
readonly commandPath: readonly ["dashboard", "delete-dashboard"];
|
|
447
|
+
readonly method: "DELETE";
|
|
448
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id";
|
|
449
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
450
|
+
readonly controller: "Dashboard.Delete";
|
|
451
|
+
readonly requestType: null;
|
|
452
|
+
readonly scalarParams: readonly [];
|
|
453
|
+
readonly responseType: "any";
|
|
454
|
+
}, {
|
|
455
|
+
readonly scope: "admin";
|
|
456
|
+
readonly module: "dashboard";
|
|
457
|
+
readonly functionName: "cloneDashboard";
|
|
458
|
+
readonly commandPath: readonly ["dashboard", "clone-dashboard"];
|
|
459
|
+
readonly method: "POST";
|
|
460
|
+
readonly endpoint: "/apps/:app_id/dashboard/:dashboard_id/clone";
|
|
461
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
462
|
+
readonly controller: "Dashboard.Clone";
|
|
463
|
+
readonly requestType: "{ name: string }";
|
|
464
|
+
readonly scalarParams: readonly [];
|
|
465
|
+
readonly responseType: "any";
|
|
466
|
+
}, {
|
|
467
|
+
readonly scope: "admin";
|
|
468
|
+
readonly module: "dataset";
|
|
469
|
+
readonly functionName: "createNewDataset";
|
|
470
|
+
readonly commandPath: readonly ["dataset", "create-new-dataset"];
|
|
471
|
+
readonly method: "POST";
|
|
472
|
+
readonly endpoint: "/apps/:app_id/dataset";
|
|
473
|
+
readonly endpointParams: readonly ["app_id"];
|
|
474
|
+
readonly controller: "Dataset.CreateDataset";
|
|
475
|
+
readonly requestType: "DatasetCreateDatasetReqVO";
|
|
476
|
+
readonly scalarParams: readonly [{
|
|
477
|
+
readonly name: "endpoint";
|
|
478
|
+
readonly type: "string";
|
|
479
|
+
readonly hasDefault: false;
|
|
480
|
+
}];
|
|
481
|
+
readonly responseType: "DatasetCreateDatasetRespVO";
|
|
482
|
+
}, {
|
|
483
|
+
readonly scope: "admin";
|
|
484
|
+
readonly module: "dataset";
|
|
485
|
+
readonly functionName: "createNewNode";
|
|
486
|
+
readonly commandPath: readonly ["dataset", "create-new-node"];
|
|
487
|
+
readonly method: "POST";
|
|
488
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id";
|
|
489
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
490
|
+
readonly controller: "Dataset.CreateNode";
|
|
491
|
+
readonly requestType: "DatasetCreateNodeReqVO";
|
|
492
|
+
readonly scalarParams: readonly [{
|
|
493
|
+
readonly name: "endpoint";
|
|
494
|
+
readonly type: "string";
|
|
495
|
+
readonly hasDefault: false;
|
|
496
|
+
}, {
|
|
497
|
+
readonly name: "datasetId";
|
|
498
|
+
readonly type: "string";
|
|
499
|
+
readonly hasDefault: false;
|
|
500
|
+
}, {
|
|
501
|
+
readonly name: "parentId";
|
|
502
|
+
readonly type: "string";
|
|
503
|
+
readonly hasDefault: false;
|
|
504
|
+
}];
|
|
505
|
+
readonly responseType: "DatasetCreateNodeRespVO";
|
|
506
|
+
}, {
|
|
507
|
+
readonly scope: "admin";
|
|
508
|
+
readonly module: "dataset";
|
|
509
|
+
readonly functionName: "deleteSingleNode";
|
|
510
|
+
readonly commandPath: readonly ["dataset", "delete-single-node"];
|
|
511
|
+
readonly method: "DELETE";
|
|
512
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id";
|
|
513
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
514
|
+
readonly controller: "Dataset.Delete";
|
|
515
|
+
readonly requestType: null;
|
|
516
|
+
readonly scalarParams: readonly [{
|
|
517
|
+
readonly name: "endpoint";
|
|
518
|
+
readonly type: "string";
|
|
519
|
+
readonly hasDefault: false;
|
|
520
|
+
}, {
|
|
521
|
+
readonly name: "datasetId";
|
|
522
|
+
readonly type: "string";
|
|
523
|
+
readonly hasDefault: false;
|
|
524
|
+
}];
|
|
525
|
+
readonly responseType: "DatasetDeleteRespVO";
|
|
526
|
+
}, {
|
|
527
|
+
readonly scope: "admin";
|
|
528
|
+
readonly module: "dataset";
|
|
529
|
+
readonly functionName: "deleteSingleDataset";
|
|
530
|
+
readonly commandPath: readonly ["dataset", "delete-single-dataset"];
|
|
531
|
+
readonly method: "DELETE";
|
|
532
|
+
readonly endpoint: "/apps/:app_id/dataset/:id";
|
|
533
|
+
readonly endpointParams: readonly ["app_id", "id"];
|
|
534
|
+
readonly controller: "Dataset.DeleteDataset";
|
|
535
|
+
readonly requestType: null;
|
|
536
|
+
readonly scalarParams: readonly [{
|
|
537
|
+
readonly name: "endpoint";
|
|
538
|
+
readonly type: "string";
|
|
539
|
+
readonly hasDefault: false;
|
|
540
|
+
}, {
|
|
541
|
+
readonly name: "datasetId";
|
|
542
|
+
readonly type: "string";
|
|
543
|
+
readonly hasDefault: false;
|
|
544
|
+
}];
|
|
545
|
+
readonly responseType: "DatasetDeleteDatasetRespVO";
|
|
546
|
+
}, {
|
|
547
|
+
readonly scope: "admin";
|
|
548
|
+
readonly module: "dataset";
|
|
549
|
+
readonly functionName: "exportSingleDataset";
|
|
550
|
+
readonly commandPath: readonly ["dataset", "export-single-dataset"];
|
|
551
|
+
readonly method: "POST";
|
|
552
|
+
readonly endpoint: "/apps/:app_id/dataset/export/:id";
|
|
553
|
+
readonly endpointParams: readonly ["app_id", "id"];
|
|
554
|
+
readonly controller: "Dataset.Export";
|
|
555
|
+
readonly requestType: null;
|
|
556
|
+
readonly scalarParams: readonly [{
|
|
557
|
+
readonly name: "endpoint";
|
|
558
|
+
readonly type: "string";
|
|
559
|
+
readonly hasDefault: false;
|
|
560
|
+
}, {
|
|
561
|
+
readonly name: "datasetId";
|
|
562
|
+
readonly type: "string";
|
|
563
|
+
readonly hasDefault: false;
|
|
564
|
+
}];
|
|
565
|
+
readonly responseType: "DatasetExportRespVO";
|
|
566
|
+
}, {
|
|
567
|
+
readonly scope: "admin";
|
|
568
|
+
readonly module: "dataset";
|
|
569
|
+
readonly functionName: "getChildNode";
|
|
570
|
+
readonly commandPath: readonly ["dataset", "get-child-node"];
|
|
571
|
+
readonly method: "GET";
|
|
572
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id/child";
|
|
573
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
574
|
+
readonly controller: "Dataset.GetChild";
|
|
575
|
+
readonly requestType: null;
|
|
576
|
+
readonly scalarParams: readonly [{
|
|
577
|
+
readonly name: "endpoint";
|
|
578
|
+
readonly type: "string";
|
|
579
|
+
readonly hasDefault: false;
|
|
580
|
+
}, {
|
|
581
|
+
readonly name: "datasetId";
|
|
582
|
+
readonly type: "string";
|
|
583
|
+
readonly hasDefault: false;
|
|
584
|
+
}, {
|
|
585
|
+
readonly name: "parentId";
|
|
586
|
+
readonly type: "string";
|
|
587
|
+
readonly hasDefault: false;
|
|
588
|
+
}];
|
|
589
|
+
readonly responseType: "DatasetRow[]";
|
|
590
|
+
}, {
|
|
591
|
+
readonly scope: "admin";
|
|
592
|
+
readonly module: "dataset";
|
|
593
|
+
readonly functionName: "getSingleNode";
|
|
594
|
+
readonly commandPath: readonly ["dataset", "get-single-node"];
|
|
595
|
+
readonly method: "GET";
|
|
596
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id";
|
|
597
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
598
|
+
readonly controller: "Dataset.GetNode";
|
|
599
|
+
readonly requestType: null;
|
|
600
|
+
readonly scalarParams: readonly [{
|
|
601
|
+
readonly name: "endpoint";
|
|
602
|
+
readonly type: "string";
|
|
603
|
+
readonly hasDefault: false;
|
|
604
|
+
}, {
|
|
605
|
+
readonly name: "datasetId";
|
|
606
|
+
readonly type: "string";
|
|
607
|
+
readonly hasDefault: false;
|
|
608
|
+
}];
|
|
609
|
+
readonly responseType: "DatasetGetNodeRespVO";
|
|
610
|
+
}, {
|
|
611
|
+
readonly scope: "admin";
|
|
612
|
+
readonly module: "dataset";
|
|
613
|
+
readonly functionName: "importNewDataset";
|
|
614
|
+
readonly commandPath: readonly ["dataset", "import-new-dataset"];
|
|
615
|
+
readonly method: "POST";
|
|
616
|
+
readonly endpoint: "/apps/:app_id/dataset/import";
|
|
617
|
+
readonly endpointParams: readonly ["app_id"];
|
|
618
|
+
readonly controller: "Dataset.Import";
|
|
619
|
+
readonly requestType: "DatasetImportReqVO";
|
|
620
|
+
readonly scalarParams: readonly [{
|
|
621
|
+
readonly name: "endpoint";
|
|
622
|
+
readonly type: "string";
|
|
623
|
+
readonly hasDefault: false;
|
|
624
|
+
}];
|
|
625
|
+
readonly responseType: "void";
|
|
626
|
+
}, {
|
|
627
|
+
readonly scope: "admin";
|
|
628
|
+
readonly module: "dataset";
|
|
629
|
+
readonly functionName: "listAllDatasets";
|
|
630
|
+
readonly commandPath: readonly ["dataset", "list-all-datasets"];
|
|
631
|
+
readonly method: "GET";
|
|
632
|
+
readonly endpoint: "/apps/:app_id/dataset";
|
|
633
|
+
readonly endpointParams: readonly ["app_id"];
|
|
634
|
+
readonly controller: "Dataset.List";
|
|
635
|
+
readonly requestType: null;
|
|
636
|
+
readonly scalarParams: readonly [{
|
|
637
|
+
readonly name: "endpoint";
|
|
638
|
+
readonly type: "string";
|
|
639
|
+
readonly hasDefault: false;
|
|
640
|
+
}];
|
|
641
|
+
readonly responseType: "DatasetListRespVO";
|
|
642
|
+
}, {
|
|
643
|
+
readonly scope: "admin";
|
|
644
|
+
readonly module: "dataset";
|
|
645
|
+
readonly functionName: "moveSingleNode";
|
|
646
|
+
readonly commandPath: readonly ["dataset", "move-single-node"];
|
|
647
|
+
readonly method: "PUT";
|
|
648
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id/move";
|
|
649
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
650
|
+
readonly controller: "Dataset.Move";
|
|
651
|
+
readonly requestType: "DatasetMoveReqVO";
|
|
652
|
+
readonly scalarParams: readonly [{
|
|
653
|
+
readonly name: "endpoint";
|
|
654
|
+
readonly type: "string";
|
|
655
|
+
readonly hasDefault: false;
|
|
656
|
+
}, {
|
|
657
|
+
readonly name: "datasetId";
|
|
658
|
+
readonly type: "string";
|
|
659
|
+
readonly hasDefault: false;
|
|
660
|
+
}];
|
|
661
|
+
readonly responseType: "DatasetMoveRespVO";
|
|
662
|
+
}, {
|
|
663
|
+
readonly scope: "admin";
|
|
664
|
+
readonly module: "dataset";
|
|
665
|
+
readonly functionName: "updateSingleNode";
|
|
666
|
+
readonly commandPath: readonly ["dataset", "update-single-node"];
|
|
667
|
+
readonly method: "PUT";
|
|
668
|
+
readonly endpoint: "/apps/:app_id/dataset/:id/:node_id";
|
|
669
|
+
readonly endpointParams: readonly ["app_id", "id", "node_id"];
|
|
670
|
+
readonly controller: "Dataset.Update";
|
|
671
|
+
readonly requestType: "DatasetUpdateReqVO";
|
|
672
|
+
readonly scalarParams: readonly [{
|
|
673
|
+
readonly name: "endpoint";
|
|
674
|
+
readonly type: "string";
|
|
675
|
+
readonly hasDefault: false;
|
|
676
|
+
}, {
|
|
677
|
+
readonly name: "datasetId";
|
|
678
|
+
readonly type: "string";
|
|
679
|
+
readonly hasDefault: false;
|
|
680
|
+
}];
|
|
681
|
+
readonly responseType: "DatasetUpdateRespVO";
|
|
682
|
+
}, {
|
|
683
|
+
readonly scope: "admin";
|
|
684
|
+
readonly module: "departments";
|
|
685
|
+
readonly functionName: "adminAddDepartment";
|
|
686
|
+
readonly commandPath: readonly ["departments", "admin-add-department"];
|
|
687
|
+
readonly method: "POST";
|
|
688
|
+
readonly endpoint: "/organization/departments/add";
|
|
689
|
+
readonly endpointParams: readonly [];
|
|
690
|
+
readonly controller: "Departments.Add";
|
|
691
|
+
readonly requestType: "DepartmentsAddReqVO";
|
|
692
|
+
readonly scalarParams: readonly [];
|
|
693
|
+
readonly responseType: "DepartmentsAddRespVO";
|
|
694
|
+
}, {
|
|
695
|
+
readonly scope: "admin";
|
|
696
|
+
readonly module: "departments";
|
|
697
|
+
readonly functionName: "adminAddActor";
|
|
698
|
+
readonly commandPath: readonly ["departments", "admin-add-actor"];
|
|
699
|
+
readonly method: "POST";
|
|
700
|
+
readonly endpoint: "/organization/actors/add";
|
|
701
|
+
readonly endpointParams: readonly [];
|
|
702
|
+
readonly controller: "Departments.AddActor";
|
|
703
|
+
readonly requestType: "DepartmentsAddActorReqVO";
|
|
704
|
+
readonly scalarParams: readonly [];
|
|
705
|
+
readonly responseType: "DepartmentsAddActorRespVO";
|
|
706
|
+
}, {
|
|
707
|
+
readonly scope: "admin";
|
|
708
|
+
readonly module: "departments";
|
|
709
|
+
readonly functionName: "adminCreateServiceAccount";
|
|
710
|
+
readonly commandPath: readonly ["departments", "admin-create-service-account"];
|
|
711
|
+
readonly method: "POST";
|
|
712
|
+
readonly endpoint: "/organization/service-account/create";
|
|
713
|
+
readonly endpointParams: readonly [];
|
|
714
|
+
readonly controller: "Departments.CreateServiceAccount";
|
|
715
|
+
readonly requestType: "DepartmentsCreateServiceAccountReqVO";
|
|
716
|
+
readonly scalarParams: readonly [];
|
|
717
|
+
readonly responseType: "DepartmentsCreateServiceAccountRespVO";
|
|
718
|
+
}, {
|
|
719
|
+
readonly scope: "admin";
|
|
720
|
+
readonly module: "departments";
|
|
721
|
+
readonly functionName: "adminDeleteDepartment";
|
|
722
|
+
readonly commandPath: readonly ["departments", "admin-delete-department"];
|
|
723
|
+
readonly method: "DELETE";
|
|
724
|
+
readonly endpoint: "/organization/departments/:id";
|
|
725
|
+
readonly endpointParams: readonly ["id"];
|
|
726
|
+
readonly controller: "Departments.Delete";
|
|
727
|
+
readonly requestType: null;
|
|
728
|
+
readonly scalarParams: readonly [];
|
|
729
|
+
readonly responseType: "DepartmentsDeleteRespVO";
|
|
730
|
+
}, {
|
|
731
|
+
readonly scope: "admin";
|
|
732
|
+
readonly module: "departments";
|
|
733
|
+
readonly functionName: "adminDeleteActor";
|
|
734
|
+
readonly commandPath: readonly ["departments", "admin-delete-actor"];
|
|
735
|
+
readonly method: "POST";
|
|
736
|
+
readonly endpoint: "/organization/actors/delete";
|
|
737
|
+
readonly endpointParams: readonly [];
|
|
738
|
+
readonly controller: "Departments.DeleteActor";
|
|
739
|
+
readonly requestType: "DepartmentsDeleteActorReqVO";
|
|
740
|
+
readonly scalarParams: readonly [];
|
|
741
|
+
readonly responseType: "DepartmentsGetActorsRespVO";
|
|
742
|
+
}, {
|
|
743
|
+
readonly scope: "admin";
|
|
744
|
+
readonly module: "departments";
|
|
745
|
+
readonly functionName: "adminDeleteUser";
|
|
746
|
+
readonly commandPath: readonly ["departments", "admin-delete-user"];
|
|
747
|
+
readonly method: "DELETE";
|
|
748
|
+
readonly endpoint: "/organization/users/:tenant_user_id";
|
|
749
|
+
readonly endpointParams: readonly ["tenant_user_id"];
|
|
750
|
+
readonly controller: "Departments.DeleteUser";
|
|
751
|
+
readonly requestType: null;
|
|
752
|
+
readonly scalarParams: readonly [];
|
|
753
|
+
readonly responseType: "DepartmentsDeleteUserRespVO";
|
|
754
|
+
}, {
|
|
755
|
+
readonly scope: "admin";
|
|
756
|
+
readonly module: "departments";
|
|
757
|
+
readonly functionName: "adminChangeEmployeeAccountPassword";
|
|
758
|
+
readonly commandPath: readonly ["departments", "admin-change-employee-account-password"];
|
|
759
|
+
readonly method: "POST";
|
|
760
|
+
readonly endpoint: "/organization/employee-account/changePassword";
|
|
761
|
+
readonly endpointParams: readonly [];
|
|
762
|
+
readonly controller: "Departments.EmployeeAccountChangePassword";
|
|
763
|
+
readonly requestType: "DepartmentsEmployeeAccountChangePasswordReqVO";
|
|
764
|
+
readonly scalarParams: readonly [];
|
|
765
|
+
readonly responseType: "DepartmentsEmployeeAccountChangePasswordRespVO";
|
|
766
|
+
}, {
|
|
767
|
+
readonly scope: "admin";
|
|
768
|
+
readonly module: "departments";
|
|
769
|
+
readonly functionName: "adminCreateEmployeeAccount";
|
|
770
|
+
readonly commandPath: readonly ["departments", "admin-create-employee-account"];
|
|
771
|
+
readonly method: "POST";
|
|
772
|
+
readonly endpoint: "/organization/employee-account/create";
|
|
773
|
+
readonly endpointParams: readonly [];
|
|
774
|
+
readonly controller: "Departments.EmployeeAccountCreate";
|
|
775
|
+
readonly requestType: "DepartmentsEmployeeAccountCreateReqVO";
|
|
776
|
+
readonly scalarParams: readonly [];
|
|
777
|
+
readonly responseType: "DepartmentsEmployeeAccountCreateRespVO";
|
|
778
|
+
}, {
|
|
779
|
+
readonly scope: "admin";
|
|
780
|
+
readonly module: "departments";
|
|
781
|
+
readonly functionName: "adminGetActors";
|
|
782
|
+
readonly commandPath: readonly ["departments", "admin-get-actors"];
|
|
783
|
+
readonly method: "POST";
|
|
784
|
+
readonly endpoint: "/organization/actors/list";
|
|
785
|
+
readonly endpointParams: readonly [];
|
|
786
|
+
readonly controller: "Departments.GetActors";
|
|
787
|
+
readonly requestType: null;
|
|
788
|
+
readonly scalarParams: readonly [];
|
|
789
|
+
readonly responseType: "DepartmentsGetActorsRespVO";
|
|
790
|
+
}, {
|
|
791
|
+
readonly scope: "admin";
|
|
792
|
+
readonly module: "departments";
|
|
793
|
+
readonly functionName: "adminGetDepartmentPolicy";
|
|
794
|
+
readonly commandPath: readonly ["departments", "admin-get-department-policy"];
|
|
795
|
+
readonly method: "GET";
|
|
796
|
+
readonly endpoint: "/organization/department-policy/:id";
|
|
797
|
+
readonly endpointParams: readonly ["id"];
|
|
798
|
+
readonly controller: "Departments.GetDeptPolicy";
|
|
799
|
+
readonly requestType: null;
|
|
800
|
+
readonly scalarParams: readonly [];
|
|
801
|
+
readonly responseType: "DepartmentsGetDeptPolicyRespVO";
|
|
802
|
+
}, {
|
|
803
|
+
readonly scope: "admin";
|
|
804
|
+
readonly module: "departments";
|
|
805
|
+
readonly functionName: "adminGetDepartmentList";
|
|
806
|
+
readonly commandPath: readonly ["departments", "admin-get-department-list"];
|
|
807
|
+
readonly method: "POST";
|
|
808
|
+
readonly endpoint: "/organization/departments/list";
|
|
809
|
+
readonly endpointParams: readonly [];
|
|
810
|
+
readonly controller: "Departments.GetList";
|
|
811
|
+
readonly requestType: null;
|
|
812
|
+
readonly scalarParams: readonly [{
|
|
813
|
+
readonly name: "ids";
|
|
814
|
+
readonly type: "number[]";
|
|
815
|
+
readonly hasDefault: true;
|
|
816
|
+
}];
|
|
817
|
+
readonly responseType: "DepartmentsGetListRespVO";
|
|
818
|
+
}, {
|
|
819
|
+
readonly scope: "admin";
|
|
820
|
+
readonly module: "departments";
|
|
821
|
+
readonly functionName: "getOrganizationTree";
|
|
822
|
+
readonly commandPath: readonly ["departments", "get-organization-tree"];
|
|
823
|
+
readonly method: "POST";
|
|
824
|
+
readonly endpoint: "/organization/departments/tree";
|
|
825
|
+
readonly endpointParams: readonly [];
|
|
826
|
+
readonly controller: "UserAction.GetOrganizationTree";
|
|
827
|
+
readonly requestType: null;
|
|
828
|
+
readonly scalarParams: readonly [{
|
|
829
|
+
readonly name: "parentId";
|
|
830
|
+
readonly type: "number";
|
|
831
|
+
readonly hasDefault: true;
|
|
832
|
+
}];
|
|
833
|
+
readonly responseType: "GetOrganizationTreeRespVO";
|
|
834
|
+
}, {
|
|
835
|
+
readonly scope: "admin";
|
|
836
|
+
readonly module: "departments";
|
|
837
|
+
readonly functionName: "adminGetOrganizationUsers";
|
|
838
|
+
readonly commandPath: readonly ["departments", "admin-get-organization-users"];
|
|
839
|
+
readonly method: "POST";
|
|
840
|
+
readonly endpoint: "/organization/list-users";
|
|
841
|
+
readonly endpointParams: readonly [];
|
|
842
|
+
readonly controller: "Departments.GetOrganizationUsers";
|
|
843
|
+
readonly requestType: "DepartmentsGetOrganizationUsersReqVO";
|
|
844
|
+
readonly scalarParams: readonly [];
|
|
845
|
+
readonly responseType: "DepartmentsGetOrganizationUsersRespVO";
|
|
846
|
+
}, {
|
|
847
|
+
readonly scope: "admin";
|
|
848
|
+
readonly module: "departments";
|
|
849
|
+
readonly functionName: "adminGetStaffUser";
|
|
850
|
+
readonly commandPath: readonly ["departments", "admin-get-staff-user"];
|
|
851
|
+
readonly method: "GET";
|
|
852
|
+
readonly endpoint: "/organization/users/:tenant_user_id";
|
|
853
|
+
readonly endpointParams: readonly ["tenant_user_id"];
|
|
854
|
+
readonly controller: "Departments.GetUser";
|
|
855
|
+
readonly requestType: null;
|
|
856
|
+
readonly scalarParams: readonly [];
|
|
857
|
+
readonly responseType: "DepartmentsGetUserRespVO";
|
|
858
|
+
}, {
|
|
859
|
+
readonly scope: "admin";
|
|
860
|
+
readonly module: "departments";
|
|
861
|
+
readonly functionName: "adminGetInviteCodeHistory";
|
|
862
|
+
readonly commandPath: readonly ["departments", "admin-get-invite-code-history"];
|
|
863
|
+
readonly method: "POST";
|
|
864
|
+
readonly endpoint: "/organization/invite/invite-code-history";
|
|
865
|
+
readonly endpointParams: readonly [];
|
|
866
|
+
readonly controller: "Departments.InviteCodeHistory";
|
|
867
|
+
readonly requestType: "DepartmentsInviteCodeHistoryReqVO";
|
|
868
|
+
readonly scalarParams: readonly [];
|
|
869
|
+
readonly responseType: "DepartmentsInviteCodeHistoryRespVO";
|
|
870
|
+
}, {
|
|
871
|
+
readonly scope: "admin";
|
|
872
|
+
readonly module: "departments";
|
|
873
|
+
readonly functionName: "adminSwitchInviteCode";
|
|
874
|
+
readonly commandPath: readonly ["departments", "admin-switch-invite-code"];
|
|
875
|
+
readonly method: "POST";
|
|
876
|
+
readonly endpoint: "/organization/invite/invite-code-switch";
|
|
877
|
+
readonly endpointParams: readonly [];
|
|
878
|
+
readonly controller: "Departments.InviteCodeSwtich";
|
|
879
|
+
readonly requestType: "DepartmentsInviteCodeSwitchReqVO";
|
|
880
|
+
readonly scalarParams: readonly [];
|
|
881
|
+
readonly responseType: "DepartmentsInviteCodeSwitchRespVO";
|
|
882
|
+
}, {
|
|
883
|
+
readonly scope: "admin";
|
|
884
|
+
readonly module: "departments";
|
|
885
|
+
readonly functionName: "adminInviteUserOneByOne";
|
|
886
|
+
readonly commandPath: readonly ["departments", "admin-invite-user-one-by-one"];
|
|
887
|
+
readonly method: "POST";
|
|
888
|
+
readonly endpoint: "/organization/invite/one-by-one";
|
|
889
|
+
readonly endpointParams: readonly [];
|
|
890
|
+
readonly controller: "Departments.InviteOneByOne";
|
|
891
|
+
readonly requestType: "DepartmentsInviteOneByOneReqVO";
|
|
892
|
+
readonly scalarParams: readonly [];
|
|
893
|
+
readonly responseType: "DepartmentsInviteOneByOneRespVO";
|
|
894
|
+
}, {
|
|
895
|
+
readonly scope: "admin";
|
|
896
|
+
readonly module: "departments";
|
|
897
|
+
readonly functionName: "adminMakeInviteLink";
|
|
898
|
+
readonly commandPath: readonly ["departments", "admin-make-invite-link"];
|
|
899
|
+
readonly method: "POST";
|
|
900
|
+
readonly endpoint: "/organization/invite/make-link";
|
|
901
|
+
readonly endpointParams: readonly [];
|
|
902
|
+
readonly controller: "Departments.MakeLink";
|
|
903
|
+
readonly requestType: "DepartmentsMakeLinkReqVO";
|
|
904
|
+
readonly scalarParams: readonly [];
|
|
905
|
+
readonly responseType: "DepartmentsMakeLinkRespVO";
|
|
906
|
+
}, {
|
|
907
|
+
readonly scope: "admin";
|
|
908
|
+
readonly module: "departments";
|
|
909
|
+
readonly functionName: "adminRelocateDepartment";
|
|
910
|
+
readonly commandPath: readonly ["departments", "admin-relocate-department"];
|
|
911
|
+
readonly method: "PUT";
|
|
912
|
+
readonly endpoint: "/organization/departments/:id/relocate";
|
|
913
|
+
readonly endpointParams: readonly ["id"];
|
|
914
|
+
readonly controller: "Departments.Relocate";
|
|
915
|
+
readonly requestType: "DepartmentsRelocateReqVO";
|
|
916
|
+
readonly scalarParams: readonly [];
|
|
917
|
+
readonly responseType: "DepartmentsRelocateRespVO";
|
|
918
|
+
}, {
|
|
919
|
+
readonly scope: "admin";
|
|
920
|
+
readonly module: "departments";
|
|
921
|
+
readonly functionName: "adminRenameDepartment";
|
|
922
|
+
readonly commandPath: readonly ["departments", "admin-rename-department"];
|
|
923
|
+
readonly method: "PUT";
|
|
924
|
+
readonly endpoint: "/organization/departments/:id/rename";
|
|
925
|
+
readonly endpointParams: readonly ["id"];
|
|
926
|
+
readonly controller: "Departments.Rename";
|
|
927
|
+
readonly requestType: "DepartmentsRenameReqVO";
|
|
928
|
+
readonly scalarParams: readonly [];
|
|
929
|
+
readonly responseType: "DepartmentsRenameRespVO";
|
|
930
|
+
}, {
|
|
931
|
+
readonly scope: "admin";
|
|
932
|
+
readonly module: "departments";
|
|
933
|
+
readonly functionName: "adminResendInvite";
|
|
934
|
+
readonly commandPath: readonly ["departments", "admin-resend-invite"];
|
|
935
|
+
readonly method: "POST";
|
|
936
|
+
readonly endpoint: "/organization/invite/resend";
|
|
937
|
+
readonly endpointParams: readonly [];
|
|
938
|
+
readonly controller: "Departments.ResendInvite";
|
|
939
|
+
readonly requestType: "DepartmentsResendInviteReqVO";
|
|
940
|
+
readonly scalarParams: readonly [];
|
|
941
|
+
readonly responseType: "DepartmentsResendInviteRespVO";
|
|
942
|
+
}, {
|
|
943
|
+
readonly scope: "admin";
|
|
944
|
+
readonly module: "departments";
|
|
945
|
+
readonly functionName: "adminSetDepartmentPolicy";
|
|
946
|
+
readonly commandPath: readonly ["departments", "admin-set-department-policy"];
|
|
947
|
+
readonly method: "PUT";
|
|
948
|
+
readonly endpoint: "/organization/department-policy/:id";
|
|
949
|
+
readonly endpointParams: readonly ["id"];
|
|
950
|
+
readonly controller: "Departments.SetDeptPolicy";
|
|
951
|
+
readonly requestType: "DepartmentsSetDeptPolicyReqVO";
|
|
952
|
+
readonly scalarParams: readonly [];
|
|
953
|
+
readonly responseType: "DepartmentsSetDeptPolicyRespVO";
|
|
954
|
+
}, {
|
|
955
|
+
readonly scope: "admin";
|
|
956
|
+
readonly module: "departments";
|
|
957
|
+
readonly functionName: "adminUpdateStaffUser";
|
|
958
|
+
readonly commandPath: readonly ["departments", "admin-update-staff-user"];
|
|
959
|
+
readonly method: "PUT";
|
|
960
|
+
readonly endpoint: "/organization/users/:tenant_user_id";
|
|
961
|
+
readonly endpointParams: readonly ["tenant_user_id"];
|
|
962
|
+
readonly controller: "Departments.UpdateUser";
|
|
963
|
+
readonly requestType: "DepartmentsUpdateUserReqVO";
|
|
964
|
+
readonly scalarParams: readonly [];
|
|
965
|
+
readonly responseType: "DepartmentsUpdateUserRespVO";
|
|
966
|
+
}, {
|
|
967
|
+
readonly scope: "admin";
|
|
968
|
+
readonly module: "developer";
|
|
969
|
+
readonly functionName: "queryDeveloperClients";
|
|
970
|
+
readonly commandPath: readonly ["developer", "query-developer-clients"];
|
|
971
|
+
readonly method: "GET";
|
|
972
|
+
readonly endpoint: "/developer/clients";
|
|
973
|
+
readonly endpointParams: readonly [];
|
|
974
|
+
readonly controller: "Developer.ClientQuery";
|
|
975
|
+
readonly requestType: null;
|
|
976
|
+
readonly scalarParams: readonly [];
|
|
977
|
+
readonly responseType: "DeveloperClientQueryRespVO";
|
|
978
|
+
}, {
|
|
979
|
+
readonly scope: "admin";
|
|
980
|
+
readonly module: "developer";
|
|
981
|
+
readonly functionName: "createDeveloperClient";
|
|
982
|
+
readonly commandPath: readonly ["developer", "create-developer-client"];
|
|
983
|
+
readonly method: "POST";
|
|
984
|
+
readonly endpoint: "/developer/clients";
|
|
985
|
+
readonly endpointParams: readonly [];
|
|
986
|
+
readonly controller: "Developer.ClientCreate";
|
|
987
|
+
readonly requestType: "DeveloperClientCreateReqVO";
|
|
988
|
+
readonly scalarParams: readonly [];
|
|
989
|
+
readonly responseType: "DeveloperClientCreateRespVO";
|
|
990
|
+
}, {
|
|
991
|
+
readonly scope: "admin";
|
|
992
|
+
readonly module: "developer";
|
|
993
|
+
readonly functionName: "getDeveloperClient";
|
|
994
|
+
readonly commandPath: readonly ["developer", "get-developer-client"];
|
|
995
|
+
readonly method: "GET";
|
|
996
|
+
readonly endpoint: "/developer/clients/:hash_id";
|
|
997
|
+
readonly endpointParams: readonly ["hash_id"];
|
|
998
|
+
readonly controller: "Developer.ClientGet";
|
|
999
|
+
readonly requestType: null;
|
|
1000
|
+
readonly scalarParams: readonly [];
|
|
1001
|
+
readonly responseType: "DeveloperClientGetRespVO";
|
|
1002
|
+
}, {
|
|
1003
|
+
readonly scope: "admin";
|
|
1004
|
+
readonly module: "developer";
|
|
1005
|
+
readonly functionName: "updateDeveloperClient";
|
|
1006
|
+
readonly commandPath: readonly ["developer", "update-developer-client"];
|
|
1007
|
+
readonly method: "PUT";
|
|
1008
|
+
readonly endpoint: "/developer/clients/:hash_id";
|
|
1009
|
+
readonly endpointParams: readonly ["hash_id"];
|
|
1010
|
+
readonly controller: "Developer.ClientUpdate";
|
|
1011
|
+
readonly requestType: "DeveloperClientUpdateReqVO";
|
|
1012
|
+
readonly scalarParams: readonly [];
|
|
1013
|
+
readonly responseType: "DeveloperClientUpdateRespVO";
|
|
1014
|
+
}, {
|
|
1015
|
+
readonly scope: "admin";
|
|
1016
|
+
readonly module: "developer";
|
|
1017
|
+
readonly functionName: "deleteDeveloperClient";
|
|
1018
|
+
readonly commandPath: readonly ["developer", "delete-developer-client"];
|
|
1019
|
+
readonly method: "DELETE";
|
|
1020
|
+
readonly endpoint: "/developer/clients/:hash_id";
|
|
1021
|
+
readonly endpointParams: readonly ["hash_id"];
|
|
1022
|
+
readonly controller: "Developer.ClientDelete";
|
|
1023
|
+
readonly requestType: null;
|
|
1024
|
+
readonly scalarParams: readonly [];
|
|
1025
|
+
readonly responseType: "string";
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly scope: "admin";
|
|
1028
|
+
readonly module: "developer";
|
|
1029
|
+
readonly functionName: "createDeveloperClientSecret";
|
|
1030
|
+
readonly commandPath: readonly ["developer", "create-developer-client-secret"];
|
|
1031
|
+
readonly method: "POST";
|
|
1032
|
+
readonly endpoint: "/developer/clients/:hash_id/secrets";
|
|
1033
|
+
readonly endpointParams: readonly ["hash_id"];
|
|
1034
|
+
readonly controller: "Developer.ClientSecretCreate";
|
|
1035
|
+
readonly requestType: null;
|
|
1036
|
+
readonly scalarParams: readonly [];
|
|
1037
|
+
readonly responseType: "DeveloperClientSecretCreateRespVO";
|
|
1038
|
+
}, {
|
|
1039
|
+
readonly scope: "admin";
|
|
1040
|
+
readonly module: "developer";
|
|
1041
|
+
readonly functionName: "listDeveloperClientSecrets";
|
|
1042
|
+
readonly commandPath: readonly ["developer", "list-developer-client-secrets"];
|
|
1043
|
+
readonly method: "GET";
|
|
1044
|
+
readonly endpoint: "/developer/clients/:hash_id/secrets";
|
|
1045
|
+
readonly endpointParams: readonly ["hash_id"];
|
|
1046
|
+
readonly controller: "Developer.ClientSecretList";
|
|
1047
|
+
readonly requestType: null;
|
|
1048
|
+
readonly scalarParams: readonly [];
|
|
1049
|
+
readonly responseType: "DeveloperClientSecretListRespVO";
|
|
1050
|
+
}, {
|
|
1051
|
+
readonly scope: "admin";
|
|
1052
|
+
readonly module: "developer";
|
|
1053
|
+
readonly functionName: "revokeDeveloperClientSecret";
|
|
1054
|
+
readonly commandPath: readonly ["developer", "revoke-developer-client-secret"];
|
|
1055
|
+
readonly method: "DELETE";
|
|
1056
|
+
readonly endpoint: "/developer/clients/:hash_id/secrets/:secret_id";
|
|
1057
|
+
readonly endpointParams: readonly ["hash_id", "secret_id"];
|
|
1058
|
+
readonly controller: "Developer.ClientSecretRevoke";
|
|
1059
|
+
readonly requestType: null;
|
|
1060
|
+
readonly scalarParams: readonly [];
|
|
1061
|
+
readonly responseType: "number";
|
|
1062
|
+
}, {
|
|
1063
|
+
readonly scope: "admin";
|
|
1064
|
+
readonly module: "developer";
|
|
1065
|
+
readonly functionName: "queryClientHooklets";
|
|
1066
|
+
readonly commandPath: readonly ["developer", "query-client-hooklets"];
|
|
1067
|
+
readonly method: "GET";
|
|
1068
|
+
readonly endpoint: "/developer/clients/:client_hash_id/hooklets";
|
|
1069
|
+
readonly endpointParams: readonly ["client_hash_id"];
|
|
1070
|
+
readonly controller: "Developer.ClientHookletQuery";
|
|
1071
|
+
readonly requestType: null;
|
|
1072
|
+
readonly scalarParams: readonly [];
|
|
1073
|
+
readonly responseType: "DeveloperHookletQueryRespVO";
|
|
1074
|
+
}, {
|
|
1075
|
+
readonly scope: "admin";
|
|
1076
|
+
readonly module: "developer";
|
|
1077
|
+
readonly functionName: "createClientHooklet";
|
|
1078
|
+
readonly commandPath: readonly ["developer", "create-client-hooklet"];
|
|
1079
|
+
readonly method: "POST";
|
|
1080
|
+
readonly endpoint: "/developer/clients/:client_hash_id/hooklets";
|
|
1081
|
+
readonly endpointParams: readonly ["client_hash_id"];
|
|
1082
|
+
readonly controller: "Developer.ClientHookletCreate";
|
|
1083
|
+
readonly requestType: "DeveloperHookletCreateReqVO";
|
|
1084
|
+
readonly scalarParams: readonly [];
|
|
1085
|
+
readonly responseType: "DeveloperHookletCreateRespVO";
|
|
1086
|
+
}, {
|
|
1087
|
+
readonly scope: "admin";
|
|
1088
|
+
readonly module: "developer";
|
|
1089
|
+
readonly functionName: "getClientHooklet";
|
|
1090
|
+
readonly commandPath: readonly ["developer", "get-client-hooklet"];
|
|
1091
|
+
readonly method: "GET";
|
|
1092
|
+
readonly endpoint: "/developer/clients/:client_hash_id/hooklets/:hash_id";
|
|
1093
|
+
readonly endpointParams: readonly ["client_hash_id", "hash_id"];
|
|
1094
|
+
readonly controller: "Developer.ClientHookletGet";
|
|
1095
|
+
readonly requestType: null;
|
|
1096
|
+
readonly scalarParams: readonly [{
|
|
1097
|
+
readonly name: "hookletHashId";
|
|
1098
|
+
readonly type: "string";
|
|
1099
|
+
readonly hasDefault: false;
|
|
1100
|
+
}];
|
|
1101
|
+
readonly responseType: "DeveloperHookletGetRespVO";
|
|
1102
|
+
}, {
|
|
1103
|
+
readonly scope: "admin";
|
|
1104
|
+
readonly module: "developer";
|
|
1105
|
+
readonly functionName: "updateClientHooklet";
|
|
1106
|
+
readonly commandPath: readonly ["developer", "update-client-hooklet"];
|
|
1107
|
+
readonly method: "PUT";
|
|
1108
|
+
readonly endpoint: "/developer/clients/:client_hash_id/hooklets/:hash_id";
|
|
1109
|
+
readonly endpointParams: readonly ["client_hash_id", "hash_id"];
|
|
1110
|
+
readonly controller: "Developer.ClientHookletUpdate";
|
|
1111
|
+
readonly requestType: "DeveloperHookletUpdateReqVO";
|
|
1112
|
+
readonly scalarParams: readonly [{
|
|
1113
|
+
readonly name: "hookletHashId";
|
|
1114
|
+
readonly type: "string";
|
|
1115
|
+
readonly hasDefault: false;
|
|
1116
|
+
}];
|
|
1117
|
+
readonly responseType: "DeveloperHookletUpdateRespVO";
|
|
1118
|
+
}, {
|
|
1119
|
+
readonly scope: "admin";
|
|
1120
|
+
readonly module: "developer";
|
|
1121
|
+
readonly functionName: "deleteClientHooklet";
|
|
1122
|
+
readonly commandPath: readonly ["developer", "delete-client-hooklet"];
|
|
1123
|
+
readonly method: "DELETE";
|
|
1124
|
+
readonly endpoint: "/developer/clients/:client_hash_id/hooklets/:hash_id";
|
|
1125
|
+
readonly endpointParams: readonly ["client_hash_id", "hash_id"];
|
|
1126
|
+
readonly controller: "Developer.ClientHookletDelete";
|
|
1127
|
+
readonly requestType: null;
|
|
1128
|
+
readonly scalarParams: readonly [{
|
|
1129
|
+
readonly name: "hookletHashId";
|
|
1130
|
+
readonly type: "string";
|
|
1131
|
+
readonly hasDefault: false;
|
|
1132
|
+
}];
|
|
1133
|
+
readonly responseType: "string";
|
|
1134
|
+
}, {
|
|
1135
|
+
readonly scope: "admin";
|
|
1136
|
+
readonly module: "entity-tags";
|
|
1137
|
+
readonly functionName: "getEntityTagNames";
|
|
1138
|
+
readonly commandPath: readonly ["entity-tags", "get-entity-tag-names"];
|
|
1139
|
+
readonly method: "GET";
|
|
1140
|
+
readonly endpoint: "/api/user-action-entity/:appId/:entityId/tag-names";
|
|
1141
|
+
readonly endpointParams: readonly ["appId", "entityId"];
|
|
1142
|
+
readonly controller: "UserActionEntity.GetEntityTagNames";
|
|
1143
|
+
readonly requestType: null;
|
|
1144
|
+
readonly scalarParams: readonly [];
|
|
1145
|
+
readonly responseType: "string[]";
|
|
1146
|
+
}, {
|
|
1147
|
+
readonly scope: "admin";
|
|
1148
|
+
readonly module: "entity-tags";
|
|
1149
|
+
readonly functionName: "batchAddEntityTags";
|
|
1150
|
+
readonly commandPath: readonly ["entity-tags", "batch-add-entity-tags"];
|
|
1151
|
+
readonly method: "POST";
|
|
1152
|
+
readonly endpoint: "/api/user-action-entity/:appId/:entityId/batch-add-tags";
|
|
1153
|
+
readonly endpointParams: readonly ["appId", "entityId"];
|
|
1154
|
+
readonly controller: "UserActionEntity.BatchAddEntityTags";
|
|
1155
|
+
readonly requestType: "{ policy_id: string selection: any tag_names: string[] }";
|
|
1156
|
+
readonly scalarParams: readonly [];
|
|
1157
|
+
readonly responseType: "any";
|
|
1158
|
+
}, {
|
|
1159
|
+
readonly scope: "admin";
|
|
1160
|
+
readonly module: "entity-tags";
|
|
1161
|
+
readonly functionName: "batchRemoveEntityTags";
|
|
1162
|
+
readonly commandPath: readonly ["entity-tags", "batch-remove-entity-tags"];
|
|
1163
|
+
readonly method: "POST";
|
|
1164
|
+
readonly endpoint: "/api/user-action-entity/:appId/:entityId/batch-remove-tags";
|
|
1165
|
+
readonly endpointParams: readonly ["appId", "entityId"];
|
|
1166
|
+
readonly controller: "UserActionEntity.BatchRemoveEntityTags";
|
|
1167
|
+
readonly requestType: "{ policy_id: string selection: any tag_names: string[] }";
|
|
1168
|
+
readonly scalarParams: readonly [];
|
|
1169
|
+
readonly responseType: "any";
|
|
1170
|
+
}, {
|
|
1171
|
+
readonly scope: "admin";
|
|
1172
|
+
readonly module: "entity-tags";
|
|
1173
|
+
readonly functionName: "getSelectionTags";
|
|
1174
|
+
readonly commandPath: readonly ["entity-tags", "get-selection-tags"];
|
|
1175
|
+
readonly method: "POST";
|
|
1176
|
+
readonly endpoint: "/api/user-action-entity/:appId/:entityId/get-selection-tags";
|
|
1177
|
+
readonly endpointParams: readonly ["appId", "entityId"];
|
|
1178
|
+
readonly controller: "UserActionEntity.GetSelectionTags";
|
|
1179
|
+
readonly requestType: "{ policy_id: string selection: any }";
|
|
1180
|
+
readonly scalarParams: readonly [];
|
|
1181
|
+
readonly responseType: "string[]";
|
|
1182
|
+
}, {
|
|
1183
|
+
readonly scope: "admin";
|
|
1184
|
+
readonly module: "entity-tags";
|
|
1185
|
+
readonly functionName: "updateRecordTags";
|
|
1186
|
+
readonly commandPath: readonly ["entity-tags", "update-record-tags"];
|
|
1187
|
+
readonly method: "PUT";
|
|
1188
|
+
readonly endpoint: "/api/entity/:appId/:entityId/row/:rowId";
|
|
1189
|
+
readonly endpointParams: readonly ["appId", "entityId", "rowId"];
|
|
1190
|
+
readonly controller: "UserAction.EntityUpdate (with tags support)";
|
|
1191
|
+
readonly requestType: "{ policy_id: string tags: string[] }";
|
|
1192
|
+
readonly scalarParams: readonly [];
|
|
1193
|
+
readonly responseType: "boolean";
|
|
1194
|
+
}, {
|
|
1195
|
+
readonly scope: "admin";
|
|
1196
|
+
readonly module: "entity";
|
|
1197
|
+
readonly functionName: "adminInvokeDebugHook";
|
|
1198
|
+
readonly commandPath: readonly ["entity", "admin-invoke-debug-hook"];
|
|
1199
|
+
readonly method: "POST";
|
|
1200
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/invoke-debug";
|
|
1201
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1202
|
+
readonly controller: "Entity.DebugInvokeHook";
|
|
1203
|
+
readonly requestType: "EntityDebugInvokeHookReqVO";
|
|
1204
|
+
readonly scalarParams: readonly [];
|
|
1205
|
+
readonly responseType: "EntityDebugInvokeHookRespVO";
|
|
1206
|
+
}, {
|
|
1207
|
+
readonly scope: "admin";
|
|
1208
|
+
readonly module: "entity";
|
|
1209
|
+
readonly functionName: "adminDeleteEntity";
|
|
1210
|
+
readonly commandPath: readonly ["entity", "admin-delete-entity"];
|
|
1211
|
+
readonly method: "DELETE";
|
|
1212
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id";
|
|
1213
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1214
|
+
readonly controller: "Entity.DeleteEntity";
|
|
1215
|
+
readonly requestType: null;
|
|
1216
|
+
readonly scalarParams: readonly [];
|
|
1217
|
+
readonly responseType: "EntityDeleteEntityRespVO";
|
|
1218
|
+
}, {
|
|
1219
|
+
readonly scope: "admin";
|
|
1220
|
+
readonly module: "entity";
|
|
1221
|
+
readonly functionName: "adminGetEntityRecycle";
|
|
1222
|
+
readonly commandPath: readonly ["entity", "admin-get-entity-recycle"];
|
|
1223
|
+
readonly method: "GET";
|
|
1224
|
+
readonly endpoint: "/apps/:app_id/entity-recycle";
|
|
1225
|
+
readonly endpointParams: readonly ["app_id"];
|
|
1226
|
+
readonly controller: "Entity.EntityRecycle";
|
|
1227
|
+
readonly requestType: null;
|
|
1228
|
+
readonly scalarParams: readonly [];
|
|
1229
|
+
readonly responseType: "void";
|
|
1230
|
+
}, {
|
|
1231
|
+
readonly scope: "admin";
|
|
1232
|
+
readonly module: "entity";
|
|
1233
|
+
readonly functionName: "adminGetFieldRecycle";
|
|
1234
|
+
readonly commandPath: readonly ["entity", "admin-get-field-recycle"];
|
|
1235
|
+
readonly method: "GET";
|
|
1236
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/restore-fields";
|
|
1237
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1238
|
+
readonly controller: "Entity.FieldRecycle";
|
|
1239
|
+
readonly requestType: null;
|
|
1240
|
+
readonly scalarParams: readonly [];
|
|
1241
|
+
readonly responseType: "EntityFieldRecycleRespVO";
|
|
1242
|
+
}, {
|
|
1243
|
+
readonly scope: "admin";
|
|
1244
|
+
readonly module: "entity";
|
|
1245
|
+
readonly functionName: "adminGetEntityInfo";
|
|
1246
|
+
readonly commandPath: readonly ["entity", "admin-get-entity-info"];
|
|
1247
|
+
readonly method: "GET";
|
|
1248
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id";
|
|
1249
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1250
|
+
readonly controller: "Entity.Info";
|
|
1251
|
+
readonly requestType: null;
|
|
1252
|
+
readonly scalarParams: readonly [];
|
|
1253
|
+
readonly responseType: "EntityInfoRespVO";
|
|
1254
|
+
}, {
|
|
1255
|
+
readonly scope: "admin";
|
|
1256
|
+
readonly module: "entity";
|
|
1257
|
+
readonly functionName: "adminSaveEntity";
|
|
1258
|
+
readonly commandPath: readonly ["entity", "admin-save-entity"];
|
|
1259
|
+
readonly method: "PUT";
|
|
1260
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id";
|
|
1261
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1262
|
+
readonly controller: "Entity.Save";
|
|
1263
|
+
readonly requestType: "EntitySaveReqVO";
|
|
1264
|
+
readonly scalarParams: readonly [];
|
|
1265
|
+
readonly responseType: "EntitySaveRespVO";
|
|
1266
|
+
}, {
|
|
1267
|
+
readonly scope: "admin";
|
|
1268
|
+
readonly module: "entity";
|
|
1269
|
+
readonly functionName: "adminSaveEntityCustomKeys";
|
|
1270
|
+
readonly commandPath: readonly ["entity", "admin-save-entity-custom-keys"];
|
|
1271
|
+
readonly method: "PUT";
|
|
1272
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/custom-keys";
|
|
1273
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1274
|
+
readonly controller: "Entity.SaveCustomKeys";
|
|
1275
|
+
readonly requestType: "EntitySaveCustomKeysReqVO";
|
|
1276
|
+
readonly scalarParams: readonly [];
|
|
1277
|
+
readonly responseType: "EntitySaveCustomKeysRespVO";
|
|
1278
|
+
}, {
|
|
1279
|
+
readonly scope: "admin";
|
|
1280
|
+
readonly module: "entity";
|
|
1281
|
+
readonly functionName: "adminSaveEntityName";
|
|
1282
|
+
readonly commandPath: readonly ["entity", "admin-save-entity-name"];
|
|
1283
|
+
readonly method: "PUT";
|
|
1284
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/name";
|
|
1285
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1286
|
+
readonly controller: "Entity.SaveName";
|
|
1287
|
+
readonly requestType: "EntitySaveNameReqVO";
|
|
1288
|
+
readonly scalarParams: readonly [];
|
|
1289
|
+
readonly responseType: "EntitySaveNameRespVO";
|
|
1290
|
+
}, {
|
|
1291
|
+
readonly scope: "admin";
|
|
1292
|
+
readonly module: "entity";
|
|
1293
|
+
readonly functionName: "adminSetSerialInitValue";
|
|
1294
|
+
readonly commandPath: readonly ["entity", "admin-set-serial-init-value"];
|
|
1295
|
+
readonly method: "POST";
|
|
1296
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/serial-initval";
|
|
1297
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1298
|
+
readonly controller: "Entity.SerialInitVal";
|
|
1299
|
+
readonly requestType: "EntitySerialInitValReqVO";
|
|
1300
|
+
readonly scalarParams: readonly [];
|
|
1301
|
+
readonly responseType: "EntitySerialInitValRespVO";
|
|
1302
|
+
}, {
|
|
1303
|
+
readonly scope: "admin";
|
|
1304
|
+
readonly module: "entity";
|
|
1305
|
+
readonly functionName: "adminUpdateEntityButtons";
|
|
1306
|
+
readonly commandPath: readonly ["entity", "admin-update-entity-buttons"];
|
|
1307
|
+
readonly method: "PUT";
|
|
1308
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/buttons";
|
|
1309
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1310
|
+
readonly controller: "Entity.UpdateButtons";
|
|
1311
|
+
readonly requestType: "EntityUpdateButtonsReqVO";
|
|
1312
|
+
readonly scalarParams: readonly [];
|
|
1313
|
+
readonly responseType: "EntityUpdateButtonsRespVO";
|
|
1314
|
+
}, {
|
|
1315
|
+
readonly scope: "admin";
|
|
1316
|
+
readonly module: "entity";
|
|
1317
|
+
readonly functionName: "adminUpdateEntityOptions";
|
|
1318
|
+
readonly commandPath: readonly ["entity", "admin-update-entity-options"];
|
|
1319
|
+
readonly method: "PUT";
|
|
1320
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/options";
|
|
1321
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1322
|
+
readonly controller: "Entity.UpdateOptions";
|
|
1323
|
+
readonly requestType: "EntityUpdateOptionsReqVO";
|
|
1324
|
+
readonly scalarParams: readonly [];
|
|
1325
|
+
readonly responseType: "EntityUpdateOptionsRespVO";
|
|
1326
|
+
}, {
|
|
1327
|
+
readonly scope: "admin";
|
|
1328
|
+
readonly module: "entity";
|
|
1329
|
+
readonly functionName: "adminUpdateEntitySuccessScreen";
|
|
1330
|
+
readonly commandPath: readonly ["entity", "admin-update-entity-success-screen"];
|
|
1331
|
+
readonly method: "PUT";
|
|
1332
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/success-screen";
|
|
1333
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1334
|
+
readonly controller: "Entity.UpdateSuccessScreen";
|
|
1335
|
+
readonly requestType: "EntityUpdateSuccessScreenReqVO";
|
|
1336
|
+
readonly scalarParams: readonly [];
|
|
1337
|
+
readonly responseType: "EntityUpdateSuccessScreenRespVO";
|
|
1338
|
+
}, {
|
|
1339
|
+
readonly scope: "admin";
|
|
1340
|
+
readonly module: "entity";
|
|
1341
|
+
readonly functionName: "adminUpdateEntityNotifications";
|
|
1342
|
+
readonly commandPath: readonly ["entity", "admin-update-entity-notifications"];
|
|
1343
|
+
readonly method: "PUT";
|
|
1344
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/notifications";
|
|
1345
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1346
|
+
readonly controller: "Entity.UpdateNotifications";
|
|
1347
|
+
readonly requestType: "EntityUpdateNotificationsReqVO";
|
|
1348
|
+
readonly scalarParams: readonly [];
|
|
1349
|
+
readonly responseType: "EntityUpdateNotificationsRespVO";
|
|
1350
|
+
}, {
|
|
1351
|
+
readonly scope: "admin";
|
|
1352
|
+
readonly module: "entity";
|
|
1353
|
+
readonly functionName: "adminTestEntityNotification";
|
|
1354
|
+
readonly commandPath: readonly ["entity", "admin-test-entity-notification"];
|
|
1355
|
+
readonly method: "POST";
|
|
1356
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/test-notification";
|
|
1357
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1358
|
+
readonly controller: "Entity.TestNotification";
|
|
1359
|
+
readonly requestType: "EntityTestNotificationReqVO";
|
|
1360
|
+
readonly scalarParams: readonly [];
|
|
1361
|
+
readonly responseType: "EntityTestNotificationRespVO";
|
|
1362
|
+
}, {
|
|
1363
|
+
readonly scope: "admin";
|
|
1364
|
+
readonly module: "entity";
|
|
1365
|
+
readonly functionName: "adminGetEntityDataRecycle";
|
|
1366
|
+
readonly commandPath: readonly ["entity", "admin-get-entity-data-recycle"];
|
|
1367
|
+
readonly method: "GET";
|
|
1368
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/restore-data";
|
|
1369
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1370
|
+
readonly controller: "Entity.DataRecycle";
|
|
1371
|
+
readonly requestType: null;
|
|
1372
|
+
readonly scalarParams: readonly [];
|
|
1373
|
+
readonly responseType: "any";
|
|
1374
|
+
}, {
|
|
1375
|
+
readonly scope: "admin";
|
|
1376
|
+
readonly module: "entity";
|
|
1377
|
+
readonly functionName: "sendEntityClone";
|
|
1378
|
+
readonly commandPath: readonly ["entity", "send-entity-clone"];
|
|
1379
|
+
readonly method: "POST";
|
|
1380
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/clone";
|
|
1381
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1382
|
+
readonly controller: "Entity.CloneEntity";
|
|
1383
|
+
readonly requestType: "EntityCloneReqVO";
|
|
1384
|
+
readonly scalarParams: readonly [];
|
|
1385
|
+
readonly responseType: "EntityCloneRespVO";
|
|
1386
|
+
}, {
|
|
1387
|
+
readonly scope: "admin";
|
|
1388
|
+
readonly module: "extension";
|
|
1389
|
+
readonly functionName: "getExtensionHttpRequest";
|
|
1390
|
+
readonly commandPath: readonly ["extension", "get-extension-http-request"];
|
|
1391
|
+
readonly method: "GET";
|
|
1392
|
+
readonly endpoint: "/extension/:id/*path";
|
|
1393
|
+
readonly endpointParams: readonly ["id"];
|
|
1394
|
+
readonly controller: "Extension.HttpRequest";
|
|
1395
|
+
readonly requestType: null;
|
|
1396
|
+
readonly scalarParams: readonly [{
|
|
1397
|
+
readonly name: "path";
|
|
1398
|
+
readonly type: "string";
|
|
1399
|
+
readonly hasDefault: false;
|
|
1400
|
+
}];
|
|
1401
|
+
readonly responseType: "void";
|
|
1402
|
+
}, {
|
|
1403
|
+
readonly scope: "admin";
|
|
1404
|
+
readonly module: "extension";
|
|
1405
|
+
readonly functionName: "getExtensionStaticFile";
|
|
1406
|
+
readonly commandPath: readonly ["extension", "get-extension-static-file"];
|
|
1407
|
+
readonly method: "GET";
|
|
1408
|
+
readonly endpoint: "/extension/:id/*filepath";
|
|
1409
|
+
readonly endpointParams: readonly ["id"];
|
|
1410
|
+
readonly controller: "Extension.StaticFile";
|
|
1411
|
+
readonly requestType: null;
|
|
1412
|
+
readonly scalarParams: readonly [{
|
|
1413
|
+
readonly name: "filepath";
|
|
1414
|
+
readonly type: "string";
|
|
1415
|
+
readonly hasDefault: false;
|
|
1416
|
+
}];
|
|
1417
|
+
readonly responseType: "void";
|
|
1418
|
+
}, {
|
|
1419
|
+
readonly scope: "admin";
|
|
1420
|
+
readonly module: "ingress";
|
|
1421
|
+
readonly functionName: "createEntityIngress";
|
|
1422
|
+
readonly commandPath: readonly ["ingress", "create-entity-ingress"];
|
|
1423
|
+
readonly method: "POST";
|
|
1424
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress";
|
|
1425
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1426
|
+
readonly controller: "App.IngressCreate";
|
|
1427
|
+
readonly requestType: "AppIngressCreateReqVO";
|
|
1428
|
+
readonly scalarParams: readonly [];
|
|
1429
|
+
readonly responseType: "AppIngressCreateRespVO";
|
|
1430
|
+
}, {
|
|
1431
|
+
readonly scope: "admin";
|
|
1432
|
+
readonly module: "ingress";
|
|
1433
|
+
readonly functionName: "createEntityIngressFrom";
|
|
1434
|
+
readonly commandPath: readonly ["ingress", "create-entity-ingress-from"];
|
|
1435
|
+
readonly method: "POST";
|
|
1436
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress?from_ingress_id=:id";
|
|
1437
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1438
|
+
readonly controller: "App.IngressCreate (clone from existing ingress)";
|
|
1439
|
+
readonly requestType: "AppIngressCreateReqVO";
|
|
1440
|
+
readonly scalarParams: readonly [{
|
|
1441
|
+
readonly name: "fromIngressId";
|
|
1442
|
+
readonly type: "string";
|
|
1443
|
+
readonly hasDefault: false;
|
|
1444
|
+
}];
|
|
1445
|
+
readonly responseType: "AppIngressCreateRespVO";
|
|
1446
|
+
}, {
|
|
1447
|
+
readonly scope: "admin";
|
|
1448
|
+
readonly module: "ingress";
|
|
1449
|
+
readonly functionName: "deleteEntityIngress";
|
|
1450
|
+
readonly commandPath: readonly ["ingress", "delete-entity-ingress"];
|
|
1451
|
+
readonly method: "DELETE";
|
|
1452
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress/:id";
|
|
1453
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1454
|
+
readonly controller: "App.IngressDelete";
|
|
1455
|
+
readonly requestType: null;
|
|
1456
|
+
readonly scalarParams: readonly [];
|
|
1457
|
+
readonly responseType: "AppIngressDeleteRespVO";
|
|
1458
|
+
}, {
|
|
1459
|
+
readonly scope: "admin";
|
|
1460
|
+
readonly module: "ingress";
|
|
1461
|
+
readonly functionName: "getEntityIngress";
|
|
1462
|
+
readonly commandPath: readonly ["ingress", "get-entity-ingress"];
|
|
1463
|
+
readonly method: "GET";
|
|
1464
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress/:id";
|
|
1465
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1466
|
+
readonly controller: "App.IngressGet";
|
|
1467
|
+
readonly requestType: null;
|
|
1468
|
+
readonly scalarParams: readonly [];
|
|
1469
|
+
readonly responseType: "AppIngressGetRespVO";
|
|
1470
|
+
}, {
|
|
1471
|
+
readonly scope: "admin";
|
|
1472
|
+
readonly module: "ingress";
|
|
1473
|
+
readonly functionName: "getEntityIngressBlocks";
|
|
1474
|
+
readonly commandPath: readonly ["ingress", "get-entity-ingress-blocks"];
|
|
1475
|
+
readonly method: "GET";
|
|
1476
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress-blocks/:id";
|
|
1477
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1478
|
+
readonly controller: "App.IngressGetBlocks";
|
|
1479
|
+
readonly requestType: null;
|
|
1480
|
+
readonly scalarParams: readonly [];
|
|
1481
|
+
readonly responseType: "AppIngressGetBlocksRespVO";
|
|
1482
|
+
}, {
|
|
1483
|
+
readonly scope: "admin";
|
|
1484
|
+
readonly module: "ingress";
|
|
1485
|
+
readonly functionName: "getEntityIngressByHashID";
|
|
1486
|
+
readonly commandPath: readonly ["ingress", "get-entity-ingress-by-hash-id"];
|
|
1487
|
+
readonly method: "GET";
|
|
1488
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress-h/:id";
|
|
1489
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1490
|
+
readonly controller: "App.IngressGetByHashID";
|
|
1491
|
+
readonly requestType: null;
|
|
1492
|
+
readonly scalarParams: readonly [];
|
|
1493
|
+
readonly responseType: "AppIngressGetByHashIDRespVO";
|
|
1494
|
+
}, {
|
|
1495
|
+
readonly scope: "admin";
|
|
1496
|
+
readonly module: "ingress";
|
|
1497
|
+
readonly functionName: "getEntityIngressList";
|
|
1498
|
+
readonly commandPath: readonly ["ingress", "get-entity-ingress-list"];
|
|
1499
|
+
readonly method: "GET";
|
|
1500
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress";
|
|
1501
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1502
|
+
readonly controller: "App.IngressList";
|
|
1503
|
+
readonly requestType: null;
|
|
1504
|
+
readonly scalarParams: readonly [];
|
|
1505
|
+
readonly responseType: "AppIngressListRespVO";
|
|
1506
|
+
}, {
|
|
1507
|
+
readonly scope: "admin";
|
|
1508
|
+
readonly module: "ingress";
|
|
1509
|
+
readonly functionName: "updateEntityIngress";
|
|
1510
|
+
readonly commandPath: readonly ["ingress", "update-entity-ingress"];
|
|
1511
|
+
readonly method: "PUT";
|
|
1512
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress/:id";
|
|
1513
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1514
|
+
readonly controller: "App.IngressUpdate";
|
|
1515
|
+
readonly requestType: "AppIngressUpdateReqVO";
|
|
1516
|
+
readonly scalarParams: readonly [];
|
|
1517
|
+
readonly responseType: "AppIngressUpdateRespVO";
|
|
1518
|
+
}, {
|
|
1519
|
+
readonly scope: "admin";
|
|
1520
|
+
readonly module: "ingress";
|
|
1521
|
+
readonly functionName: "updateEntityIngressBlocks";
|
|
1522
|
+
readonly commandPath: readonly ["ingress", "update-entity-ingress-blocks"];
|
|
1523
|
+
readonly method: "PUT";
|
|
1524
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress-blocks/:id";
|
|
1525
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1526
|
+
readonly controller: "App.IngressUpdateBlocks";
|
|
1527
|
+
readonly requestType: "AppIngressUpdateBlocksReqVO";
|
|
1528
|
+
readonly scalarParams: readonly [];
|
|
1529
|
+
readonly responseType: "AppIngressUpdateBlocksRespVO";
|
|
1530
|
+
}, {
|
|
1531
|
+
readonly scope: "admin";
|
|
1532
|
+
readonly module: "ingress";
|
|
1533
|
+
readonly functionName: "updateEntityIngressByHashID";
|
|
1534
|
+
readonly commandPath: readonly ["ingress", "update-entity-ingress-by-hash-id"];
|
|
1535
|
+
readonly method: "PUT";
|
|
1536
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/ingress-h/:id";
|
|
1537
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1538
|
+
readonly controller: "App.IngressUpdateByHashID";
|
|
1539
|
+
readonly requestType: "AppIngressUpdateReqVO";
|
|
1540
|
+
readonly scalarParams: readonly [];
|
|
1541
|
+
readonly responseType: "AppIngressUpdateRespVO";
|
|
1542
|
+
}, {
|
|
1543
|
+
readonly scope: "admin";
|
|
1544
|
+
readonly module: "integration";
|
|
1545
|
+
readonly functionName: "getIntegrationTemplateCategories";
|
|
1546
|
+
readonly commandPath: readonly ["integration", "get-integration-template-categories"];
|
|
1547
|
+
readonly method: "GET";
|
|
1548
|
+
readonly endpoint: "/integration/templates-categories/";
|
|
1549
|
+
readonly endpointParams: readonly [];
|
|
1550
|
+
readonly controller: "Intergration.GetTemplateCategroies";
|
|
1551
|
+
readonly requestType: null;
|
|
1552
|
+
readonly scalarParams: readonly [];
|
|
1553
|
+
readonly responseType: "IntergrationGetTemplateCategoriesRespVO";
|
|
1554
|
+
}, {
|
|
1555
|
+
readonly scope: "admin";
|
|
1556
|
+
readonly module: "integration";
|
|
1557
|
+
readonly functionName: "getIntegrationChalaxyProxy";
|
|
1558
|
+
readonly commandPath: readonly ["integration", "get-integration-chalaxy-proxy"];
|
|
1559
|
+
readonly method: "GET";
|
|
1560
|
+
readonly endpoint: "/integration/*path";
|
|
1561
|
+
readonly endpointParams: readonly [];
|
|
1562
|
+
readonly controller: "Intergration.ChalaxyProxy";
|
|
1563
|
+
readonly requestType: null;
|
|
1564
|
+
readonly scalarParams: readonly [{
|
|
1565
|
+
readonly name: "path";
|
|
1566
|
+
readonly type: "string";
|
|
1567
|
+
readonly hasDefault: false;
|
|
1568
|
+
}];
|
|
1569
|
+
readonly responseType: "IntergrationChalaxyProxyRespVO";
|
|
1570
|
+
}, {
|
|
1571
|
+
readonly scope: "admin";
|
|
1572
|
+
readonly module: "integration";
|
|
1573
|
+
readonly functionName: "getIntegrationAllTemplates";
|
|
1574
|
+
readonly commandPath: readonly ["integration", "get-integration-all-templates"];
|
|
1575
|
+
readonly method: "GET";
|
|
1576
|
+
readonly endpoint: "/integration/templates/";
|
|
1577
|
+
readonly endpointParams: readonly [];
|
|
1578
|
+
readonly controller: "Intergration.GetAllTemplates";
|
|
1579
|
+
readonly requestType: null;
|
|
1580
|
+
readonly scalarParams: readonly [];
|
|
1581
|
+
readonly responseType: "IntergrationGetAllTemplatesRespVO";
|
|
1582
|
+
}, {
|
|
1583
|
+
readonly scope: "admin";
|
|
1584
|
+
readonly module: "integration";
|
|
1585
|
+
readonly functionName: "getIntegrationTemplate";
|
|
1586
|
+
readonly commandPath: readonly ["integration", "get-integration-template"];
|
|
1587
|
+
readonly method: "GET";
|
|
1588
|
+
readonly endpoint: "/integration/templates/:id";
|
|
1589
|
+
readonly endpointParams: readonly ["id"];
|
|
1590
|
+
readonly controller: "Intergration.GetTemplate";
|
|
1591
|
+
readonly requestType: null;
|
|
1592
|
+
readonly scalarParams: readonly [];
|
|
1593
|
+
readonly responseType: "IntergrationGetTemplateRespVO";
|
|
1594
|
+
}, {
|
|
1595
|
+
readonly scope: "admin";
|
|
1596
|
+
readonly module: "integration";
|
|
1597
|
+
readonly functionName: "getIntegrationConnectors";
|
|
1598
|
+
readonly commandPath: readonly ["integration", "get-integration-connectors"];
|
|
1599
|
+
readonly method: "GET";
|
|
1600
|
+
readonly endpoint: "/integration/connectors";
|
|
1601
|
+
readonly endpointParams: readonly [];
|
|
1602
|
+
readonly controller: "Intergration.ChalaxyProxy";
|
|
1603
|
+
readonly requestType: null;
|
|
1604
|
+
readonly scalarParams: readonly [{
|
|
1605
|
+
readonly name: "params";
|
|
1606
|
+
readonly type: "{ key?: string }";
|
|
1607
|
+
readonly hasDefault: true;
|
|
1608
|
+
}];
|
|
1609
|
+
readonly responseType: "IntergrationGetConnectorsRespVO";
|
|
1610
|
+
}, {
|
|
1611
|
+
readonly scope: "admin";
|
|
1612
|
+
readonly module: "integration";
|
|
1613
|
+
readonly functionName: "sendIntegrationConnectorStartAuth";
|
|
1614
|
+
readonly commandPath: readonly ["integration", "send-integration-connector-start-auth"];
|
|
1615
|
+
readonly method: "POST";
|
|
1616
|
+
readonly endpoint: "/integration/connectors/:id/start-auth";
|
|
1617
|
+
readonly endpointParams: readonly ["id"];
|
|
1618
|
+
readonly controller: "Intergration.ChalaxyProxy";
|
|
1619
|
+
readonly requestType: "any";
|
|
1620
|
+
readonly scalarParams: readonly [];
|
|
1621
|
+
readonly responseType: "IntergrationChalaxyProxyRespVO";
|
|
1622
|
+
}, {
|
|
1623
|
+
readonly scope: "admin";
|
|
1624
|
+
readonly module: "integration";
|
|
1625
|
+
readonly functionName: "sendIntegrationConnectorInvokeTrigger";
|
|
1626
|
+
readonly commandPath: readonly ["integration", "send-integration-connector-invoke-trigger"];
|
|
1627
|
+
readonly method: "POST";
|
|
1628
|
+
readonly endpoint: "/integration/connectors/:id/invoke-trigger/:triggerKey";
|
|
1629
|
+
readonly endpointParams: readonly ["id", "triggerKey"];
|
|
1630
|
+
readonly controller: "Intergration.ChalaxyProxy";
|
|
1631
|
+
readonly requestType: "any";
|
|
1632
|
+
readonly scalarParams: readonly [];
|
|
1633
|
+
readonly responseType: "IntergrationChalaxyProxyRespVO";
|
|
1634
|
+
}, {
|
|
1635
|
+
readonly scope: "admin";
|
|
1636
|
+
readonly module: "kiosk-flow";
|
|
1637
|
+
readonly functionName: "cloneKioskFlow";
|
|
1638
|
+
readonly commandPath: readonly ["kiosk-flow", "clone-kiosk-flow"];
|
|
1639
|
+
readonly method: "POST";
|
|
1640
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow/:id/clone";
|
|
1641
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1642
|
+
readonly controller: "Entity.KioskFlowClone";
|
|
1643
|
+
readonly requestType: "any";
|
|
1644
|
+
readonly scalarParams: readonly [];
|
|
1645
|
+
readonly responseType: "EntityKioskFlow";
|
|
1646
|
+
}, {
|
|
1647
|
+
readonly scope: "admin";
|
|
1648
|
+
readonly module: "kiosk-flow";
|
|
1649
|
+
readonly functionName: "createKioskFlow";
|
|
1650
|
+
readonly commandPath: readonly ["kiosk-flow", "create-kiosk-flow"];
|
|
1651
|
+
readonly method: "POST";
|
|
1652
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow";
|
|
1653
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1654
|
+
readonly controller: "Entity.KioskFlowCreate";
|
|
1655
|
+
readonly requestType: "EntityKioskFlowCreateReqVO";
|
|
1656
|
+
readonly scalarParams: readonly [];
|
|
1657
|
+
readonly responseType: "EntityKioskFlow";
|
|
1658
|
+
}, {
|
|
1659
|
+
readonly scope: "admin";
|
|
1660
|
+
readonly module: "kiosk-flow";
|
|
1661
|
+
readonly functionName: "deleteKioskFlow";
|
|
1662
|
+
readonly commandPath: readonly ["kiosk-flow", "delete-kiosk-flow"];
|
|
1663
|
+
readonly method: "DELETE";
|
|
1664
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow/:id";
|
|
1665
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1666
|
+
readonly controller: "Entity.KioskFlowDelete";
|
|
1667
|
+
readonly requestType: null;
|
|
1668
|
+
readonly scalarParams: readonly [];
|
|
1669
|
+
readonly responseType: "boolean";
|
|
1670
|
+
}, {
|
|
1671
|
+
readonly scope: "admin";
|
|
1672
|
+
readonly module: "kiosk-flow";
|
|
1673
|
+
readonly functionName: "getKioskFlow";
|
|
1674
|
+
readonly commandPath: readonly ["kiosk-flow", "get-kiosk-flow"];
|
|
1675
|
+
readonly method: "GET";
|
|
1676
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow/:id";
|
|
1677
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1678
|
+
readonly controller: "Entity.KioskFlowGet";
|
|
1679
|
+
readonly requestType: null;
|
|
1680
|
+
readonly scalarParams: readonly [];
|
|
1681
|
+
readonly responseType: "EntityKioskFlow";
|
|
1682
|
+
}, {
|
|
1683
|
+
readonly scope: "admin";
|
|
1684
|
+
readonly module: "kiosk-flow";
|
|
1685
|
+
readonly functionName: "getKioskFlowList";
|
|
1686
|
+
readonly commandPath: readonly ["kiosk-flow", "get-kiosk-flow-list"];
|
|
1687
|
+
readonly method: "GET";
|
|
1688
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow";
|
|
1689
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1690
|
+
readonly controller: "Entity.KioskFlowList";
|
|
1691
|
+
readonly requestType: null;
|
|
1692
|
+
readonly scalarParams: readonly [];
|
|
1693
|
+
readonly responseType: "EntityKioskFlow[]";
|
|
1694
|
+
}, {
|
|
1695
|
+
readonly scope: "admin";
|
|
1696
|
+
readonly module: "kiosk-flow";
|
|
1697
|
+
readonly functionName: "updateKioskFlow";
|
|
1698
|
+
readonly commandPath: readonly ["kiosk-flow", "update-kiosk-flow"];
|
|
1699
|
+
readonly method: "PUT";
|
|
1700
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/kiosk-flow/:id";
|
|
1701
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1702
|
+
readonly controller: "Entity.KioskFlowUpdate";
|
|
1703
|
+
readonly requestType: "EntityKioskFlowUpdateReqVO";
|
|
1704
|
+
readonly scalarParams: readonly [];
|
|
1705
|
+
readonly responseType: "EntityKioskFlow";
|
|
1706
|
+
}, {
|
|
1707
|
+
readonly scope: "admin";
|
|
1708
|
+
readonly module: "print-template-background";
|
|
1709
|
+
readonly functionName: "uploadPrintTemplateBackground";
|
|
1710
|
+
readonly commandPath: readonly ["print-template-background", "upload-print-template-background"];
|
|
1711
|
+
readonly method: "POST";
|
|
1712
|
+
readonly endpoint: "/api/apps/:app_id/entity/:entity_id/print-templates/:template_id/background";
|
|
1713
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "template_id"];
|
|
1714
|
+
readonly controller: "Entity.PrintTemplateBackgroundUpload";
|
|
1715
|
+
readonly requestType: "PrintTemplateBackgroundUploadReqVO";
|
|
1716
|
+
readonly scalarParams: readonly [];
|
|
1717
|
+
readonly responseType: "PrintTemplateBackgroundUploadRespVO";
|
|
1718
|
+
}, {
|
|
1719
|
+
readonly scope: "admin";
|
|
1720
|
+
readonly module: "print-template-background";
|
|
1721
|
+
readonly functionName: "deletePrintTemplateBackground";
|
|
1722
|
+
readonly commandPath: readonly ["print-template-background", "delete-print-template-background"];
|
|
1723
|
+
readonly method: "DELETE";
|
|
1724
|
+
readonly endpoint: "/api/apps/:app_id/entity/:entity_id/print-templates/:template_id/background";
|
|
1725
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "template_id"];
|
|
1726
|
+
readonly controller: "Entity.PrintTemplateBackgroundDelete";
|
|
1727
|
+
readonly requestType: null;
|
|
1728
|
+
readonly scalarParams: readonly [];
|
|
1729
|
+
readonly responseType: "PrintTemplateBackgroundDeleteRespVO";
|
|
1730
|
+
}, {
|
|
1731
|
+
readonly scope: "admin";
|
|
1732
|
+
readonly module: "print-templates";
|
|
1733
|
+
readonly functionName: "createEntityPrintTemplate";
|
|
1734
|
+
readonly commandPath: readonly ["print-templates", "create-entity-print-template"];
|
|
1735
|
+
readonly method: "POST";
|
|
1736
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/print-templates";
|
|
1737
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1738
|
+
readonly controller: "Entity.PrintTemplatesCreate";
|
|
1739
|
+
readonly requestType: "EntityPrintTemplatesCreateReqVO";
|
|
1740
|
+
readonly scalarParams: readonly [];
|
|
1741
|
+
readonly responseType: "EntityPrintTemplatesCreateRespVO";
|
|
1742
|
+
}, {
|
|
1743
|
+
readonly scope: "admin";
|
|
1744
|
+
readonly module: "print-templates";
|
|
1745
|
+
readonly functionName: "deleteEntityPrintTemplate";
|
|
1746
|
+
readonly commandPath: readonly ["print-templates", "delete-entity-print-template"];
|
|
1747
|
+
readonly method: "DELETE";
|
|
1748
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/print-templates/:id";
|
|
1749
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1750
|
+
readonly controller: "Entity.PrintTemplatesDelete";
|
|
1751
|
+
readonly requestType: null;
|
|
1752
|
+
readonly scalarParams: readonly [];
|
|
1753
|
+
readonly responseType: "EntityPrintTemplatesDeleteRespVO";
|
|
1754
|
+
}, {
|
|
1755
|
+
readonly scope: "admin";
|
|
1756
|
+
readonly module: "print-templates";
|
|
1757
|
+
readonly functionName: "getEntityPrintTemplate";
|
|
1758
|
+
readonly commandPath: readonly ["print-templates", "get-entity-print-template"];
|
|
1759
|
+
readonly method: "GET";
|
|
1760
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/print-templates/:id";
|
|
1761
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1762
|
+
readonly controller: "Entity.PrintTemplatesGet";
|
|
1763
|
+
readonly requestType: null;
|
|
1764
|
+
readonly scalarParams: readonly [];
|
|
1765
|
+
readonly responseType: "EntityPrintTemplatesGetRespVO";
|
|
1766
|
+
}, {
|
|
1767
|
+
readonly scope: "admin";
|
|
1768
|
+
readonly module: "print-templates";
|
|
1769
|
+
readonly functionName: "getEntityPrintTemplateList";
|
|
1770
|
+
readonly commandPath: readonly ["print-templates", "get-entity-print-template-list"];
|
|
1771
|
+
readonly method: "GET";
|
|
1772
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/print-templates";
|
|
1773
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
1774
|
+
readonly controller: "Entity.PrintTemplatesList";
|
|
1775
|
+
readonly requestType: null;
|
|
1776
|
+
readonly scalarParams: readonly [];
|
|
1777
|
+
readonly responseType: "EntityPrintTemplatesListRespVO";
|
|
1778
|
+
}, {
|
|
1779
|
+
readonly scope: "admin";
|
|
1780
|
+
readonly module: "print-templates";
|
|
1781
|
+
readonly functionName: "updateEntityPrintTemplate";
|
|
1782
|
+
readonly commandPath: readonly ["print-templates", "update-entity-print-template"];
|
|
1783
|
+
readonly method: "PUT";
|
|
1784
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/print-templates/:id";
|
|
1785
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "id"];
|
|
1786
|
+
readonly controller: "Entity.PrintTemplatesUpdate";
|
|
1787
|
+
readonly requestType: "EntityPrintTemplatesUpdateReqVO";
|
|
1788
|
+
readonly scalarParams: readonly [];
|
|
1789
|
+
readonly responseType: "EntityPrintTemplatesUpdateRespVO";
|
|
1790
|
+
}, {
|
|
1791
|
+
readonly scope: "admin";
|
|
1792
|
+
readonly module: "tenant";
|
|
1793
|
+
readonly functionName: "getTenantConfig";
|
|
1794
|
+
readonly commandPath: readonly ["tenant", "get-tenant-config"];
|
|
1795
|
+
readonly method: "POST";
|
|
1796
|
+
readonly endpoint: "/tenants/config/get";
|
|
1797
|
+
readonly endpointParams: readonly [];
|
|
1798
|
+
readonly controller: "Tenant.ConfigGet";
|
|
1799
|
+
readonly requestType: "TenantConfigGetReqVO";
|
|
1800
|
+
readonly scalarParams: readonly [];
|
|
1801
|
+
readonly responseType: "TenantConfigGetRespVO";
|
|
1802
|
+
}, {
|
|
1803
|
+
readonly scope: "admin";
|
|
1804
|
+
readonly module: "tenant";
|
|
1805
|
+
readonly functionName: "updateTenantConfig";
|
|
1806
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config"];
|
|
1807
|
+
readonly method: "PUT";
|
|
1808
|
+
readonly endpoint: "/tenants/config/update";
|
|
1809
|
+
readonly endpointParams: readonly [];
|
|
1810
|
+
readonly controller: "Tenant.ConfigUpdate";
|
|
1811
|
+
readonly requestType: "TenantConfigUpdateReqVO";
|
|
1812
|
+
readonly scalarParams: readonly [];
|
|
1813
|
+
readonly responseType: "TenantConfigUpdateRespVO";
|
|
1814
|
+
}, {
|
|
1815
|
+
readonly scope: "admin";
|
|
1816
|
+
readonly module: "tenant";
|
|
1817
|
+
readonly functionName: "updateTenantConfigAuth";
|
|
1818
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-auth"];
|
|
1819
|
+
readonly method: "PUT";
|
|
1820
|
+
readonly endpoint: "/tenants/config/update-auth";
|
|
1821
|
+
readonly endpointParams: readonly [];
|
|
1822
|
+
readonly controller: "Tenant.ConfigUpdateAuth";
|
|
1823
|
+
readonly requestType: "TenantConfigUpdateAuthReqVO";
|
|
1824
|
+
readonly scalarParams: readonly [];
|
|
1825
|
+
readonly responseType: "TenantConfigUpdateAuthRespVO";
|
|
1826
|
+
}, {
|
|
1827
|
+
readonly scope: "admin";
|
|
1828
|
+
readonly module: "tenant";
|
|
1829
|
+
readonly functionName: "updateTenantConfigAuthBgImage";
|
|
1830
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-auth-bg-image"];
|
|
1831
|
+
readonly method: "PUT";
|
|
1832
|
+
readonly endpoint: "/tenants/config/update-auth-bgimage";
|
|
1833
|
+
readonly endpointParams: readonly [];
|
|
1834
|
+
readonly controller: "Tenant.ConfigUpdateAuthBgImage";
|
|
1835
|
+
readonly requestType: "TenantConfigUpdateAuthBgImageReqVO";
|
|
1836
|
+
readonly scalarParams: readonly [];
|
|
1837
|
+
readonly responseType: "TenantConfigUpdateAuthBgImageRespVO";
|
|
1838
|
+
}, {
|
|
1839
|
+
readonly scope: "admin";
|
|
1840
|
+
readonly module: "tenant";
|
|
1841
|
+
readonly functionName: "updateTenantConfigEmail";
|
|
1842
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-email"];
|
|
1843
|
+
readonly method: "PUT";
|
|
1844
|
+
readonly endpoint: "/tenants/config/update-mail";
|
|
1845
|
+
readonly endpointParams: readonly [];
|
|
1846
|
+
readonly controller: "Tenant.ConfigUpdateEmail";
|
|
1847
|
+
readonly requestType: "TenantConfigUpdateEmailReqVO";
|
|
1848
|
+
readonly scalarParams: readonly [];
|
|
1849
|
+
readonly responseType: "TenantConfigUpdateEmailRespVO";
|
|
1850
|
+
}, {
|
|
1851
|
+
readonly scope: "admin";
|
|
1852
|
+
readonly module: "tenant";
|
|
1853
|
+
readonly functionName: "updateTenantConfigIcon";
|
|
1854
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-icon"];
|
|
1855
|
+
readonly method: "PUT";
|
|
1856
|
+
readonly endpoint: "/tenants/config/update-icon";
|
|
1857
|
+
readonly endpointParams: readonly [];
|
|
1858
|
+
readonly controller: "Tenant.ConfigUpdateIcon";
|
|
1859
|
+
readonly requestType: "TenantConfigUpdateIconReqVO";
|
|
1860
|
+
readonly scalarParams: readonly [];
|
|
1861
|
+
readonly responseType: "TenantConfigUpdateIconRespVO";
|
|
1862
|
+
}, {
|
|
1863
|
+
readonly scope: "admin";
|
|
1864
|
+
readonly module: "tenant";
|
|
1865
|
+
readonly functionName: "updateTenantConfigLogo";
|
|
1866
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-logo"];
|
|
1867
|
+
readonly method: "PUT";
|
|
1868
|
+
readonly endpoint: "/tenants/config/update-logo";
|
|
1869
|
+
readonly endpointParams: readonly [];
|
|
1870
|
+
readonly controller: "Tenant.ConfigUpdateLogo";
|
|
1871
|
+
readonly requestType: "TenantConfigUpdateLogoReqVO";
|
|
1872
|
+
readonly scalarParams: readonly [];
|
|
1873
|
+
readonly responseType: "TenantConfigUpdateLogoRespVO";
|
|
1874
|
+
}, {
|
|
1875
|
+
readonly scope: "admin";
|
|
1876
|
+
readonly module: "tenant";
|
|
1877
|
+
readonly functionName: "updateTenantConfigMeta";
|
|
1878
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-meta"];
|
|
1879
|
+
readonly method: "PUT";
|
|
1880
|
+
readonly endpoint: "/tenants/config/update-usermeta";
|
|
1881
|
+
readonly endpointParams: readonly [];
|
|
1882
|
+
readonly controller: "Tenant.ConfigUpdateMeta";
|
|
1883
|
+
readonly requestType: "TenantConfigUpdateMetaReqVO";
|
|
1884
|
+
readonly scalarParams: readonly [];
|
|
1885
|
+
readonly responseType: "TenantConfigUpdateMetaRespVO";
|
|
1886
|
+
}, {
|
|
1887
|
+
readonly scope: "admin";
|
|
1888
|
+
readonly module: "tenant";
|
|
1889
|
+
readonly functionName: "updateTenantConfigName";
|
|
1890
|
+
readonly commandPath: readonly ["tenant", "update-tenant-config-name"];
|
|
1891
|
+
readonly method: "PUT";
|
|
1892
|
+
readonly endpoint: "/tenants/config/update-name";
|
|
1893
|
+
readonly endpointParams: readonly [];
|
|
1894
|
+
readonly controller: "Tenant.ConfigUpdateName";
|
|
1895
|
+
readonly requestType: "TenantConfigUpdateNameReqVO";
|
|
1896
|
+
readonly scalarParams: readonly [];
|
|
1897
|
+
readonly responseType: "TenantConfigUpdateNameRespVO";
|
|
1898
|
+
}, {
|
|
1899
|
+
readonly scope: "admin";
|
|
1900
|
+
readonly module: "tenant";
|
|
1901
|
+
readonly functionName: "createTenantCustomDomain";
|
|
1902
|
+
readonly commandPath: readonly ["tenant", "create-tenant-custom-domain"];
|
|
1903
|
+
readonly method: "POST";
|
|
1904
|
+
readonly endpoint: "/admin/custom_domain";
|
|
1905
|
+
readonly endpointParams: readonly [];
|
|
1906
|
+
readonly controller: "Tenant.CreateCustomDomain";
|
|
1907
|
+
readonly requestType: "TenantCreateCustomDomainReqVO";
|
|
1908
|
+
readonly scalarParams: readonly [];
|
|
1909
|
+
readonly responseType: "TenantCreateCustomDomainRespVO";
|
|
1910
|
+
}, {
|
|
1911
|
+
readonly scope: "admin";
|
|
1912
|
+
readonly module: "tenant";
|
|
1913
|
+
readonly functionName: "getTenant";
|
|
1914
|
+
readonly commandPath: readonly ["tenant", "get-tenant"];
|
|
1915
|
+
readonly method: "GET";
|
|
1916
|
+
readonly endpoint: "/tenants";
|
|
1917
|
+
readonly endpointParams: readonly [];
|
|
1918
|
+
readonly controller: "Tenant.Get";
|
|
1919
|
+
readonly requestType: null;
|
|
1920
|
+
readonly scalarParams: readonly [];
|
|
1921
|
+
readonly responseType: "TenantGetRespVO";
|
|
1922
|
+
}, {
|
|
1923
|
+
readonly scope: "admin";
|
|
1924
|
+
readonly module: "tenant";
|
|
1925
|
+
readonly functionName: "getTenantApiService";
|
|
1926
|
+
readonly commandPath: readonly ["tenant", "get-tenant-api-service"];
|
|
1927
|
+
readonly method: "GET";
|
|
1928
|
+
readonly endpoint: "/api-service/:api_service_id";
|
|
1929
|
+
readonly endpointParams: readonly ["api_service_id"];
|
|
1930
|
+
readonly controller: "Tenant.GetApiService";
|
|
1931
|
+
readonly requestType: null;
|
|
1932
|
+
readonly scalarParams: readonly [];
|
|
1933
|
+
readonly responseType: "TenantGetApiServiceRespVO";
|
|
1934
|
+
}, {
|
|
1935
|
+
readonly scope: "admin";
|
|
1936
|
+
readonly module: "tenant";
|
|
1937
|
+
readonly functionName: "getTenantApiServiceList";
|
|
1938
|
+
readonly commandPath: readonly ["tenant", "get-tenant-api-service-list"];
|
|
1939
|
+
readonly method: "GET";
|
|
1940
|
+
readonly endpoint: "/api-service/";
|
|
1941
|
+
readonly endpointParams: readonly [];
|
|
1942
|
+
readonly controller: "Tenant.GetApiServiceList";
|
|
1943
|
+
readonly requestType: null;
|
|
1944
|
+
readonly scalarParams: readonly [];
|
|
1945
|
+
readonly responseType: "TenantGetApiServiceListRespVO";
|
|
1946
|
+
}, {
|
|
1947
|
+
readonly scope: "admin";
|
|
1948
|
+
readonly module: "tenant";
|
|
1949
|
+
readonly functionName: "getTenantCustomDomain";
|
|
1950
|
+
readonly commandPath: readonly ["tenant", "get-tenant-custom-domain"];
|
|
1951
|
+
readonly method: "GET";
|
|
1952
|
+
readonly endpoint: "/admin/custom_domain";
|
|
1953
|
+
readonly endpointParams: readonly [];
|
|
1954
|
+
readonly controller: "Tenant.GetCustomDomain";
|
|
1955
|
+
readonly requestType: null;
|
|
1956
|
+
readonly scalarParams: readonly [];
|
|
1957
|
+
readonly responseType: "TenantGetCustomDomainRespVO";
|
|
1958
|
+
}, {
|
|
1959
|
+
readonly scope: "admin";
|
|
1960
|
+
readonly module: "tenant";
|
|
1961
|
+
readonly functionName: "getTenantKioskFlowListAll";
|
|
1962
|
+
readonly commandPath: readonly ["tenant", "get-tenant-kiosk-flow-list-all"];
|
|
1963
|
+
readonly method: "GET";
|
|
1964
|
+
readonly endpoint: "/kiosk-flows/list";
|
|
1965
|
+
readonly endpointParams: readonly [];
|
|
1966
|
+
readonly controller: "Tenant.KioskFlowListAll";
|
|
1967
|
+
readonly requestType: null;
|
|
1968
|
+
readonly scalarParams: readonly [];
|
|
1969
|
+
readonly responseType: "TenantKioskFlowListAllRespVO";
|
|
1970
|
+
}, {
|
|
1971
|
+
readonly scope: "admin";
|
|
1972
|
+
readonly module: "tenant";
|
|
1973
|
+
readonly functionName: "createTenantKioskGroup";
|
|
1974
|
+
readonly commandPath: readonly ["tenant", "create-tenant-kiosk-group"];
|
|
1975
|
+
readonly method: "POST";
|
|
1976
|
+
readonly endpoint: "/kiosk-group";
|
|
1977
|
+
readonly endpointParams: readonly [];
|
|
1978
|
+
readonly controller: "Tenant.KioskGroupCreate";
|
|
1979
|
+
readonly requestType: "TenantKioskGroupCreateReqVO";
|
|
1980
|
+
readonly scalarParams: readonly [];
|
|
1981
|
+
readonly responseType: "TenantKioskGroupCreateRespVO";
|
|
1982
|
+
}, {
|
|
1983
|
+
readonly scope: "admin";
|
|
1984
|
+
readonly module: "tenant";
|
|
1985
|
+
readonly functionName: "deleteTenantKioskGroup";
|
|
1986
|
+
readonly commandPath: readonly ["tenant", "delete-tenant-kiosk-group"];
|
|
1987
|
+
readonly method: "DELETE";
|
|
1988
|
+
readonly endpoint: "/kiosk-group/:id";
|
|
1989
|
+
readonly endpointParams: readonly ["id"];
|
|
1990
|
+
readonly controller: "Tenant.KioskGroupDelete";
|
|
1991
|
+
readonly requestType: null;
|
|
1992
|
+
readonly scalarParams: readonly [];
|
|
1993
|
+
readonly responseType: "TenantKioskGroupDeleteRespVO";
|
|
1994
|
+
}, {
|
|
1995
|
+
readonly scope: "admin";
|
|
1996
|
+
readonly module: "tenant";
|
|
1997
|
+
readonly functionName: "getTenantKioskGroup";
|
|
1998
|
+
readonly commandPath: readonly ["tenant", "get-tenant-kiosk-group"];
|
|
1999
|
+
readonly method: "GET";
|
|
2000
|
+
readonly endpoint: "/kiosk-group/:id";
|
|
2001
|
+
readonly endpointParams: readonly ["id"];
|
|
2002
|
+
readonly controller: "Tenant.KioskGroupGet";
|
|
2003
|
+
readonly requestType: null;
|
|
2004
|
+
readonly scalarParams: readonly [];
|
|
2005
|
+
readonly responseType: "TenantKioskGroupGetRespVO";
|
|
2006
|
+
}, {
|
|
2007
|
+
readonly scope: "admin";
|
|
2008
|
+
readonly module: "tenant";
|
|
2009
|
+
readonly functionName: "queryTenantKioskGroup";
|
|
2010
|
+
readonly commandPath: readonly ["tenant", "query-tenant-kiosk-group"];
|
|
2011
|
+
readonly method: "GET";
|
|
2012
|
+
readonly endpoint: "/kiosk-group";
|
|
2013
|
+
readonly endpointParams: readonly [];
|
|
2014
|
+
readonly controller: "Tenant.KioskGroupQuery";
|
|
2015
|
+
readonly requestType: "TenantKioskGroupQueryReqVO";
|
|
2016
|
+
readonly scalarParams: readonly [];
|
|
2017
|
+
readonly responseType: "TenantKioskGroupQueryRespVO";
|
|
2018
|
+
}, {
|
|
2019
|
+
readonly scope: "admin";
|
|
2020
|
+
readonly module: "tenant";
|
|
2021
|
+
readonly functionName: "updateTenantKioskGroup";
|
|
2022
|
+
readonly commandPath: readonly ["tenant", "update-tenant-kiosk-group"];
|
|
2023
|
+
readonly method: "PUT";
|
|
2024
|
+
readonly endpoint: "/kiosk-group/:id";
|
|
2025
|
+
readonly endpointParams: readonly ["id"];
|
|
2026
|
+
readonly controller: "Tenant.KioskGroupUpdate";
|
|
2027
|
+
readonly requestType: "TenantKioskGroupUpdateReqVO";
|
|
2028
|
+
readonly scalarParams: readonly [];
|
|
2029
|
+
readonly responseType: "TenantKioskGroupUpdateRespVO";
|
|
2030
|
+
}, {
|
|
2031
|
+
readonly scope: "admin";
|
|
2032
|
+
readonly module: "tenant";
|
|
2033
|
+
readonly functionName: "getTenantSystemMap";
|
|
2034
|
+
readonly commandPath: readonly ["tenant", "get-tenant-system-map"];
|
|
2035
|
+
readonly method: "GET";
|
|
2036
|
+
readonly endpoint: "/system-map";
|
|
2037
|
+
readonly endpointParams: readonly [];
|
|
2038
|
+
readonly controller: "Tenant.SystemMap";
|
|
2039
|
+
readonly requestType: null;
|
|
2040
|
+
readonly scalarParams: readonly [];
|
|
2041
|
+
readonly responseType: "TenantSystemMapRespVO";
|
|
2042
|
+
}, {
|
|
2043
|
+
readonly scope: "admin";
|
|
2044
|
+
readonly module: "tenant";
|
|
2045
|
+
readonly functionName: "verifyTenantCustomDomainOwner";
|
|
2046
|
+
readonly commandPath: readonly ["tenant", "verify-tenant-custom-domain-owner"];
|
|
2047
|
+
readonly method: "POST";
|
|
2048
|
+
readonly endpoint: "/admin/custom_domain/verify_owner";
|
|
2049
|
+
readonly endpointParams: readonly [];
|
|
2050
|
+
readonly controller: "Tenant.VerifyCustomDomainOwner";
|
|
2051
|
+
readonly requestType: "TenantVerifyCustomDomainOwnerReqVO";
|
|
2052
|
+
readonly scalarParams: readonly [];
|
|
2053
|
+
readonly responseType: "TenantVerifyCustomDomainOwnerRespVO";
|
|
2054
|
+
}, {
|
|
2055
|
+
readonly scope: "admin";
|
|
2056
|
+
readonly module: "tenant";
|
|
2057
|
+
readonly functionName: "getTenantUsageSnapshot";
|
|
2058
|
+
readonly commandPath: readonly ["tenant", "get-tenant-usage-snapshot"];
|
|
2059
|
+
readonly method: "GET";
|
|
2060
|
+
readonly endpoint: "/tenant/usage/snapshot";
|
|
2061
|
+
readonly endpointParams: readonly [];
|
|
2062
|
+
readonly controller: "Tenant.GetUsageSnapshot";
|
|
2063
|
+
readonly requestType: null;
|
|
2064
|
+
readonly scalarParams: readonly [];
|
|
2065
|
+
readonly responseType: "TenantUsageSnapshotRespVO";
|
|
2066
|
+
}, {
|
|
2067
|
+
readonly scope: "admin";
|
|
2068
|
+
readonly module: "tenant";
|
|
2069
|
+
readonly functionName: "getTenantUsageDaily";
|
|
2070
|
+
readonly commandPath: readonly ["tenant", "get-tenant-usage-daily"];
|
|
2071
|
+
readonly method: "GET";
|
|
2072
|
+
readonly endpoint: "/tenant/usage/daily";
|
|
2073
|
+
readonly endpointParams: readonly [];
|
|
2074
|
+
readonly controller: "Tenant.GetUsageDaily";
|
|
2075
|
+
readonly requestType: null;
|
|
2076
|
+
readonly scalarParams: readonly [{
|
|
2077
|
+
readonly name: "days";
|
|
2078
|
+
readonly type: "number";
|
|
2079
|
+
readonly hasDefault: true;
|
|
2080
|
+
}];
|
|
2081
|
+
readonly responseType: "TenantUsageDailyRespVO";
|
|
2082
|
+
}, {
|
|
2083
|
+
readonly scope: "admin";
|
|
2084
|
+
readonly module: "workflow";
|
|
2085
|
+
readonly functionName: "deployEntityWorkflow";
|
|
2086
|
+
readonly commandPath: readonly ["workflow", "deploy-entity-workflow"];
|
|
2087
|
+
readonly method: "POST";
|
|
2088
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/workflow/deploy";
|
|
2089
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2090
|
+
readonly controller: "Entity.WorkflowDeploy";
|
|
2091
|
+
readonly requestType: "EntityWorkflowDeployReqVO";
|
|
2092
|
+
readonly scalarParams: readonly [];
|
|
2093
|
+
readonly responseType: "EntityWorkflowDeployRespVO";
|
|
2094
|
+
}, {
|
|
2095
|
+
readonly scope: "admin";
|
|
2096
|
+
readonly module: "workflow";
|
|
2097
|
+
readonly functionName: "getEntityWorkflow";
|
|
2098
|
+
readonly commandPath: readonly ["workflow", "get-entity-workflow"];
|
|
2099
|
+
readonly method: "GET";
|
|
2100
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/workflow";
|
|
2101
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2102
|
+
readonly controller: "Entity.WorkflowGet";
|
|
2103
|
+
readonly requestType: null;
|
|
2104
|
+
readonly scalarParams: readonly [{
|
|
2105
|
+
readonly name: "workingId";
|
|
2106
|
+
readonly type: "string";
|
|
2107
|
+
readonly hasDefault: true;
|
|
2108
|
+
}];
|
|
2109
|
+
readonly responseType: "EntityWorkflowGetRespVO";
|
|
2110
|
+
}, {
|
|
2111
|
+
readonly scope: "admin";
|
|
2112
|
+
readonly module: "workflow";
|
|
2113
|
+
readonly functionName: "createEntityWorkflowVersion";
|
|
2114
|
+
readonly commandPath: readonly ["workflow", "create-entity-workflow-version"];
|
|
2115
|
+
readonly method: "POST";
|
|
2116
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/workflow/new";
|
|
2117
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2118
|
+
readonly controller: "Entity.WorkflowNewVersion";
|
|
2119
|
+
readonly requestType: null;
|
|
2120
|
+
readonly scalarParams: readonly [];
|
|
2121
|
+
readonly responseType: "EntityWorkflowNewVersionRespVO";
|
|
2122
|
+
}, {
|
|
2123
|
+
readonly scope: "admin";
|
|
2124
|
+
readonly module: "workflow";
|
|
2125
|
+
readonly functionName: "updateEntityWorkflow";
|
|
2126
|
+
readonly commandPath: readonly ["workflow", "update-entity-workflow"];
|
|
2127
|
+
readonly method: "POST";
|
|
2128
|
+
readonly endpoint: "/apps/:app_id/entity/:entity_id/workflow";
|
|
2129
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2130
|
+
readonly controller: "Entity.WorkflowUpdate";
|
|
2131
|
+
readonly requestType: "EntityWorkflowUpdateReqVO";
|
|
2132
|
+
readonly scalarParams: readonly [];
|
|
2133
|
+
readonly responseType: "EntityWorkflowUpdateRespVO";
|
|
2134
|
+
}];
|
|
2135
|
+
export declare const userCommands: readonly [{
|
|
2136
|
+
readonly scope: "user";
|
|
2137
|
+
readonly module: "common";
|
|
2138
|
+
readonly functionName: "getAppDetail";
|
|
2139
|
+
readonly commandPath: readonly ["common", "get-app-detail"];
|
|
2140
|
+
readonly method: "GET";
|
|
2141
|
+
readonly endpoint: "/apps/:id";
|
|
2142
|
+
readonly endpointParams: readonly ["id"];
|
|
2143
|
+
readonly controller: "UserAction.AppDetail";
|
|
2144
|
+
readonly requestType: null;
|
|
2145
|
+
readonly scalarParams: readonly [];
|
|
2146
|
+
readonly responseType: "AppDetailRespVO";
|
|
2147
|
+
}, {
|
|
2148
|
+
readonly scope: "user";
|
|
2149
|
+
readonly module: "common";
|
|
2150
|
+
readonly functionName: "getDataset";
|
|
2151
|
+
readonly commandPath: readonly ["common", "get-dataset"];
|
|
2152
|
+
readonly method: "GET";
|
|
2153
|
+
readonly endpoint: "/dataset/:id/:node_id";
|
|
2154
|
+
readonly endpointParams: readonly ["id", "node_id"];
|
|
2155
|
+
readonly controller: "UserAction.GetDataset";
|
|
2156
|
+
readonly requestType: null;
|
|
2157
|
+
readonly scalarParams: readonly [];
|
|
2158
|
+
readonly responseType: "DatasetRow[]";
|
|
2159
|
+
}, {
|
|
2160
|
+
readonly scope: "user";
|
|
2161
|
+
readonly module: "common";
|
|
2162
|
+
readonly functionName: "getOrganizationTree";
|
|
2163
|
+
readonly commandPath: readonly ["common", "get-organization-tree"];
|
|
2164
|
+
readonly method: "POST";
|
|
2165
|
+
readonly endpoint: "/organization/departments/tree";
|
|
2166
|
+
readonly endpointParams: readonly [];
|
|
2167
|
+
readonly controller: "UserAction.GetOrganizationTree";
|
|
2168
|
+
readonly requestType: "GetOrganizationTreeReqVO";
|
|
2169
|
+
readonly scalarParams: readonly [];
|
|
2170
|
+
readonly responseType: "GetOrganizationTreeRespVO";
|
|
2171
|
+
}, {
|
|
2172
|
+
readonly scope: "user";
|
|
2173
|
+
readonly module: "common";
|
|
2174
|
+
readonly functionName: "getOrganizationUsers";
|
|
2175
|
+
readonly commandPath: readonly ["common", "get-organization-users"];
|
|
2176
|
+
readonly method: "POST";
|
|
2177
|
+
readonly endpoint: "/organization/users";
|
|
2178
|
+
readonly endpointParams: readonly [];
|
|
2179
|
+
readonly controller: "UserAction.GetOrganizationUsers";
|
|
2180
|
+
readonly requestType: "GetOrganizationUsersReqVO";
|
|
2181
|
+
readonly scalarParams: readonly [];
|
|
2182
|
+
readonly responseType: "GetOrganizationUsersRespVO";
|
|
2183
|
+
}, {
|
|
2184
|
+
readonly scope: "user";
|
|
2185
|
+
readonly module: "common";
|
|
2186
|
+
readonly functionName: "getUploadToken";
|
|
2187
|
+
readonly commandPath: readonly ["common", "get-upload-token"];
|
|
2188
|
+
readonly method: "POST";
|
|
2189
|
+
readonly endpoint: "/upload/token";
|
|
2190
|
+
readonly endpointParams: readonly [];
|
|
2191
|
+
readonly controller: "UserAction.GetUploadToken";
|
|
2192
|
+
readonly requestType: "GetUploadTokenReqVO";
|
|
2193
|
+
readonly scalarParams: readonly [];
|
|
2194
|
+
readonly responseType: "GetUploadTokenRespVO";
|
|
2195
|
+
}, {
|
|
2196
|
+
readonly scope: "user";
|
|
2197
|
+
readonly module: "common";
|
|
2198
|
+
readonly functionName: "getIngress";
|
|
2199
|
+
readonly commandPath: readonly ["common", "get-ingress"];
|
|
2200
|
+
readonly method: "GET";
|
|
2201
|
+
readonly endpoint: "/ingress/:app_id/:ingress_id";
|
|
2202
|
+
readonly endpointParams: readonly ["app_id", "ingress_id"];
|
|
2203
|
+
readonly controller: "UserAction.Ingress";
|
|
2204
|
+
readonly requestType: null;
|
|
2205
|
+
readonly scalarParams: readonly [];
|
|
2206
|
+
readonly responseType: "IngressRespVO";
|
|
2207
|
+
}, {
|
|
2208
|
+
readonly scope: "user";
|
|
2209
|
+
readonly module: "common";
|
|
2210
|
+
readonly functionName: "setIngressOptionsTabber";
|
|
2211
|
+
readonly commandPath: readonly ["common", "set-ingress-options-tabber"];
|
|
2212
|
+
readonly method: "PUT";
|
|
2213
|
+
readonly endpoint: "/ingress/:app_id/:ingress_id/options-tabber";
|
|
2214
|
+
readonly endpointParams: readonly ["app_id", "ingress_id"];
|
|
2215
|
+
readonly controller: "UserAction.IngressSetOptionsTabber";
|
|
2216
|
+
readonly requestType: "IngressSetOptionsTabberReqVO";
|
|
2217
|
+
readonly scalarParams: readonly [];
|
|
2218
|
+
readonly responseType: "IngressSetOptionsTabberRespVO";
|
|
2219
|
+
}, {
|
|
2220
|
+
readonly scope: "user";
|
|
2221
|
+
readonly module: "common";
|
|
2222
|
+
readonly functionName: "mobileUpload";
|
|
2223
|
+
readonly commandPath: readonly ["common", "mobile-upload"];
|
|
2224
|
+
readonly method: "POST";
|
|
2225
|
+
readonly endpoint: "/upload/mobile-upload";
|
|
2226
|
+
readonly endpointParams: readonly [];
|
|
2227
|
+
readonly controller: "UserAction.MobileUpload";
|
|
2228
|
+
readonly requestType: "MobileUploadReqVO";
|
|
2229
|
+
readonly scalarParams: readonly [];
|
|
2230
|
+
readonly responseType: "MobileUploadRespVO";
|
|
2231
|
+
}, {
|
|
2232
|
+
readonly scope: "user";
|
|
2233
|
+
readonly module: "common";
|
|
2234
|
+
readonly functionName: "checkMobileUpload";
|
|
2235
|
+
readonly commandPath: readonly ["common", "check-mobile-upload"];
|
|
2236
|
+
readonly method: "POST";
|
|
2237
|
+
readonly endpoint: "/upload/mobile-upload/check";
|
|
2238
|
+
readonly endpointParams: readonly [];
|
|
2239
|
+
readonly controller: "UserAction.MobileUploadCheck";
|
|
2240
|
+
readonly requestType: "MobileUploadCheckReqVO";
|
|
2241
|
+
readonly scalarParams: readonly [];
|
|
2242
|
+
readonly responseType: "MobileUploadCheckRespVO";
|
|
2243
|
+
}, {
|
|
2244
|
+
readonly scope: "user";
|
|
2245
|
+
readonly module: "common";
|
|
2246
|
+
readonly functionName: "uploadPreview";
|
|
2247
|
+
readonly commandPath: readonly ["common", "upload-preview"];
|
|
2248
|
+
readonly method: "POST";
|
|
2249
|
+
readonly endpoint: "/upload/preview";
|
|
2250
|
+
readonly endpointParams: readonly [];
|
|
2251
|
+
readonly controller: "UserAction.UploadPreview";
|
|
2252
|
+
readonly requestType: "UploadPreviewReqVO";
|
|
2253
|
+
readonly scalarParams: readonly [];
|
|
2254
|
+
readonly responseType: "UploadPreviewRespVO";
|
|
2255
|
+
}, {
|
|
2256
|
+
readonly scope: "user";
|
|
2257
|
+
readonly module: "common";
|
|
2258
|
+
readonly functionName: "validateEntityUnique";
|
|
2259
|
+
readonly commandPath: readonly ["common", "validate-entity-unique"];
|
|
2260
|
+
readonly method: "POST";
|
|
2261
|
+
readonly endpoint: "/entity/:app_id/:entity_id/validate-uniq";
|
|
2262
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2263
|
+
readonly controller: "UserAction.EntityValidateUniq";
|
|
2264
|
+
readonly requestType: "EntityValidateUniqReqVO";
|
|
2265
|
+
readonly scalarParams: readonly [];
|
|
2266
|
+
readonly responseType: "EntityValidateUniqRespVO";
|
|
2267
|
+
}, {
|
|
2268
|
+
readonly scope: "user";
|
|
2269
|
+
readonly module: "common";
|
|
2270
|
+
readonly functionName: "queryEntityRelation";
|
|
2271
|
+
readonly commandPath: readonly ["common", "query-entity-relation"];
|
|
2272
|
+
readonly method: "POST";
|
|
2273
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-rel";
|
|
2274
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2275
|
+
readonly controller: "UserAction.EntityQueryRelation";
|
|
2276
|
+
readonly requestType: "EntityQueryRelationReqVO";
|
|
2277
|
+
readonly scalarParams: readonly [];
|
|
2278
|
+
readonly responseType: "EntityQueryRelationRespVO";
|
|
2279
|
+
}, {
|
|
2280
|
+
readonly scope: "user";
|
|
2281
|
+
readonly module: "common";
|
|
2282
|
+
readonly functionName: "queryLinktoPickOptions";
|
|
2283
|
+
readonly commandPath: readonly ["common", "query-linkto-pick-options"];
|
|
2284
|
+
readonly method: "POST";
|
|
2285
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-linkto-pick";
|
|
2286
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2287
|
+
readonly controller: "UserAction.EntityQueryLinkToPick";
|
|
2288
|
+
readonly requestType: "EntityQueryRelationReqVO";
|
|
2289
|
+
readonly scalarParams: readonly [];
|
|
2290
|
+
readonly responseType: "EntityQueryRelationRespVO";
|
|
2291
|
+
}, {
|
|
2292
|
+
readonly scope: "user";
|
|
2293
|
+
readonly module: "common";
|
|
2294
|
+
readonly functionName: "queryLinktoValues";
|
|
2295
|
+
readonly commandPath: readonly ["common", "query-linkto-values"];
|
|
2296
|
+
readonly method: "POST";
|
|
2297
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-linkto-values";
|
|
2298
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2299
|
+
readonly controller: "UserAction.EntityQueryLinkToValues";
|
|
2300
|
+
readonly requestType: "EntityQueryLinkToValuesReqVO";
|
|
2301
|
+
readonly scalarParams: readonly [];
|
|
2302
|
+
readonly responseType: "EntityQueryRelationRespVO";
|
|
2303
|
+
}, {
|
|
2304
|
+
readonly scope: "user";
|
|
2305
|
+
readonly module: "common";
|
|
2306
|
+
readonly functionName: "getSubformRelationData";
|
|
2307
|
+
readonly commandPath: readonly ["common", "get-subform-relation-data"];
|
|
2308
|
+
readonly method: "POST";
|
|
2309
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-subform-rel";
|
|
2310
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2311
|
+
readonly controller: "UserAction.EntityQuerySubformRelation";
|
|
2312
|
+
readonly requestType: null;
|
|
2313
|
+
readonly scalarParams: readonly [{
|
|
2314
|
+
readonly name: "options";
|
|
2315
|
+
readonly type: "any";
|
|
2316
|
+
readonly hasDefault: false;
|
|
2317
|
+
}];
|
|
2318
|
+
readonly responseType: "any";
|
|
2319
|
+
}, {
|
|
2320
|
+
readonly scope: "user";
|
|
2321
|
+
readonly module: "context";
|
|
2322
|
+
readonly functionName: "getContextUserToken";
|
|
2323
|
+
readonly commandPath: readonly ["context", "get-context-user-token"];
|
|
2324
|
+
readonly method: "POST";
|
|
2325
|
+
readonly endpoint: "/api/context/user-token";
|
|
2326
|
+
readonly endpointParams: readonly [];
|
|
2327
|
+
readonly controller: "BusinessHooks.GetContextUserToken";
|
|
2328
|
+
readonly requestType: null;
|
|
2329
|
+
readonly scalarParams: readonly [];
|
|
2330
|
+
readonly responseType: "FetchUserTokenRespVO";
|
|
2331
|
+
}, {
|
|
2332
|
+
readonly scope: "user";
|
|
2333
|
+
readonly module: "copilot";
|
|
2334
|
+
readonly functionName: "initCopilotConversation";
|
|
2335
|
+
readonly commandPath: readonly ["copilot", "init-copilot-conversation"];
|
|
2336
|
+
readonly method: "POST";
|
|
2337
|
+
readonly endpoint: "/copilot/init";
|
|
2338
|
+
readonly endpointParams: readonly [];
|
|
2339
|
+
readonly controller: "CopilotController.InitConversation";
|
|
2340
|
+
readonly requestType: null;
|
|
2341
|
+
readonly scalarParams: readonly [];
|
|
2342
|
+
readonly responseType: "CopilotInitConversationRespVO";
|
|
2343
|
+
}, {
|
|
2344
|
+
readonly scope: "user";
|
|
2345
|
+
readonly module: "copilot";
|
|
2346
|
+
readonly functionName: "sendCopilotMessage";
|
|
2347
|
+
readonly commandPath: readonly ["copilot", "send-copilot-message"];
|
|
2348
|
+
readonly method: "POST";
|
|
2349
|
+
readonly endpoint: "/copilot/send-message";
|
|
2350
|
+
readonly endpointParams: readonly [];
|
|
2351
|
+
readonly controller: "CopilotController.SendMessage";
|
|
2352
|
+
readonly requestType: "CopilotSendMessageReqVO";
|
|
2353
|
+
readonly scalarParams: readonly [];
|
|
2354
|
+
readonly responseType: "CopilotSendMessageRespVO";
|
|
2355
|
+
}, {
|
|
2356
|
+
readonly scope: "user";
|
|
2357
|
+
readonly module: "dashboard";
|
|
2358
|
+
readonly functionName: "getDashboard";
|
|
2359
|
+
readonly commandPath: readonly ["dashboard", "get-dashboard"];
|
|
2360
|
+
readonly method: "GET";
|
|
2361
|
+
readonly endpoint: "/dashboard/:app_id/:dashboard_id";
|
|
2362
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
2363
|
+
readonly controller: "UserAction.DashboardGet";
|
|
2364
|
+
readonly requestType: null;
|
|
2365
|
+
readonly scalarParams: readonly [];
|
|
2366
|
+
readonly responseType: "DashboardGetRespVO";
|
|
2367
|
+
}, {
|
|
2368
|
+
readonly scope: "user";
|
|
2369
|
+
readonly module: "dashboard";
|
|
2370
|
+
readonly functionName: "getDashboardWidgets";
|
|
2371
|
+
readonly commandPath: readonly ["dashboard", "get-dashboard-widgets"];
|
|
2372
|
+
readonly method: "GET";
|
|
2373
|
+
readonly endpoint: "/dashboard/:app_id/:dashboard_id/widgets";
|
|
2374
|
+
readonly endpointParams: readonly ["app_id", "dashboard_id"];
|
|
2375
|
+
readonly controller: "UserAction.DashboardWidgets";
|
|
2376
|
+
readonly requestType: null;
|
|
2377
|
+
readonly scalarParams: readonly [];
|
|
2378
|
+
readonly responseType: "DashboardWidgets[]";
|
|
2379
|
+
}, {
|
|
2380
|
+
readonly scope: "user";
|
|
2381
|
+
readonly module: "dashboard";
|
|
2382
|
+
readonly functionName: "getExportTask";
|
|
2383
|
+
readonly commandPath: readonly ["dashboard", "get-export-task"];
|
|
2384
|
+
readonly method: "GET";
|
|
2385
|
+
readonly endpoint: "/export-task/:id";
|
|
2386
|
+
readonly endpointParams: readonly ["id"];
|
|
2387
|
+
readonly controller: "UserAction.ExportTask";
|
|
2388
|
+
readonly requestType: null;
|
|
2389
|
+
readonly scalarParams: readonly [];
|
|
2390
|
+
readonly responseType: "ExportTaskRespVO";
|
|
2391
|
+
}, {
|
|
2392
|
+
readonly scope: "user";
|
|
2393
|
+
readonly module: "dashboard";
|
|
2394
|
+
readonly functionName: "fetchWidgetsData";
|
|
2395
|
+
readonly commandPath: readonly ["dashboard", "fetch-widgets-data"];
|
|
2396
|
+
readonly method: "POST";
|
|
2397
|
+
readonly endpoint: "/apps/:app_id/widgets-data";
|
|
2398
|
+
readonly endpointParams: readonly ["app_id"];
|
|
2399
|
+
readonly controller: "UserAction.FetchWidgetsData";
|
|
2400
|
+
readonly requestType: "FetchWidgetsDataReqVO";
|
|
2401
|
+
readonly scalarParams: readonly [];
|
|
2402
|
+
readonly responseType: "FetchWidgetsDataRespVO";
|
|
2403
|
+
}, {
|
|
2404
|
+
readonly scope: "user";
|
|
2405
|
+
readonly module: "entity";
|
|
2406
|
+
readonly functionName: "addEntityComment";
|
|
2407
|
+
readonly commandPath: readonly ["entity", "add-entity-comment"];
|
|
2408
|
+
readonly method: "POST";
|
|
2409
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/comment-add";
|
|
2410
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2411
|
+
readonly controller: "UserAction.EntityAddComment";
|
|
2412
|
+
readonly requestType: "EntityAddCommentReqVO";
|
|
2413
|
+
readonly scalarParams: readonly [];
|
|
2414
|
+
readonly responseType: "EntityAddCommentRespVO";
|
|
2415
|
+
}, {
|
|
2416
|
+
readonly scope: "user";
|
|
2417
|
+
readonly module: "entity";
|
|
2418
|
+
readonly functionName: "configEntityAIImport";
|
|
2419
|
+
readonly commandPath: readonly ["entity", "config-entity-aiimport"];
|
|
2420
|
+
readonly method: "POST";
|
|
2421
|
+
readonly endpoint: "/entity/:app_id/:entity_id/import-ai-config";
|
|
2422
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2423
|
+
readonly controller: "UserAction.EntityAIImportConfig";
|
|
2424
|
+
readonly requestType: "EntityAIImportConfigReqVO";
|
|
2425
|
+
readonly scalarParams: readonly [];
|
|
2426
|
+
readonly responseType: "EntityAIImportConfigRespVO";
|
|
2427
|
+
}, {
|
|
2428
|
+
readonly scope: "user";
|
|
2429
|
+
readonly module: "entity";
|
|
2430
|
+
readonly functionName: "updateEntityBulk";
|
|
2431
|
+
readonly commandPath: readonly ["entity", "update-entity-bulk"];
|
|
2432
|
+
readonly method: "POST";
|
|
2433
|
+
readonly endpoint: "/entity/:app_id/:entity_id/bulk-update";
|
|
2434
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2435
|
+
readonly controller: "UserAction.EntityBulkUpdate";
|
|
2436
|
+
readonly requestType: "EntityBulkUpdateReqVO";
|
|
2437
|
+
readonly scalarParams: readonly [];
|
|
2438
|
+
readonly responseType: "EntityBulkUpdateRespVO";
|
|
2439
|
+
}, {
|
|
2440
|
+
readonly scope: "user";
|
|
2441
|
+
readonly module: "entity";
|
|
2442
|
+
readonly functionName: "saveEntityBulkUpdateAs";
|
|
2443
|
+
readonly commandPath: readonly ["entity", "save-entity-bulk-update-as"];
|
|
2444
|
+
readonly method: "POST";
|
|
2445
|
+
readonly endpoint: "/entity/:app_id/:entity_id/bulk-update-save-as";
|
|
2446
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2447
|
+
readonly controller: "UserAction.EntityBulkUpdateSaveAs";
|
|
2448
|
+
readonly requestType: "EntityBulkUpdateSaveAsReqVO";
|
|
2449
|
+
readonly scalarParams: readonly [];
|
|
2450
|
+
readonly responseType: "EntityBulkUpdateSaveAsRespVO";
|
|
2451
|
+
}, {
|
|
2452
|
+
readonly scope: "user";
|
|
2453
|
+
readonly module: "entity";
|
|
2454
|
+
readonly functionName: "deleteEntityComment";
|
|
2455
|
+
readonly commandPath: readonly ["entity", "delete-entity-comment"];
|
|
2456
|
+
readonly method: "POST";
|
|
2457
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/comment-delete";
|
|
2458
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2459
|
+
readonly controller: "UserAction.EntityDelComment";
|
|
2460
|
+
readonly requestType: "EntityDelCommentReqVO";
|
|
2461
|
+
readonly scalarParams: readonly [];
|
|
2462
|
+
readonly responseType: "EntityDelCommentRespVO";
|
|
2463
|
+
}, {
|
|
2464
|
+
readonly scope: "user";
|
|
2465
|
+
readonly module: "entity";
|
|
2466
|
+
readonly functionName: "doEntityAction";
|
|
2467
|
+
readonly commandPath: readonly ["entity", "do-entity-action"];
|
|
2468
|
+
readonly method: "POST";
|
|
2469
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/action/:action";
|
|
2470
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id", "action"];
|
|
2471
|
+
readonly controller: "UserAction.EntityDoAction";
|
|
2472
|
+
readonly requestType: "EntityDoActionReqVO";
|
|
2473
|
+
readonly scalarParams: readonly [];
|
|
2474
|
+
readonly responseType: "EntityDoActionRespVO";
|
|
2475
|
+
}, {
|
|
2476
|
+
readonly scope: "user";
|
|
2477
|
+
readonly module: "entity";
|
|
2478
|
+
readonly functionName: "doEntityFsmAction";
|
|
2479
|
+
readonly commandPath: readonly ["entity", "do-entity-fsm-action"];
|
|
2480
|
+
readonly method: "POST";
|
|
2481
|
+
readonly endpoint: "/entity/:app_id/:entity_id/convert/:action_code";
|
|
2482
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "action_code"];
|
|
2483
|
+
readonly controller: "UserAction.EntityDoFsmAction";
|
|
2484
|
+
readonly requestType: "EntityDoFsmActionReqVO";
|
|
2485
|
+
readonly scalarParams: readonly [];
|
|
2486
|
+
readonly responseType: "EntityDoFsmActionRespVO";
|
|
2487
|
+
}, {
|
|
2488
|
+
readonly scope: "user";
|
|
2489
|
+
readonly module: "entity";
|
|
2490
|
+
readonly functionName: "exportEntity";
|
|
2491
|
+
readonly commandPath: readonly ["entity", "export-entity"];
|
|
2492
|
+
readonly method: "POST";
|
|
2493
|
+
readonly endpoint: "/entity/:app_id/:entity_id/export";
|
|
2494
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2495
|
+
readonly controller: "UserAction.EntityExport";
|
|
2496
|
+
readonly requestType: "EntityExportReqVO";
|
|
2497
|
+
readonly scalarParams: readonly [];
|
|
2498
|
+
readonly responseType: "EntityExportRespVO";
|
|
2499
|
+
}, {
|
|
2500
|
+
readonly scope: "user";
|
|
2501
|
+
readonly module: "entity";
|
|
2502
|
+
readonly functionName: "getEntityComments";
|
|
2503
|
+
readonly commandPath: readonly ["entity", "get-entity-comments"];
|
|
2504
|
+
readonly method: "POST";
|
|
2505
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/comment-query";
|
|
2506
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2507
|
+
readonly controller: "UserAction.EntityGetComments";
|
|
2508
|
+
readonly requestType: "CommonQueryFormVO";
|
|
2509
|
+
readonly scalarParams: readonly [];
|
|
2510
|
+
readonly responseType: "EntityGetCommentsRespVO";
|
|
2511
|
+
}, {
|
|
2512
|
+
readonly scope: "user";
|
|
2513
|
+
readonly module: "entity";
|
|
2514
|
+
readonly functionName: "getEntityLogs";
|
|
2515
|
+
readonly commandPath: readonly ["entity", "get-entity-logs"];
|
|
2516
|
+
readonly method: "POST";
|
|
2517
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/log-query";
|
|
2518
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2519
|
+
readonly controller: "UserAction.EntityGetLogs";
|
|
2520
|
+
readonly requestType: "CommonQueryFormVO";
|
|
2521
|
+
readonly scalarParams: readonly [];
|
|
2522
|
+
readonly responseType: "EntityGetLogsRespVO";
|
|
2523
|
+
}, {
|
|
2524
|
+
readonly scope: "user";
|
|
2525
|
+
readonly module: "entity";
|
|
2526
|
+
readonly functionName: "importEntity";
|
|
2527
|
+
readonly commandPath: readonly ["entity", "import-entity"];
|
|
2528
|
+
readonly method: "POST";
|
|
2529
|
+
readonly endpoint: "/entity/:app_id/:entity_id/import";
|
|
2530
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2531
|
+
readonly controller: "UserAction.EntityImport";
|
|
2532
|
+
readonly requestType: "EntityImportReqVO & EntityImportActionVO";
|
|
2533
|
+
readonly scalarParams: readonly [];
|
|
2534
|
+
readonly responseType: "ImporterPostUploadRespVO | ImporterDoProcessRespVO | ImporterGetStateRespVO | ImporterInitTokenRespVO";
|
|
2535
|
+
}, {
|
|
2536
|
+
readonly scope: "user";
|
|
2537
|
+
readonly module: "entity";
|
|
2538
|
+
readonly functionName: "prepareEntityImport";
|
|
2539
|
+
readonly commandPath: readonly ["entity", "prepare-entity-import"];
|
|
2540
|
+
readonly method: "POST";
|
|
2541
|
+
readonly endpoint: "/entity/:app_id/:entity_id/import-prepare";
|
|
2542
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2543
|
+
readonly controller: "UserAction.EntityImportPrepare";
|
|
2544
|
+
readonly requestType: "EntityImportPrepareReqVO";
|
|
2545
|
+
readonly scalarParams: readonly [];
|
|
2546
|
+
readonly responseType: "EntityImportPrepareRespVO";
|
|
2547
|
+
}, {
|
|
2548
|
+
readonly scope: "user";
|
|
2549
|
+
readonly module: "entity";
|
|
2550
|
+
readonly functionName: "getEntityInfo";
|
|
2551
|
+
readonly commandPath: readonly ["entity", "get-entity-info"];
|
|
2552
|
+
readonly method: "GET";
|
|
2553
|
+
readonly endpoint: "/entity/:app_id/:entity_id";
|
|
2554
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2555
|
+
readonly controller: "UserAction.EntityInfo";
|
|
2556
|
+
readonly requestType: null;
|
|
2557
|
+
readonly scalarParams: readonly [];
|
|
2558
|
+
readonly responseType: "EntityInfoRespVO";
|
|
2559
|
+
}, {
|
|
2560
|
+
readonly scope: "user";
|
|
2561
|
+
readonly module: "entity";
|
|
2562
|
+
readonly functionName: "invokeEntityBatchOperator";
|
|
2563
|
+
readonly commandPath: readonly ["entity", "invoke-entity-batch-operator"];
|
|
2564
|
+
readonly method: "POST";
|
|
2565
|
+
readonly endpoint: "/entity/:app_id/:entity_id/invoke-batch-operator";
|
|
2566
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2567
|
+
readonly controller: "UserAction.EntityInvokeBatchOperator";
|
|
2568
|
+
readonly requestType: "EntityInvokeBatchOperatorReqVO & InvokeRequestVO";
|
|
2569
|
+
readonly scalarParams: readonly [];
|
|
2570
|
+
readonly responseType: "EntityInvokeBatchOperatorRespVO";
|
|
2571
|
+
}, {
|
|
2572
|
+
readonly scope: "user";
|
|
2573
|
+
readonly module: "entity";
|
|
2574
|
+
readonly functionName: "invokeEntityHook";
|
|
2575
|
+
readonly commandPath: readonly ["entity", "invoke-entity-hook"];
|
|
2576
|
+
readonly method: "POST";
|
|
2577
|
+
readonly endpoint: "/entity/:app_id/:entity_id/invoke/:action_id";
|
|
2578
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "action_id"];
|
|
2579
|
+
readonly controller: "UserAction.EntityInvokeHook";
|
|
2580
|
+
readonly requestType: "InvokeRequestVO";
|
|
2581
|
+
readonly scalarParams: readonly [];
|
|
2582
|
+
readonly responseType: "EntityInvokeHookRespVO";
|
|
2583
|
+
}, {
|
|
2584
|
+
readonly scope: "user";
|
|
2585
|
+
readonly module: "entity";
|
|
2586
|
+
readonly functionName: "getEntityProcessMap";
|
|
2587
|
+
readonly commandPath: readonly ["entity", "get-entity-process-map"];
|
|
2588
|
+
readonly method: "GET";
|
|
2589
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/process-map";
|
|
2590
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2591
|
+
readonly controller: "UserAction.EntityProcessMap";
|
|
2592
|
+
readonly requestType: null;
|
|
2593
|
+
readonly scalarParams: readonly [];
|
|
2594
|
+
readonly responseType: "EntityProcessMapRespVO";
|
|
2595
|
+
}, {
|
|
2596
|
+
readonly scope: "user";
|
|
2597
|
+
readonly module: "entity";
|
|
2598
|
+
readonly functionName: "getEntityPrintTemplates";
|
|
2599
|
+
readonly commandPath: readonly ["entity", "get-entity-print-templates"];
|
|
2600
|
+
readonly method: "POST";
|
|
2601
|
+
readonly endpoint: "/entity/:app_id/:entity_id/print-templates";
|
|
2602
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2603
|
+
readonly controller: "UserAction.GetPrintTemplates";
|
|
2604
|
+
readonly requestType: null;
|
|
2605
|
+
readonly scalarParams: readonly [];
|
|
2606
|
+
readonly responseType: "EntityPrintTemplatesListRespVO";
|
|
2607
|
+
}, {
|
|
2608
|
+
readonly scope: "user";
|
|
2609
|
+
readonly module: "flow";
|
|
2610
|
+
readonly functionName: "queryUserFlow";
|
|
2611
|
+
readonly commandPath: readonly ["flow", "query-user-flow"];
|
|
2612
|
+
readonly method: "POST";
|
|
2613
|
+
readonly endpoint: "/flows";
|
|
2614
|
+
readonly endpointParams: readonly [];
|
|
2615
|
+
readonly controller: "UserFlow.Query";
|
|
2616
|
+
readonly requestType: "UserFlowQueryReqVO";
|
|
2617
|
+
readonly scalarParams: readonly [];
|
|
2618
|
+
readonly responseType: "UserFlowQueryRespVO";
|
|
2619
|
+
}, {
|
|
2620
|
+
readonly scope: "user";
|
|
2621
|
+
readonly module: "flow";
|
|
2622
|
+
readonly functionName: "getUserFlowStatus";
|
|
2623
|
+
readonly commandPath: readonly ["flow", "get-user-flow-status"];
|
|
2624
|
+
readonly method: "POST";
|
|
2625
|
+
readonly endpoint: "/flows/status";
|
|
2626
|
+
readonly endpointParams: readonly [];
|
|
2627
|
+
readonly controller: "UserFlow.Status";
|
|
2628
|
+
readonly requestType: null;
|
|
2629
|
+
readonly scalarParams: readonly [];
|
|
2630
|
+
readonly responseType: "UserFlowStatusRespVO";
|
|
2631
|
+
}, {
|
|
2632
|
+
readonly scope: "user";
|
|
2633
|
+
readonly module: "global-action";
|
|
2634
|
+
readonly functionName: "acceptTenantInvitation";
|
|
2635
|
+
readonly commandPath: readonly ["global-action", "accept-tenant-invitation"];
|
|
2636
|
+
readonly method: "POST";
|
|
2637
|
+
readonly endpoint: "/tenant/accept-invitation";
|
|
2638
|
+
readonly endpointParams: readonly [];
|
|
2639
|
+
readonly controller: "GlobalAction.AcceptInvitation";
|
|
2640
|
+
readonly requestType: "GlobalActionAcceptInvitationReqVO";
|
|
2641
|
+
readonly scalarParams: readonly [];
|
|
2642
|
+
readonly responseType: "GlobalActionAcceptInvitationRespVO";
|
|
2643
|
+
}, {
|
|
2644
|
+
readonly scope: "user";
|
|
2645
|
+
readonly module: "global-action";
|
|
2646
|
+
readonly functionName: "acceptTenantInvitationLink";
|
|
2647
|
+
readonly commandPath: readonly ["global-action", "accept-tenant-invitation-link"];
|
|
2648
|
+
readonly method: "POST";
|
|
2649
|
+
readonly endpoint: "/tenant/accept-invitation-link";
|
|
2650
|
+
readonly endpointParams: readonly [];
|
|
2651
|
+
readonly controller: "GlobalAction.AcceptInvitationLink";
|
|
2652
|
+
readonly requestType: "GlobalActionAcceptInvitationLinkReqVO";
|
|
2653
|
+
readonly scalarParams: readonly [];
|
|
2654
|
+
readonly responseType: "GlobalActionAcceptInvitationLinkRespVO";
|
|
2655
|
+
}, {
|
|
2656
|
+
readonly scope: "user";
|
|
2657
|
+
readonly module: "global-action";
|
|
2658
|
+
readonly functionName: "createTenant";
|
|
2659
|
+
readonly commandPath: readonly ["global-action", "create-tenant"];
|
|
2660
|
+
readonly method: "POST";
|
|
2661
|
+
readonly endpoint: "/tenant";
|
|
2662
|
+
readonly endpointParams: readonly [];
|
|
2663
|
+
readonly controller: "GlobalAction.CreateTenant";
|
|
2664
|
+
readonly requestType: "GlobalActionCreateTenantReqVO";
|
|
2665
|
+
readonly scalarParams: readonly [];
|
|
2666
|
+
readonly responseType: "GlobalActionCreateTenantRespVO";
|
|
2667
|
+
}, {
|
|
2668
|
+
readonly scope: "user";
|
|
2669
|
+
readonly module: "global-action";
|
|
2670
|
+
readonly functionName: "setDefaultTenant";
|
|
2671
|
+
readonly commandPath: readonly ["global-action", "set-default-tenant"];
|
|
2672
|
+
readonly method: "POST";
|
|
2673
|
+
readonly endpoint: "/tenant/set-default";
|
|
2674
|
+
readonly endpointParams: readonly [];
|
|
2675
|
+
readonly controller: "GlobalAction.SetDefaultTenant";
|
|
2676
|
+
readonly requestType: "GlobalActionSetDefaultTenantReqVO";
|
|
2677
|
+
readonly scalarParams: readonly [];
|
|
2678
|
+
readonly responseType: "GlobalActionSetDefaultTenantRespVO";
|
|
2679
|
+
}, {
|
|
2680
|
+
readonly scope: "user";
|
|
2681
|
+
readonly module: "global-action";
|
|
2682
|
+
readonly functionName: "verifyEmail";
|
|
2683
|
+
readonly commandPath: readonly ["global-action", "verify-email"];
|
|
2684
|
+
readonly method: "POST";
|
|
2685
|
+
readonly endpoint: "/auth/email-verify";
|
|
2686
|
+
readonly endpointParams: readonly [];
|
|
2687
|
+
readonly controller: "GlobalAction.EmailVerify";
|
|
2688
|
+
readonly requestType: "GlobalActionEmailVerifyReqVO";
|
|
2689
|
+
readonly scalarParams: readonly [];
|
|
2690
|
+
readonly responseType: "GlobalActionEmailVerifyRespVO";
|
|
2691
|
+
}, {
|
|
2692
|
+
readonly scope: "user";
|
|
2693
|
+
readonly module: "global-action";
|
|
2694
|
+
readonly functionName: "resendEmailVerify";
|
|
2695
|
+
readonly commandPath: readonly ["global-action", "resend-email-verify"];
|
|
2696
|
+
readonly method: "POST";
|
|
2697
|
+
readonly endpoint: "/auth/resend-email-verify";
|
|
2698
|
+
readonly endpointParams: readonly [];
|
|
2699
|
+
readonly controller: "GlobalAction.EmailVerifyResend";
|
|
2700
|
+
readonly requestType: "GlobalActionEmailVerifyResendReqVO";
|
|
2701
|
+
readonly scalarParams: readonly [];
|
|
2702
|
+
readonly responseType: "GlobalActionEmailVerifyResendRespVO";
|
|
2703
|
+
}, {
|
|
2704
|
+
readonly scope: "user";
|
|
2705
|
+
readonly module: "global-action";
|
|
2706
|
+
readonly functionName: "getEmailVerifyStatus";
|
|
2707
|
+
readonly commandPath: readonly ["global-action", "get-email-verify-status"];
|
|
2708
|
+
readonly method: "POST";
|
|
2709
|
+
readonly endpoint: "/auth/email-verify-status";
|
|
2710
|
+
readonly endpointParams: readonly [];
|
|
2711
|
+
readonly controller: "GlobalAction.EmailVerifyStatus";
|
|
2712
|
+
readonly requestType: null;
|
|
2713
|
+
readonly scalarParams: readonly [];
|
|
2714
|
+
readonly responseType: "GlobalActionEmailVerifyStatusRespVO";
|
|
2715
|
+
}, {
|
|
2716
|
+
readonly scope: "user";
|
|
2717
|
+
readonly module: "global-action";
|
|
2718
|
+
readonly functionName: "getEntry";
|
|
2719
|
+
readonly commandPath: readonly ["global-action", "get-entry"];
|
|
2720
|
+
readonly method: "GET";
|
|
2721
|
+
readonly endpoint: "/entry";
|
|
2722
|
+
readonly endpointParams: readonly [];
|
|
2723
|
+
readonly controller: "GlobalAction.Entry";
|
|
2724
|
+
readonly requestType: null;
|
|
2725
|
+
readonly scalarParams: readonly [{
|
|
2726
|
+
readonly name: "refresh";
|
|
2727
|
+
readonly type: "boolean";
|
|
2728
|
+
readonly hasDefault: true;
|
|
2729
|
+
}];
|
|
2730
|
+
readonly responseType: "GlobalActionEntryRespVO";
|
|
2731
|
+
}, {
|
|
2732
|
+
readonly scope: "user";
|
|
2733
|
+
readonly module: "global-action";
|
|
2734
|
+
readonly functionName: "getTenantAuthRole";
|
|
2735
|
+
readonly commandPath: readonly ["global-action", "get-tenant-auth-role"];
|
|
2736
|
+
readonly method: "GET";
|
|
2737
|
+
readonly endpoint: "/tenant/authrole";
|
|
2738
|
+
readonly endpointParams: readonly [];
|
|
2739
|
+
readonly controller: "GlobalAction.GetAuthRole";
|
|
2740
|
+
readonly requestType: null;
|
|
2741
|
+
readonly scalarParams: readonly [];
|
|
2742
|
+
readonly responseType: "GlobalActionGetAuthRoleRespVO";
|
|
2743
|
+
}, {
|
|
2744
|
+
readonly scope: "user";
|
|
2745
|
+
readonly module: "global-action";
|
|
2746
|
+
readonly functionName: "getTenantInvitationLink";
|
|
2747
|
+
readonly commandPath: readonly ["global-action", "get-tenant-invitation-link"];
|
|
2748
|
+
readonly method: "GET";
|
|
2749
|
+
readonly endpoint: "/tenant/invitation-link/:id";
|
|
2750
|
+
readonly endpointParams: readonly ["id"];
|
|
2751
|
+
readonly controller: "GlobalAction.GetInvitationLink";
|
|
2752
|
+
readonly requestType: null;
|
|
2753
|
+
readonly scalarParams: readonly [];
|
|
2754
|
+
readonly responseType: "GlobalActionGetInvitationLinkRespVO";
|
|
2755
|
+
}, {
|
|
2756
|
+
readonly scope: "user";
|
|
2757
|
+
readonly module: "global-action";
|
|
2758
|
+
readonly functionName: "getLink";
|
|
2759
|
+
readonly commandPath: readonly ["global-action", "get-link"];
|
|
2760
|
+
readonly method: "GET";
|
|
2761
|
+
readonly endpoint: "/link/:name";
|
|
2762
|
+
readonly endpointParams: readonly ["name"];
|
|
2763
|
+
readonly controller: "GlobalAction.LinkTo";
|
|
2764
|
+
readonly requestType: null;
|
|
2765
|
+
readonly scalarParams: readonly [];
|
|
2766
|
+
readonly responseType: "void";
|
|
2767
|
+
}, {
|
|
2768
|
+
readonly scope: "user";
|
|
2769
|
+
readonly module: "global-action";
|
|
2770
|
+
readonly functionName: "setProfileEmail";
|
|
2771
|
+
readonly commandPath: readonly ["global-action", "set-profile-email"];
|
|
2772
|
+
readonly method: "POST";
|
|
2773
|
+
readonly endpoint: "/user-profile/set-email";
|
|
2774
|
+
readonly endpointParams: readonly [];
|
|
2775
|
+
readonly controller: "GlobalAction.ProfileSetEmail";
|
|
2776
|
+
readonly requestType: "GlobalActionProfileSetEmailReqVO";
|
|
2777
|
+
readonly scalarParams: readonly [];
|
|
2778
|
+
readonly responseType: "GlobalActionProfileSetEmailRespVO";
|
|
2779
|
+
}, {
|
|
2780
|
+
readonly scope: "user";
|
|
2781
|
+
readonly module: "global-action";
|
|
2782
|
+
readonly functionName: "cancelProfileEmail";
|
|
2783
|
+
readonly commandPath: readonly ["global-action", "cancel-profile-email"];
|
|
2784
|
+
readonly method: "DELETE";
|
|
2785
|
+
readonly endpoint: "/user-profile/set-email/:hashid";
|
|
2786
|
+
readonly endpointParams: readonly ["hashid"];
|
|
2787
|
+
readonly controller: "GlobalAction.ProfileSetEmailCancel";
|
|
2788
|
+
readonly requestType: null;
|
|
2789
|
+
readonly scalarParams: readonly [];
|
|
2790
|
+
readonly responseType: "GlobalActionProfileSetEmailCancelRespVO";
|
|
2791
|
+
}, {
|
|
2792
|
+
readonly scope: "user";
|
|
2793
|
+
readonly module: "global-action";
|
|
2794
|
+
readonly functionName: "getProfileEmailHistory";
|
|
2795
|
+
readonly commandPath: readonly ["global-action", "get-profile-email-history"];
|
|
2796
|
+
readonly method: "GET";
|
|
2797
|
+
readonly endpoint: "/user-profile/set-email";
|
|
2798
|
+
readonly endpointParams: readonly [];
|
|
2799
|
+
readonly controller: "GlobalAction.ProfileSetEmailHistory";
|
|
2800
|
+
readonly requestType: null;
|
|
2801
|
+
readonly scalarParams: readonly [];
|
|
2802
|
+
readonly responseType: "GlobalActionProfileSetEmailHistoryRespVO";
|
|
2803
|
+
}, {
|
|
2804
|
+
readonly scope: "user";
|
|
2805
|
+
readonly module: "kiosk";
|
|
2806
|
+
readonly functionName: "getKioskScreens";
|
|
2807
|
+
readonly commandPath: readonly ["kiosk", "get-kiosk-screens"];
|
|
2808
|
+
readonly method: "GET";
|
|
2809
|
+
readonly endpoint: "/apps/:app_id/kiosk";
|
|
2810
|
+
readonly endpointParams: readonly ["app_id"];
|
|
2811
|
+
readonly controller: "UserAction.KioskScreens";
|
|
2812
|
+
readonly requestType: null;
|
|
2813
|
+
readonly scalarParams: readonly [];
|
|
2814
|
+
readonly responseType: "KioskScreensRespVO";
|
|
2815
|
+
}, {
|
|
2816
|
+
readonly scope: "user";
|
|
2817
|
+
readonly module: "profile";
|
|
2818
|
+
readonly functionName: "getUserProfile";
|
|
2819
|
+
readonly commandPath: readonly ["profile", "get-user-profile"];
|
|
2820
|
+
readonly method: "GET";
|
|
2821
|
+
readonly endpoint: "/user-profile";
|
|
2822
|
+
readonly endpointParams: readonly [];
|
|
2823
|
+
readonly controller: "UserAction.UserProfile";
|
|
2824
|
+
readonly requestType: null;
|
|
2825
|
+
readonly scalarParams: readonly [];
|
|
2826
|
+
readonly responseType: "UserProfileRespVO";
|
|
2827
|
+
}, {
|
|
2828
|
+
readonly scope: "user";
|
|
2829
|
+
readonly module: "profile";
|
|
2830
|
+
readonly functionName: "updateUserProfile";
|
|
2831
|
+
readonly commandPath: readonly ["profile", "update-user-profile"];
|
|
2832
|
+
readonly method: "PUT";
|
|
2833
|
+
readonly endpoint: "/user-profile";
|
|
2834
|
+
readonly endpointParams: readonly [];
|
|
2835
|
+
readonly controller: "UserAction.UserProfileUpdate";
|
|
2836
|
+
readonly requestType: "UserProfileUpdateReqVO";
|
|
2837
|
+
readonly scalarParams: readonly [];
|
|
2838
|
+
readonly responseType: "UserProfileUpdateRespVO";
|
|
2839
|
+
}, {
|
|
2840
|
+
readonly scope: "user";
|
|
2841
|
+
readonly module: "profile";
|
|
2842
|
+
readonly functionName: "updateUserAvatar";
|
|
2843
|
+
readonly commandPath: readonly ["profile", "update-user-avatar"];
|
|
2844
|
+
readonly method: "PUT";
|
|
2845
|
+
readonly endpoint: "/user-profile/update-avatar";
|
|
2846
|
+
readonly endpointParams: readonly [];
|
|
2847
|
+
readonly controller: "UserAction.UpdateAvatar";
|
|
2848
|
+
readonly requestType: "UpdateAvatarReqVO";
|
|
2849
|
+
readonly scalarParams: readonly [];
|
|
2850
|
+
readonly responseType: "UpdateAvatarRespVO";
|
|
2851
|
+
}, {
|
|
2852
|
+
readonly scope: "user";
|
|
2853
|
+
readonly module: "profile";
|
|
2854
|
+
readonly functionName: "getUserAuthChannels";
|
|
2855
|
+
readonly commandPath: readonly ["profile", "get-user-auth-channels"];
|
|
2856
|
+
readonly method: "GET";
|
|
2857
|
+
readonly endpoint: "/user-profile/auth-channels";
|
|
2858
|
+
readonly endpointParams: readonly [];
|
|
2859
|
+
readonly controller: "UserAction.AuthChannels";
|
|
2860
|
+
readonly requestType: null;
|
|
2861
|
+
readonly scalarParams: readonly [];
|
|
2862
|
+
readonly responseType: "AuthChannelsRespVO";
|
|
2863
|
+
}, {
|
|
2864
|
+
readonly scope: "user";
|
|
2865
|
+
readonly module: "profile";
|
|
2866
|
+
readonly functionName: "changeUserPassword";
|
|
2867
|
+
readonly commandPath: readonly ["profile", "change-user-password"];
|
|
2868
|
+
readonly method: "POST";
|
|
2869
|
+
readonly endpoint: "/user-profile/change-password";
|
|
2870
|
+
readonly endpointParams: readonly [];
|
|
2871
|
+
readonly controller: "UserAction.ChangePassword";
|
|
2872
|
+
readonly requestType: "ChangePasswordReqVO";
|
|
2873
|
+
readonly scalarParams: readonly [];
|
|
2874
|
+
readonly responseType: "ChangePasswordRespVO";
|
|
2875
|
+
}, {
|
|
2876
|
+
readonly scope: "user";
|
|
2877
|
+
readonly module: "profile";
|
|
2878
|
+
readonly functionName: "fetchEntityUserToken";
|
|
2879
|
+
readonly commandPath: readonly ["profile", "fetch-entity-user-token"];
|
|
2880
|
+
readonly method: "POST";
|
|
2881
|
+
readonly endpoint: "/entity/:app_id/:entity_id/user-token";
|
|
2882
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2883
|
+
readonly controller: "UserAction.FetchUserToken";
|
|
2884
|
+
readonly requestType: null;
|
|
2885
|
+
readonly scalarParams: readonly [];
|
|
2886
|
+
readonly responseType: "FetchUserTokenRespVO";
|
|
2887
|
+
}, {
|
|
2888
|
+
readonly scope: "user";
|
|
2889
|
+
readonly module: "workflow";
|
|
2890
|
+
readonly functionName: "putEntityQueryKeeper";
|
|
2891
|
+
readonly commandPath: readonly ["workflow", "put-entity-query-keeper"];
|
|
2892
|
+
readonly method: "POST";
|
|
2893
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-keeper";
|
|
2894
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2895
|
+
readonly controller: "UserAction.EntityPutQueryKeeper";
|
|
2896
|
+
readonly requestType: "EntityPutQueryKeeperReqVO";
|
|
2897
|
+
readonly scalarParams: readonly [];
|
|
2898
|
+
readonly responseType: "EntityPutQueryKeeperRespVO";
|
|
2899
|
+
}, {
|
|
2900
|
+
readonly scope: "user";
|
|
2901
|
+
readonly module: "workflow";
|
|
2902
|
+
readonly functionName: "queryEntity";
|
|
2903
|
+
readonly commandPath: readonly ["workflow", "query-entity"];
|
|
2904
|
+
readonly method: "POST";
|
|
2905
|
+
readonly endpoint: "/entity/:app_id/:entity_id/data-query";
|
|
2906
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2907
|
+
readonly controller: "UserAction.EntityQuery";
|
|
2908
|
+
readonly requestType: "EntityQueryReqVO";
|
|
2909
|
+
readonly scalarParams: readonly [];
|
|
2910
|
+
readonly responseType: "EntityQueryRespVO";
|
|
2911
|
+
}, {
|
|
2912
|
+
readonly scope: "user";
|
|
2913
|
+
readonly module: "workflow";
|
|
2914
|
+
readonly functionName: "filterEntityQuery";
|
|
2915
|
+
readonly commandPath: readonly ["workflow", "filter-entity-query"];
|
|
2916
|
+
readonly method: "POST";
|
|
2917
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-filter";
|
|
2918
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2919
|
+
readonly controller: "UserAction.EntityQueryFilter";
|
|
2920
|
+
readonly requestType: "EntityQueryFilterReqVO";
|
|
2921
|
+
readonly scalarParams: readonly [];
|
|
2922
|
+
readonly responseType: "EntityQueryFilterRespVO";
|
|
2923
|
+
}, {
|
|
2924
|
+
readonly scope: "user";
|
|
2925
|
+
readonly module: "workflow";
|
|
2926
|
+
readonly functionName: "queryEntitySelection";
|
|
2927
|
+
readonly commandPath: readonly ["workflow", "query-entity-selection"];
|
|
2928
|
+
readonly method: "POST";
|
|
2929
|
+
readonly endpoint: "/entity/:app_id/:entity_id/selection-query/:action";
|
|
2930
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "action"];
|
|
2931
|
+
readonly controller: "UserAction.EntityQuerySelection";
|
|
2932
|
+
readonly requestType: "EntitySelectionActionReqVO";
|
|
2933
|
+
readonly scalarParams: readonly [];
|
|
2934
|
+
readonly responseType: "EntityQuerySelectionRespVO";
|
|
2935
|
+
}, {
|
|
2936
|
+
readonly scope: "user";
|
|
2937
|
+
readonly module: "workflow";
|
|
2938
|
+
readonly functionName: "resolveEntityWorkflow";
|
|
2939
|
+
readonly commandPath: readonly ["workflow", "resolve-entity-workflow"];
|
|
2940
|
+
readonly method: "POST";
|
|
2941
|
+
readonly endpoint: "/entity/:app_id/:entity_id/resolve-workflow";
|
|
2942
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2943
|
+
readonly controller: "UserAction.EntityResolveWorkflow";
|
|
2944
|
+
readonly requestType: "EntityResolveWorkflowReqVO";
|
|
2945
|
+
readonly scalarParams: readonly [];
|
|
2946
|
+
readonly responseType: "EntityResolveWorkflowRespVO";
|
|
2947
|
+
}, {
|
|
2948
|
+
readonly scope: "user";
|
|
2949
|
+
readonly module: "workflow";
|
|
2950
|
+
readonly functionName: "getEntityRow";
|
|
2951
|
+
readonly commandPath: readonly ["workflow", "get-entity-row"];
|
|
2952
|
+
readonly method: "GET";
|
|
2953
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id";
|
|
2954
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2955
|
+
readonly controller: "UserAction.EntityRow";
|
|
2956
|
+
readonly requestType: null;
|
|
2957
|
+
readonly scalarParams: readonly [{
|
|
2958
|
+
readonly name: "params";
|
|
2959
|
+
readonly type: "Record<string, any>";
|
|
2960
|
+
readonly hasDefault: true;
|
|
2961
|
+
}];
|
|
2962
|
+
readonly responseType: "EntityRowRespVO";
|
|
2963
|
+
}, {
|
|
2964
|
+
readonly scope: "user";
|
|
2965
|
+
readonly module: "workflow";
|
|
2966
|
+
readonly functionName: "deleteEntityRow";
|
|
2967
|
+
readonly commandPath: readonly ["workflow", "delete-entity-row"];
|
|
2968
|
+
readonly method: "POST";
|
|
2969
|
+
readonly endpoint: "/entity/:app_id/:entity_id/delete-item";
|
|
2970
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2971
|
+
readonly controller: "UserAction.EntityRowDelete";
|
|
2972
|
+
readonly requestType: "EntitySelectionActionReqVO";
|
|
2973
|
+
readonly scalarParams: readonly [];
|
|
2974
|
+
readonly responseType: "EntityRowDeleteRespVO";
|
|
2975
|
+
}, {
|
|
2976
|
+
readonly scope: "user";
|
|
2977
|
+
readonly module: "workflow";
|
|
2978
|
+
readonly functionName: "restoreEntityRow";
|
|
2979
|
+
readonly commandPath: readonly ["workflow", "restore-entity-row"];
|
|
2980
|
+
readonly method: "POST";
|
|
2981
|
+
readonly endpoint: "/entity/:app_id/:entity_id/restore-item";
|
|
2982
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
2983
|
+
readonly controller: "UserAction.EntityRowRestore";
|
|
2984
|
+
readonly requestType: "EntitySelectionActionReqVO";
|
|
2985
|
+
readonly scalarParams: readonly [];
|
|
2986
|
+
readonly responseType: "{ restored: number }";
|
|
2987
|
+
}, {
|
|
2988
|
+
readonly scope: "user";
|
|
2989
|
+
readonly module: "workflow";
|
|
2990
|
+
readonly functionName: "updateEntityRow";
|
|
2991
|
+
readonly commandPath: readonly ["workflow", "update-entity-row"];
|
|
2992
|
+
readonly method: "PUT";
|
|
2993
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id";
|
|
2994
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
2995
|
+
readonly controller: "UserAction.EntityUpdate";
|
|
2996
|
+
readonly requestType: "EntityUpdateReqVO";
|
|
2997
|
+
readonly scalarParams: readonly [];
|
|
2998
|
+
readonly responseType: "EntityUpdateRespVO";
|
|
2999
|
+
}, {
|
|
3000
|
+
readonly scope: "user";
|
|
3001
|
+
readonly module: "workflow";
|
|
3002
|
+
readonly functionName: "validateEntityUniq";
|
|
3003
|
+
readonly commandPath: readonly ["workflow", "validate-entity-uniq"];
|
|
3004
|
+
readonly method: "POST";
|
|
3005
|
+
readonly endpoint: "/entity/:app_id/:entity_id/validate-uniq";
|
|
3006
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
3007
|
+
readonly controller: "UserAction.EntityValidateUniq";
|
|
3008
|
+
readonly requestType: "EntityValidateUniqReqVO";
|
|
3009
|
+
readonly scalarParams: readonly [];
|
|
3010
|
+
readonly responseType: "EntityValidateUniqRespVO";
|
|
3011
|
+
}, {
|
|
3012
|
+
readonly scope: "user";
|
|
3013
|
+
readonly module: "workflow";
|
|
3014
|
+
readonly functionName: "insertEntity";
|
|
3015
|
+
readonly commandPath: readonly ["workflow", "insert-entity"];
|
|
3016
|
+
readonly method: "POST";
|
|
3017
|
+
readonly endpoint: "/entity/:app_id/:entity_id/insert";
|
|
3018
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
3019
|
+
readonly controller: "UserAction.Insert";
|
|
3020
|
+
readonly requestType: "InsertReqVO";
|
|
3021
|
+
readonly scalarParams: readonly [];
|
|
3022
|
+
readonly responseType: "InsertRespVO";
|
|
3023
|
+
}, {
|
|
3024
|
+
readonly scope: "user";
|
|
3025
|
+
readonly module: "workflow";
|
|
3026
|
+
readonly functionName: "prepareEntityInsert";
|
|
3027
|
+
readonly commandPath: readonly ["workflow", "prepare-entity-insert"];
|
|
3028
|
+
readonly method: "POST";
|
|
3029
|
+
readonly endpoint: "/entity/:app_id/:entity_id/prepare";
|
|
3030
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
3031
|
+
readonly controller: "UserAction.InsertPrepare";
|
|
3032
|
+
readonly requestType: "InsertPrepareReqVO";
|
|
3033
|
+
readonly scalarParams: readonly [];
|
|
3034
|
+
readonly responseType: "InsertPrepareRespVO";
|
|
3035
|
+
}, {
|
|
3036
|
+
readonly scope: "user";
|
|
3037
|
+
readonly module: "workflow";
|
|
3038
|
+
readonly functionName: "queryEntityWorkflowApproveUsers";
|
|
3039
|
+
readonly commandPath: readonly ["workflow", "query-entity-workflow-approve-users"];
|
|
3040
|
+
readonly method: "POST";
|
|
3041
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-approve-users";
|
|
3042
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
3043
|
+
readonly controller: "UserAction.EntityWorkflowApproveUsers";
|
|
3044
|
+
readonly requestType: null;
|
|
3045
|
+
readonly scalarParams: readonly [];
|
|
3046
|
+
readonly responseType: "EntityWorkflowApproveUsersRespVO";
|
|
3047
|
+
}, {
|
|
3048
|
+
readonly scope: "user";
|
|
3049
|
+
readonly module: "workflow";
|
|
3050
|
+
readonly functionName: "queryEntityWorkflowNodes";
|
|
3051
|
+
readonly commandPath: readonly ["workflow", "query-entity-workflow-nodes"];
|
|
3052
|
+
readonly method: "POST";
|
|
3053
|
+
readonly endpoint: "/entity/:app_id/:entity_id/query-workflow-nodes";
|
|
3054
|
+
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
3055
|
+
readonly controller: "UserAction.EntityWorkflowNodes";
|
|
3056
|
+
readonly requestType: null;
|
|
3057
|
+
readonly scalarParams: readonly [];
|
|
3058
|
+
readonly responseType: "EntityWorkflowNodesRespVO";
|
|
3059
|
+
}, {
|
|
3060
|
+
readonly scope: "user";
|
|
3061
|
+
readonly module: "workflow";
|
|
3062
|
+
readonly functionName: "getEntitySubformItems";
|
|
3063
|
+
readonly commandPath: readonly ["workflow", "get-entity-subform-items"];
|
|
3064
|
+
readonly method: "POST";
|
|
3065
|
+
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/get-subitems";
|
|
3066
|
+
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
3067
|
+
readonly controller: "UserAction.GetSubformItems";
|
|
3068
|
+
readonly requestType: "GetSubformItemsReqVO";
|
|
3069
|
+
readonly scalarParams: readonly [];
|
|
3070
|
+
readonly responseType: "GetSubformItemsRespVO";
|
|
3071
|
+
}];
|
|
3072
|
+
//# sourceMappingURL=command_registry.generated.d.ts.map
|