@carthooks/arcubase-cli 0.1.10 → 0.1.12
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 +1274 -375
- package/bundle/arcubase.mjs +1274 -375
- package/dist/generated/command_registry.generated.d.ts +36 -35
- package/dist/generated/command_registry.generated.d.ts.map +1 -1
- package/dist/generated/command_registry.generated.js +37 -36
- package/dist/generated/type_index.generated.d.ts +23 -23
- package/dist/generated/type_index.generated.js +23 -23
- package/dist/runtime/entity_save_schema.d.ts.map +1 -1
- package/dist/runtime/entity_save_schema.js +30 -0
- package/dist/runtime/env.d.ts +2 -1
- package/dist/runtime/env.d.ts.map +1 -1
- package/dist/runtime/env.js +10 -1
- package/dist/runtime/errors.d.ts +2 -0
- package/dist/runtime/errors.d.ts.map +1 -1
- package/dist/runtime/execute.d.ts +4 -2
- package/dist/runtime/execute.d.ts.map +1 -1
- package/dist/runtime/execute.js +944 -134
- package/dist/runtime/paths.d.ts +1 -1
- package/dist/runtime/paths.d.ts.map +1 -1
- package/dist/runtime/paths.js +9 -2
- package/dist/runtime/upload.d.ts +1 -11
- package/dist/runtime/upload.d.ts.map +1 -1
- package/dist/runtime/upload.js +19 -133
- package/dist/runtime/zod_registry.d.ts +5 -3
- package/dist/runtime/zod_registry.d.ts.map +1 -1
- package/dist/runtime/zod_registry.js +108 -48
- package/dist/tests/bootstrap.test.js +12 -0
- package/dist/tests/command_registry.test.js +8 -0
- package/dist/tests/docs_readability.test.d.ts +2 -0
- package/dist/tests/docs_readability.test.d.ts.map +1 -0
- package/dist/tests/docs_readability.test.js +87 -0
- package/dist/tests/entity_save_schema.test.js +22 -0
- package/dist/tests/execute_validation.test.js +381 -44
- package/dist/tests/help.test.js +45 -8
- package/dist/tests/upload.test.js +30 -77
- package/package.json +1 -1
- package/sdk-dist/docs/runtime-reference/README.md +43 -29
- package/sdk-dist/docs/runtime-reference/access-rule.md +109 -0
- package/sdk-dist/docs/runtime-reference/condition.md +182 -0
- package/sdk-dist/docs/runtime-reference/entity-schema/README.md +6 -5
- package/sdk-dist/docs/runtime-reference/entity-schema/checkbox.md +1 -1
- package/sdk-dist/docs/runtime-reference/entity-schema/file.md +2 -2
- package/sdk-dist/docs/runtime-reference/entity-schema/image.md +2 -2
- package/sdk-dist/docs/runtime-reference/entity-schema/linkto.md +3 -3
- package/sdk-dist/docs/runtime-reference/entity-schema/number.md +1 -1
- package/sdk-dist/docs/runtime-reference/entity-schema/query.md +3 -3
- package/sdk-dist/docs/runtime-reference/entity-schema/relation.md +3 -3
- package/sdk-dist/docs/runtime-reference/entity-schema/relationfield.md +3 -3
- package/sdk-dist/docs/runtime-reference/entity-schema/status.md +1 -1
- package/sdk-dist/docs/runtime-reference/entity-schema/text.md +1 -1
- package/sdk-dist/docs/runtime-reference/entity-schema.md +28 -21
- package/sdk-dist/docs/runtime-reference/examples/README.md +1 -1
- package/sdk-dist/docs/runtime-reference/examples/crm-01/README.md +30 -11
- package/sdk-dist/docs/runtime-reference/examples/crm-01/contact.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/contact.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/create-app.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/customer.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/customer.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/follow-up.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/follow-up.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.bulk-update.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.query.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.row.insert.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/crm-01/lead.selection.condition.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/oms-01/README.md +26 -26
- package/sdk-dist/docs/runtime-reference/examples/oms-01/sales-order.row.insert.json +1 -1
- package/sdk-dist/docs/runtime-reference/examples/wms-01/README.md +26 -10
- package/sdk-dist/docs/runtime-reference/examples/wms-01/create-app.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/goods-receipt.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/goods-receipt.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/inventory-snapshot.bulk-update.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/inventory-snapshot.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/inventory-snapshot.query.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/inventory-snapshot.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/inventory-snapshot.selection.condition.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/item-master.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/item-master.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/stock-issue.create-entity.json +1 -0
- package/sdk-dist/docs/runtime-reference/examples/wms-01/stock-issue.schema.json +1 -0
- package/sdk-dist/docs/runtime-reference/row-crud.md +35 -8
- package/sdk-dist/docs/runtime-reference/search-and-bulk-actions.md +31 -95
- package/sdk-dist/docs/runtime-reference/selection.md +128 -0
- package/sdk-dist/docs/runtime-reference/table-lifecycle.md +113 -30
- package/sdk-dist/docs/runtime-reference/uploads.md +30 -59
- package/sdk-dist/docs/runtime-reference/workflow/README.md +129 -13
- package/sdk-dist/generated/command_registry.generated.ts +37 -36
- package/sdk-dist/generated/type_index.generated.ts +23 -23
- package/src/generated/command_registry.generated.ts +37 -36
- package/src/generated/type_index.generated.ts +23 -23
- package/src/runtime/entity_save_schema.ts +30 -0
- package/src/runtime/env.ts +14 -2
- package/src/runtime/errors.ts +2 -0
- package/src/runtime/execute.ts +1166 -134
- package/src/runtime/paths.ts +11 -2
- package/src/runtime/upload.ts +19 -178
- package/src/runtime/zod_registry.ts +113 -48
- package/src/tests/bootstrap.test.ts +16 -0
- package/src/tests/command_registry.test.ts +9 -0
- package/src/tests/docs_readability.test.ts +96 -0
- package/src/tests/entity_save_schema.test.ts +22 -0
- package/src/tests/execute_validation.test.ts +508 -47
- package/src/tests/help.test.ts +49 -8
- package/src/tests/upload.test.ts +34 -91
|
@@ -35,7 +35,7 @@ export declare const adminCommands: readonly [{
|
|
|
35
35
|
readonly responseType: "AppListRespVO";
|
|
36
36
|
}, {
|
|
37
37
|
readonly scope: "admin";
|
|
38
|
-
readonly module: "
|
|
38
|
+
readonly module: "app";
|
|
39
39
|
readonly functionName: "getAppDetail";
|
|
40
40
|
readonly commandPath: readonly ["app", "get"];
|
|
41
41
|
readonly method: "GET";
|
|
@@ -92,7 +92,7 @@ export declare const adminCommands: readonly [{
|
|
|
92
92
|
readonly responseType: "boolean";
|
|
93
93
|
}, {
|
|
94
94
|
readonly scope: "admin";
|
|
95
|
-
readonly module: "
|
|
95
|
+
readonly module: "table";
|
|
96
96
|
readonly functionName: "getEntities";
|
|
97
97
|
readonly commandPath: readonly ["table", "list"];
|
|
98
98
|
readonly method: "GET";
|
|
@@ -107,7 +107,7 @@ export declare const adminCommands: readonly [{
|
|
|
107
107
|
readonly responseType: "AppGetEntitiesRespVO";
|
|
108
108
|
}, {
|
|
109
109
|
readonly scope: "admin";
|
|
110
|
-
readonly module: "
|
|
110
|
+
readonly module: "table";
|
|
111
111
|
readonly functionName: "adminGetEntityInfo";
|
|
112
112
|
readonly commandPath: readonly ["table", "get"];
|
|
113
113
|
readonly method: "GET";
|
|
@@ -125,7 +125,7 @@ export declare const adminCommands: readonly [{
|
|
|
125
125
|
readonly responseType: "EntityInfoRespVO";
|
|
126
126
|
}, {
|
|
127
127
|
readonly scope: "admin";
|
|
128
|
-
readonly module: "
|
|
128
|
+
readonly module: "table";
|
|
129
129
|
readonly functionName: "createEntity";
|
|
130
130
|
readonly commandPath: readonly ["table", "create"];
|
|
131
131
|
readonly method: "POST";
|
|
@@ -140,7 +140,7 @@ export declare const adminCommands: readonly [{
|
|
|
140
140
|
readonly responseType: "AppCreateEntityRespVO";
|
|
141
141
|
}, {
|
|
142
142
|
readonly scope: "admin";
|
|
143
|
-
readonly module: "
|
|
143
|
+
readonly module: "table";
|
|
144
144
|
readonly functionName: "adminSaveEntity";
|
|
145
145
|
readonly commandPath: readonly ["table", "update-schema"];
|
|
146
146
|
readonly method: "PUT";
|
|
@@ -158,7 +158,7 @@ export declare const adminCommands: readonly [{
|
|
|
158
158
|
readonly responseType: "EntitySaveRespVO";
|
|
159
159
|
}, {
|
|
160
160
|
readonly scope: "admin";
|
|
161
|
-
readonly module: "
|
|
161
|
+
readonly module: "table";
|
|
162
162
|
readonly functionName: "adminSaveEntityName";
|
|
163
163
|
readonly commandPath: readonly ["table", "rename"];
|
|
164
164
|
readonly method: "PUT";
|
|
@@ -176,7 +176,7 @@ export declare const adminCommands: readonly [{
|
|
|
176
176
|
readonly responseType: "EntitySaveNameRespVO";
|
|
177
177
|
}, {
|
|
178
178
|
readonly scope: "admin";
|
|
179
|
-
readonly module: "
|
|
179
|
+
readonly module: "table";
|
|
180
180
|
readonly functionName: "adminDeleteEntity";
|
|
181
181
|
readonly commandPath: readonly ["table", "delete"];
|
|
182
182
|
readonly method: "DELETE";
|
|
@@ -194,7 +194,7 @@ export declare const adminCommands: readonly [{
|
|
|
194
194
|
readonly responseType: "EntityDeleteEntityRespVO";
|
|
195
195
|
}, {
|
|
196
196
|
readonly scope: "admin";
|
|
197
|
-
readonly module: "
|
|
197
|
+
readonly module: "access-rule";
|
|
198
198
|
readonly functionName: "getEntityIngressList";
|
|
199
199
|
readonly commandPath: readonly ["access-rule", "list"];
|
|
200
200
|
readonly method: "GET";
|
|
@@ -212,7 +212,7 @@ export declare const adminCommands: readonly [{
|
|
|
212
212
|
readonly responseType: "AppIngressListRespVO";
|
|
213
213
|
}, {
|
|
214
214
|
readonly scope: "admin";
|
|
215
|
-
readonly module: "
|
|
215
|
+
readonly module: "access-rule";
|
|
216
216
|
readonly functionName: "getEntityIngress";
|
|
217
217
|
readonly commandPath: readonly ["access-rule", "get"];
|
|
218
218
|
readonly method: "GET";
|
|
@@ -233,7 +233,7 @@ export declare const adminCommands: readonly [{
|
|
|
233
233
|
readonly responseType: "AppIngressGetRespVO";
|
|
234
234
|
}, {
|
|
235
235
|
readonly scope: "admin";
|
|
236
|
-
readonly module: "
|
|
236
|
+
readonly module: "access-rule";
|
|
237
237
|
readonly functionName: "createEntityIngress";
|
|
238
238
|
readonly commandPath: readonly ["access-rule", "create"];
|
|
239
239
|
readonly method: "POST";
|
|
@@ -251,7 +251,7 @@ export declare const adminCommands: readonly [{
|
|
|
251
251
|
readonly responseType: "AppIngressCreateRespVO";
|
|
252
252
|
}, {
|
|
253
253
|
readonly scope: "admin";
|
|
254
|
-
readonly module: "
|
|
254
|
+
readonly module: "access-rule";
|
|
255
255
|
readonly functionName: "updateEntityIngress";
|
|
256
256
|
readonly commandPath: readonly ["access-rule", "update"];
|
|
257
257
|
readonly method: "PUT";
|
|
@@ -272,7 +272,7 @@ export declare const adminCommands: readonly [{
|
|
|
272
272
|
readonly responseType: "AppIngressUpdateRespVO";
|
|
273
273
|
}, {
|
|
274
274
|
readonly scope: "admin";
|
|
275
|
-
readonly module: "
|
|
275
|
+
readonly module: "access-rule";
|
|
276
276
|
readonly functionName: "deleteEntityIngress";
|
|
277
277
|
readonly commandPath: readonly ["access-rule", "delete"];
|
|
278
278
|
readonly method: "DELETE";
|
|
@@ -293,7 +293,7 @@ export declare const adminCommands: readonly [{
|
|
|
293
293
|
readonly responseType: "AppIngressDeleteRespVO";
|
|
294
294
|
}, {
|
|
295
295
|
readonly scope: "admin";
|
|
296
|
-
readonly module: "
|
|
296
|
+
readonly module: "access-rule";
|
|
297
297
|
readonly functionName: "updateEntityIngress";
|
|
298
298
|
readonly commandPath: readonly ["access-rule", "assign-users"];
|
|
299
299
|
readonly method: "PUT";
|
|
@@ -392,7 +392,7 @@ export declare const adminCommands: readonly [{
|
|
|
392
392
|
}];
|
|
393
393
|
export declare const userCommands: readonly [{
|
|
394
394
|
readonly scope: "user";
|
|
395
|
-
readonly module: "
|
|
395
|
+
readonly module: "entry";
|
|
396
396
|
readonly functionName: "getEntry";
|
|
397
397
|
readonly commandPath: readonly ["entry"];
|
|
398
398
|
readonly method: "GET";
|
|
@@ -402,14 +402,15 @@ export declare const userCommands: readonly [{
|
|
|
402
402
|
readonly requestType: null;
|
|
403
403
|
readonly queryParams: readonly [{
|
|
404
404
|
readonly key: "include_app_tables";
|
|
405
|
-
readonly flag: "
|
|
405
|
+
readonly flag: "";
|
|
406
406
|
readonly type: "boolean";
|
|
407
407
|
readonly hasDefault: true;
|
|
408
|
+
readonly fixedValue: "true";
|
|
408
409
|
}];
|
|
409
410
|
readonly responseType: "GlobalActionEntryRespVO";
|
|
410
411
|
}, {
|
|
411
412
|
readonly scope: "user";
|
|
412
|
-
readonly module: "
|
|
413
|
+
readonly module: "table";
|
|
413
414
|
readonly functionName: "getEntityInfo";
|
|
414
415
|
readonly commandPath: readonly ["table", "get"];
|
|
415
416
|
readonly method: "GET";
|
|
@@ -427,7 +428,7 @@ export declare const userCommands: readonly [{
|
|
|
427
428
|
readonly responseType: "EntityInfoRespVO";
|
|
428
429
|
}, {
|
|
429
430
|
readonly scope: "user";
|
|
430
|
-
readonly module: "
|
|
431
|
+
readonly module: "table";
|
|
431
432
|
readonly functionName: "getDataset";
|
|
432
433
|
readonly commandPath: readonly ["table", "dataset"];
|
|
433
434
|
readonly method: "GET";
|
|
@@ -445,7 +446,7 @@ export declare const userCommands: readonly [{
|
|
|
445
446
|
readonly responseType: "DatasetRow[]";
|
|
446
447
|
}, {
|
|
447
448
|
readonly scope: "user";
|
|
448
|
-
readonly module: "
|
|
449
|
+
readonly module: "table";
|
|
449
450
|
readonly functionName: "queryLinktoPickOptions";
|
|
450
451
|
readonly commandPath: readonly ["table", "relation-options"];
|
|
451
452
|
readonly method: "POST";
|
|
@@ -463,7 +464,7 @@ export declare const userCommands: readonly [{
|
|
|
463
464
|
readonly responseType: "EntityQueryRelationRespVO";
|
|
464
465
|
}, {
|
|
465
466
|
readonly scope: "user";
|
|
466
|
-
readonly module: "
|
|
467
|
+
readonly module: "row";
|
|
467
468
|
readonly functionName: "queryEntity";
|
|
468
469
|
readonly commandPath: readonly ["row", "query"];
|
|
469
470
|
readonly method: "POST";
|
|
@@ -481,7 +482,7 @@ export declare const userCommands: readonly [{
|
|
|
481
482
|
readonly responseType: "EntityQueryRespVO";
|
|
482
483
|
}, {
|
|
483
484
|
readonly scope: "user";
|
|
484
|
-
readonly module: "
|
|
485
|
+
readonly module: "row";
|
|
485
486
|
readonly functionName: "getEntityRow";
|
|
486
487
|
readonly commandPath: readonly ["row", "get"];
|
|
487
488
|
readonly method: "GET";
|
|
@@ -507,7 +508,7 @@ export declare const userCommands: readonly [{
|
|
|
507
508
|
readonly responseType: "EntityRowRespVO";
|
|
508
509
|
}, {
|
|
509
510
|
readonly scope: "user";
|
|
510
|
-
readonly module: "
|
|
511
|
+
readonly module: "row";
|
|
511
512
|
readonly functionName: "insertEntity";
|
|
512
513
|
readonly commandPath: readonly ["row", "create"];
|
|
513
514
|
readonly method: "POST";
|
|
@@ -525,7 +526,7 @@ export declare const userCommands: readonly [{
|
|
|
525
526
|
readonly responseType: "InsertRespVO";
|
|
526
527
|
}, {
|
|
527
528
|
readonly scope: "user";
|
|
528
|
-
readonly module: "
|
|
529
|
+
readonly module: "row";
|
|
529
530
|
readonly functionName: "updateEntityRow";
|
|
530
531
|
readonly commandPath: readonly ["row", "update"];
|
|
531
532
|
readonly method: "PUT";
|
|
@@ -546,7 +547,7 @@ export declare const userCommands: readonly [{
|
|
|
546
547
|
readonly responseType: "EntityUpdateRespVO";
|
|
547
548
|
}, {
|
|
548
549
|
readonly scope: "user";
|
|
549
|
-
readonly module: "
|
|
550
|
+
readonly module: "row";
|
|
550
551
|
readonly functionName: "deleteEntityRow";
|
|
551
552
|
readonly commandPath: readonly ["row", "delete"];
|
|
552
553
|
readonly method: "POST";
|
|
@@ -564,7 +565,7 @@ export declare const userCommands: readonly [{
|
|
|
564
565
|
readonly responseType: "EntityRowDeleteRespVO";
|
|
565
566
|
}, {
|
|
566
567
|
readonly scope: "user";
|
|
567
|
-
readonly module: "
|
|
568
|
+
readonly module: "row";
|
|
568
569
|
readonly functionName: "updateEntityBulk";
|
|
569
570
|
readonly commandPath: readonly ["row", "bulk-update"];
|
|
570
571
|
readonly method: "POST";
|
|
@@ -582,7 +583,7 @@ export declare const userCommands: readonly [{
|
|
|
582
583
|
readonly responseType: "EntityBulkUpdateRespVO";
|
|
583
584
|
}, {
|
|
584
585
|
readonly scope: "user";
|
|
585
|
-
readonly module: "
|
|
586
|
+
readonly module: "row";
|
|
586
587
|
readonly functionName: "queryEntitySelection";
|
|
587
588
|
readonly commandPath: readonly ["row", "selection-action"];
|
|
588
589
|
readonly method: "POST";
|
|
@@ -603,7 +604,7 @@ export declare const userCommands: readonly [{
|
|
|
603
604
|
readonly responseType: "EntityQuerySelectionRespVO";
|
|
604
605
|
}, {
|
|
605
606
|
readonly scope: "user";
|
|
606
|
-
readonly module: "
|
|
607
|
+
readonly module: "upload";
|
|
607
608
|
readonly functionName: "getUploadToken";
|
|
608
609
|
readonly commandPath: readonly ["upload", "token"];
|
|
609
610
|
readonly method: "POST";
|
|
@@ -615,7 +616,7 @@ export declare const userCommands: readonly [{
|
|
|
615
616
|
readonly responseType: "GetUploadTokenRespVO";
|
|
616
617
|
}, {
|
|
617
618
|
readonly scope: "user";
|
|
618
|
-
readonly module: "
|
|
619
|
+
readonly module: "upload";
|
|
619
620
|
readonly functionName: "uploadPreview";
|
|
620
621
|
readonly commandPath: readonly ["upload", "preview"];
|
|
621
622
|
readonly method: "POST";
|
|
@@ -627,7 +628,7 @@ export declare const userCommands: readonly [{
|
|
|
627
628
|
readonly responseType: "UploadPreviewRespVO";
|
|
628
629
|
}, {
|
|
629
630
|
readonly scope: "user";
|
|
630
|
-
readonly module: "
|
|
631
|
+
readonly module: "upload";
|
|
631
632
|
readonly functionName: "mobileUpload";
|
|
632
633
|
readonly commandPath: readonly ["upload", "mobile"];
|
|
633
634
|
readonly method: "POST";
|
|
@@ -639,7 +640,7 @@ export declare const userCommands: readonly [{
|
|
|
639
640
|
readonly responseType: "MobileUploadRespVO";
|
|
640
641
|
}, {
|
|
641
642
|
readonly scope: "user";
|
|
642
|
-
readonly module: "
|
|
643
|
+
readonly module: "upload";
|
|
643
644
|
readonly functionName: "checkMobileUpload";
|
|
644
645
|
readonly commandPath: readonly ["upload", "check-mobile"];
|
|
645
646
|
readonly method: "POST";
|
|
@@ -675,7 +676,7 @@ export declare const userCommands: readonly [{
|
|
|
675
676
|
readonly responseType: "UserProfileUpdateRespVO";
|
|
676
677
|
}, {
|
|
677
678
|
readonly scope: "user";
|
|
678
|
-
readonly module: "
|
|
679
|
+
readonly module: "workflow";
|
|
679
680
|
readonly functionName: "getEntityProcessMap";
|
|
680
681
|
readonly commandPath: readonly ["workflow", "process-map"];
|
|
681
682
|
readonly method: "GET";
|
|
@@ -696,7 +697,7 @@ export declare const userCommands: readonly [{
|
|
|
696
697
|
readonly responseType: "EntityProcessMapRespVO";
|
|
697
698
|
}, {
|
|
698
699
|
readonly scope: "user";
|
|
699
|
-
readonly module: "
|
|
700
|
+
readonly module: "workflow";
|
|
700
701
|
readonly functionName: "doEntityAction";
|
|
701
702
|
readonly commandPath: readonly ["workflow", "approve"];
|
|
702
703
|
readonly method: "POST";
|
|
@@ -721,7 +722,7 @@ export declare const userCommands: readonly [{
|
|
|
721
722
|
readonly responseType: "EntityDoActionRespVO";
|
|
722
723
|
}, {
|
|
723
724
|
readonly scope: "user";
|
|
724
|
-
readonly module: "
|
|
725
|
+
readonly module: "workflow";
|
|
725
726
|
readonly functionName: "doEntityAction";
|
|
726
727
|
readonly commandPath: readonly ["workflow", "rollback"];
|
|
727
728
|
readonly method: "POST";
|
|
@@ -746,7 +747,7 @@ export declare const userCommands: readonly [{
|
|
|
746
747
|
readonly responseType: "EntityDoActionRespVO";
|
|
747
748
|
}, {
|
|
748
749
|
readonly scope: "user";
|
|
749
|
-
readonly module: "
|
|
750
|
+
readonly module: "workflow";
|
|
750
751
|
readonly functionName: "doEntityAction";
|
|
751
752
|
readonly commandPath: readonly ["workflow", "countersign"];
|
|
752
753
|
readonly method: "POST";
|
|
@@ -771,7 +772,7 @@ export declare const userCommands: readonly [{
|
|
|
771
772
|
readonly responseType: "EntityDoActionRespVO";
|
|
772
773
|
}, {
|
|
773
774
|
readonly scope: "user";
|
|
774
|
-
readonly module: "
|
|
775
|
+
readonly module: "workflow";
|
|
775
776
|
readonly functionName: "doEntityAction";
|
|
776
777
|
readonly commandPath: readonly ["workflow", "forward"];
|
|
777
778
|
readonly method: "POST";
|
|
@@ -796,7 +797,7 @@ export declare const userCommands: readonly [{
|
|
|
796
797
|
readonly responseType: "EntityDoActionRespVO";
|
|
797
798
|
}, {
|
|
798
799
|
readonly scope: "user";
|
|
799
|
-
readonly module: "
|
|
800
|
+
readonly module: "workflow";
|
|
800
801
|
readonly functionName: "doEntityAction";
|
|
801
802
|
readonly commandPath: readonly ["workflow", "retract"];
|
|
802
803
|
readonly method: "POST";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command_registry.generated.d.ts","sourceRoot":"","sources":["../../src/generated/command_registry.generated.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAA;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,EAAE,MAAM,CAAA;IACpB,WAAW,EAAE,SAAS,MAAM,EAAE,CAAA;IAC9B,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,SAAS;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC3E,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,WAAW,EAAE,SAAS;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC7G,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+fhB,CAAA;AAEV,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"command_registry.generated.d.ts","sourceRoot":"","sources":["../../src/generated/command_registry.generated.ts"],"names":[],"mappings":"AAEA,MAAM,MAAM,mBAAmB,GAAG;IAChC,KAAK,EAAE,OAAO,GAAG,MAAM,CAAA;IACvB,MAAM,EAAE,MAAM,CAAA;IACd,YAAY,EAAE,MAAM,CAAA;IACpB,WAAW,EAAE,SAAS,MAAM,EAAE,CAAA;IAC9B,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,UAAU,EAAE,SAAS;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC3E,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,WAAW,EAAE,SAAS;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAC;QAAC,UAAU,CAAC,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;IAC7G,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+fhB,CAAA;AAEV,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAupBf,CAAA"}
|
|
@@ -18,7 +18,7 @@ export const adminCommands = [
|
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
"scope": "admin",
|
|
21
|
-
"module": "
|
|
21
|
+
"module": "app",
|
|
22
22
|
"functionName": "getAppDetail",
|
|
23
23
|
"commandPath": [
|
|
24
24
|
"app",
|
|
@@ -97,7 +97,7 @@ export const adminCommands = [
|
|
|
97
97
|
},
|
|
98
98
|
{
|
|
99
99
|
"scope": "admin",
|
|
100
|
-
"module": "
|
|
100
|
+
"module": "table",
|
|
101
101
|
"functionName": "getEntities",
|
|
102
102
|
"commandPath": [
|
|
103
103
|
"table",
|
|
@@ -118,7 +118,7 @@ export const adminCommands = [
|
|
|
118
118
|
},
|
|
119
119
|
{
|
|
120
120
|
"scope": "admin",
|
|
121
|
-
"module": "
|
|
121
|
+
"module": "table",
|
|
122
122
|
"functionName": "adminGetEntityInfo",
|
|
123
123
|
"commandPath": [
|
|
124
124
|
"table",
|
|
@@ -143,7 +143,7 @@ export const adminCommands = [
|
|
|
143
143
|
},
|
|
144
144
|
{
|
|
145
145
|
"scope": "admin",
|
|
146
|
-
"module": "
|
|
146
|
+
"module": "table",
|
|
147
147
|
"functionName": "createEntity",
|
|
148
148
|
"commandPath": [
|
|
149
149
|
"table",
|
|
@@ -164,7 +164,7 @@ export const adminCommands = [
|
|
|
164
164
|
},
|
|
165
165
|
{
|
|
166
166
|
"scope": "admin",
|
|
167
|
-
"module": "
|
|
167
|
+
"module": "table",
|
|
168
168
|
"functionName": "adminSaveEntity",
|
|
169
169
|
"commandPath": [
|
|
170
170
|
"table",
|
|
@@ -189,7 +189,7 @@ export const adminCommands = [
|
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
191
|
"scope": "admin",
|
|
192
|
-
"module": "
|
|
192
|
+
"module": "table",
|
|
193
193
|
"functionName": "adminSaveEntityName",
|
|
194
194
|
"commandPath": [
|
|
195
195
|
"table",
|
|
@@ -214,7 +214,7 @@ export const adminCommands = [
|
|
|
214
214
|
},
|
|
215
215
|
{
|
|
216
216
|
"scope": "admin",
|
|
217
|
-
"module": "
|
|
217
|
+
"module": "table",
|
|
218
218
|
"functionName": "adminDeleteEntity",
|
|
219
219
|
"commandPath": [
|
|
220
220
|
"table",
|
|
@@ -239,7 +239,7 @@ export const adminCommands = [
|
|
|
239
239
|
},
|
|
240
240
|
{
|
|
241
241
|
"scope": "admin",
|
|
242
|
-
"module": "
|
|
242
|
+
"module": "access-rule",
|
|
243
243
|
"functionName": "getEntityIngressList",
|
|
244
244
|
"commandPath": [
|
|
245
245
|
"access-rule",
|
|
@@ -264,7 +264,7 @@ export const adminCommands = [
|
|
|
264
264
|
},
|
|
265
265
|
{
|
|
266
266
|
"scope": "admin",
|
|
267
|
-
"module": "
|
|
267
|
+
"module": "access-rule",
|
|
268
268
|
"functionName": "getEntityIngress",
|
|
269
269
|
"commandPath": [
|
|
270
270
|
"access-rule",
|
|
@@ -293,7 +293,7 @@ export const adminCommands = [
|
|
|
293
293
|
},
|
|
294
294
|
{
|
|
295
295
|
"scope": "admin",
|
|
296
|
-
"module": "
|
|
296
|
+
"module": "access-rule",
|
|
297
297
|
"functionName": "createEntityIngress",
|
|
298
298
|
"commandPath": [
|
|
299
299
|
"access-rule",
|
|
@@ -318,7 +318,7 @@ export const adminCommands = [
|
|
|
318
318
|
},
|
|
319
319
|
{
|
|
320
320
|
"scope": "admin",
|
|
321
|
-
"module": "
|
|
321
|
+
"module": "access-rule",
|
|
322
322
|
"functionName": "updateEntityIngress",
|
|
323
323
|
"commandPath": [
|
|
324
324
|
"access-rule",
|
|
@@ -347,7 +347,7 @@ export const adminCommands = [
|
|
|
347
347
|
},
|
|
348
348
|
{
|
|
349
349
|
"scope": "admin",
|
|
350
|
-
"module": "
|
|
350
|
+
"module": "access-rule",
|
|
351
351
|
"functionName": "deleteEntityIngress",
|
|
352
352
|
"commandPath": [
|
|
353
353
|
"access-rule",
|
|
@@ -376,7 +376,7 @@ export const adminCommands = [
|
|
|
376
376
|
},
|
|
377
377
|
{
|
|
378
378
|
"scope": "admin",
|
|
379
|
-
"module": "
|
|
379
|
+
"module": "access-rule",
|
|
380
380
|
"functionName": "updateEntityIngress",
|
|
381
381
|
"commandPath": [
|
|
382
382
|
"access-rule",
|
|
@@ -514,7 +514,7 @@ export const adminCommands = [
|
|
|
514
514
|
export const userCommands = [
|
|
515
515
|
{
|
|
516
516
|
"scope": "user",
|
|
517
|
-
"module": "
|
|
517
|
+
"module": "entry",
|
|
518
518
|
"functionName": "getEntry",
|
|
519
519
|
"commandPath": [
|
|
520
520
|
"entry"
|
|
@@ -527,16 +527,17 @@ export const userCommands = [
|
|
|
527
527
|
"queryParams": [
|
|
528
528
|
{
|
|
529
529
|
"key": "include_app_tables",
|
|
530
|
-
"flag": "
|
|
530
|
+
"flag": "",
|
|
531
531
|
"type": "boolean",
|
|
532
|
-
"hasDefault": true
|
|
532
|
+
"hasDefault": true,
|
|
533
|
+
"fixedValue": "true"
|
|
533
534
|
}
|
|
534
535
|
],
|
|
535
536
|
"responseType": "GlobalActionEntryRespVO"
|
|
536
537
|
},
|
|
537
538
|
{
|
|
538
539
|
"scope": "user",
|
|
539
|
-
"module": "
|
|
540
|
+
"module": "table",
|
|
540
541
|
"functionName": "getEntityInfo",
|
|
541
542
|
"commandPath": [
|
|
542
543
|
"table",
|
|
@@ -561,7 +562,7 @@ export const userCommands = [
|
|
|
561
562
|
},
|
|
562
563
|
{
|
|
563
564
|
"scope": "user",
|
|
564
|
-
"module": "
|
|
565
|
+
"module": "table",
|
|
565
566
|
"functionName": "getDataset",
|
|
566
567
|
"commandPath": [
|
|
567
568
|
"table",
|
|
@@ -586,7 +587,7 @@ export const userCommands = [
|
|
|
586
587
|
},
|
|
587
588
|
{
|
|
588
589
|
"scope": "user",
|
|
589
|
-
"module": "
|
|
590
|
+
"module": "table",
|
|
590
591
|
"functionName": "queryLinktoPickOptions",
|
|
591
592
|
"commandPath": [
|
|
592
593
|
"table",
|
|
@@ -611,7 +612,7 @@ export const userCommands = [
|
|
|
611
612
|
},
|
|
612
613
|
{
|
|
613
614
|
"scope": "user",
|
|
614
|
-
"module": "
|
|
615
|
+
"module": "row",
|
|
615
616
|
"functionName": "queryEntity",
|
|
616
617
|
"commandPath": [
|
|
617
618
|
"row",
|
|
@@ -636,7 +637,7 @@ export const userCommands = [
|
|
|
636
637
|
},
|
|
637
638
|
{
|
|
638
639
|
"scope": "user",
|
|
639
|
-
"module": "
|
|
640
|
+
"module": "row",
|
|
640
641
|
"functionName": "getEntityRow",
|
|
641
642
|
"commandPath": [
|
|
642
643
|
"row",
|
|
@@ -672,7 +673,7 @@ export const userCommands = [
|
|
|
672
673
|
},
|
|
673
674
|
{
|
|
674
675
|
"scope": "user",
|
|
675
|
-
"module": "
|
|
676
|
+
"module": "row",
|
|
676
677
|
"functionName": "insertEntity",
|
|
677
678
|
"commandPath": [
|
|
678
679
|
"row",
|
|
@@ -697,7 +698,7 @@ export const userCommands = [
|
|
|
697
698
|
},
|
|
698
699
|
{
|
|
699
700
|
"scope": "user",
|
|
700
|
-
"module": "
|
|
701
|
+
"module": "row",
|
|
701
702
|
"functionName": "updateEntityRow",
|
|
702
703
|
"commandPath": [
|
|
703
704
|
"row",
|
|
@@ -726,7 +727,7 @@ export const userCommands = [
|
|
|
726
727
|
},
|
|
727
728
|
{
|
|
728
729
|
"scope": "user",
|
|
729
|
-
"module": "
|
|
730
|
+
"module": "row",
|
|
730
731
|
"functionName": "deleteEntityRow",
|
|
731
732
|
"commandPath": [
|
|
732
733
|
"row",
|
|
@@ -751,7 +752,7 @@ export const userCommands = [
|
|
|
751
752
|
},
|
|
752
753
|
{
|
|
753
754
|
"scope": "user",
|
|
754
|
-
"module": "
|
|
755
|
+
"module": "row",
|
|
755
756
|
"functionName": "updateEntityBulk",
|
|
756
757
|
"commandPath": [
|
|
757
758
|
"row",
|
|
@@ -776,7 +777,7 @@ export const userCommands = [
|
|
|
776
777
|
},
|
|
777
778
|
{
|
|
778
779
|
"scope": "user",
|
|
779
|
-
"module": "
|
|
780
|
+
"module": "row",
|
|
780
781
|
"functionName": "queryEntitySelection",
|
|
781
782
|
"commandPath": [
|
|
782
783
|
"row",
|
|
@@ -805,7 +806,7 @@ export const userCommands = [
|
|
|
805
806
|
},
|
|
806
807
|
{
|
|
807
808
|
"scope": "user",
|
|
808
|
-
"module": "
|
|
809
|
+
"module": "upload",
|
|
809
810
|
"functionName": "getUploadToken",
|
|
810
811
|
"commandPath": [
|
|
811
812
|
"upload",
|
|
@@ -821,7 +822,7 @@ export const userCommands = [
|
|
|
821
822
|
},
|
|
822
823
|
{
|
|
823
824
|
"scope": "user",
|
|
824
|
-
"module": "
|
|
825
|
+
"module": "upload",
|
|
825
826
|
"functionName": "uploadPreview",
|
|
826
827
|
"commandPath": [
|
|
827
828
|
"upload",
|
|
@@ -837,7 +838,7 @@ export const userCommands = [
|
|
|
837
838
|
},
|
|
838
839
|
{
|
|
839
840
|
"scope": "user",
|
|
840
|
-
"module": "
|
|
841
|
+
"module": "upload",
|
|
841
842
|
"functionName": "mobileUpload",
|
|
842
843
|
"commandPath": [
|
|
843
844
|
"upload",
|
|
@@ -853,7 +854,7 @@ export const userCommands = [
|
|
|
853
854
|
},
|
|
854
855
|
{
|
|
855
856
|
"scope": "user",
|
|
856
|
-
"module": "
|
|
857
|
+
"module": "upload",
|
|
857
858
|
"functionName": "checkMobileUpload",
|
|
858
859
|
"commandPath": [
|
|
859
860
|
"upload",
|
|
@@ -901,7 +902,7 @@ export const userCommands = [
|
|
|
901
902
|
},
|
|
902
903
|
{
|
|
903
904
|
"scope": "user",
|
|
904
|
-
"module": "
|
|
905
|
+
"module": "workflow",
|
|
905
906
|
"functionName": "getEntityProcessMap",
|
|
906
907
|
"commandPath": [
|
|
907
908
|
"workflow",
|
|
@@ -930,7 +931,7 @@ export const userCommands = [
|
|
|
930
931
|
},
|
|
931
932
|
{
|
|
932
933
|
"scope": "user",
|
|
933
|
-
"module": "
|
|
934
|
+
"module": "workflow",
|
|
934
935
|
"functionName": "doEntityAction",
|
|
935
936
|
"commandPath": [
|
|
936
937
|
"workflow",
|
|
@@ -964,7 +965,7 @@ export const userCommands = [
|
|
|
964
965
|
},
|
|
965
966
|
{
|
|
966
967
|
"scope": "user",
|
|
967
|
-
"module": "
|
|
968
|
+
"module": "workflow",
|
|
968
969
|
"functionName": "doEntityAction",
|
|
969
970
|
"commandPath": [
|
|
970
971
|
"workflow",
|
|
@@ -998,7 +999,7 @@ export const userCommands = [
|
|
|
998
999
|
},
|
|
999
1000
|
{
|
|
1000
1001
|
"scope": "user",
|
|
1001
|
-
"module": "
|
|
1002
|
+
"module": "workflow",
|
|
1002
1003
|
"functionName": "doEntityAction",
|
|
1003
1004
|
"commandPath": [
|
|
1004
1005
|
"workflow",
|
|
@@ -1032,7 +1033,7 @@ export const userCommands = [
|
|
|
1032
1033
|
},
|
|
1033
1034
|
{
|
|
1034
1035
|
"scope": "user",
|
|
1035
|
-
"module": "
|
|
1036
|
+
"module": "workflow",
|
|
1036
1037
|
"functionName": "doEntityAction",
|
|
1037
1038
|
"commandPath": [
|
|
1038
1039
|
"workflow",
|
|
@@ -1066,7 +1067,7 @@ export const userCommands = [
|
|
|
1066
1067
|
},
|
|
1067
1068
|
{
|
|
1068
1069
|
"scope": "user",
|
|
1069
|
-
"module": "
|
|
1070
|
+
"module": "workflow",
|
|
1070
1071
|
"functionName": "doEntityAction",
|
|
1071
1072
|
"commandPath": [
|
|
1072
1073
|
"workflow",
|