@carthooks/arcubase-cli 0.1.10 → 0.1.13
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 +1365 -375
- package/bundle/arcubase.mjs +1365 -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 +3 -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 +1046 -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 +443 -44
- package/dist/tests/help.test.js +47 -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 +128 -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 +48 -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 +3 -0
- package/src/runtime/execute.ts +1272 -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 +577 -47
- package/src/tests/help.test.ts +51 -8
- package/src/tests/upload.test.ts +34 -91
|
@@ -33,7 +33,7 @@ export const adminCommands = [
|
|
|
33
33
|
},
|
|
34
34
|
{
|
|
35
35
|
"scope": "admin",
|
|
36
|
-
"module": "
|
|
36
|
+
"module": "app",
|
|
37
37
|
"functionName": "getAppDetail",
|
|
38
38
|
"commandPath": [
|
|
39
39
|
"app",
|
|
@@ -112,7 +112,7 @@ export const adminCommands = [
|
|
|
112
112
|
},
|
|
113
113
|
{
|
|
114
114
|
"scope": "admin",
|
|
115
|
-
"module": "
|
|
115
|
+
"module": "table",
|
|
116
116
|
"functionName": "getEntities",
|
|
117
117
|
"commandPath": [
|
|
118
118
|
"table",
|
|
@@ -133,7 +133,7 @@ export const adminCommands = [
|
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
135
|
"scope": "admin",
|
|
136
|
-
"module": "
|
|
136
|
+
"module": "table",
|
|
137
137
|
"functionName": "adminGetEntityInfo",
|
|
138
138
|
"commandPath": [
|
|
139
139
|
"table",
|
|
@@ -158,7 +158,7 @@ export const adminCommands = [
|
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
160
|
"scope": "admin",
|
|
161
|
-
"module": "
|
|
161
|
+
"module": "table",
|
|
162
162
|
"functionName": "createEntity",
|
|
163
163
|
"commandPath": [
|
|
164
164
|
"table",
|
|
@@ -179,7 +179,7 @@ export const adminCommands = [
|
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
181
|
"scope": "admin",
|
|
182
|
-
"module": "
|
|
182
|
+
"module": "table",
|
|
183
183
|
"functionName": "adminSaveEntity",
|
|
184
184
|
"commandPath": [
|
|
185
185
|
"table",
|
|
@@ -204,7 +204,7 @@ export const adminCommands = [
|
|
|
204
204
|
},
|
|
205
205
|
{
|
|
206
206
|
"scope": "admin",
|
|
207
|
-
"module": "
|
|
207
|
+
"module": "table",
|
|
208
208
|
"functionName": "adminSaveEntityName",
|
|
209
209
|
"commandPath": [
|
|
210
210
|
"table",
|
|
@@ -229,7 +229,7 @@ export const adminCommands = [
|
|
|
229
229
|
},
|
|
230
230
|
{
|
|
231
231
|
"scope": "admin",
|
|
232
|
-
"module": "
|
|
232
|
+
"module": "table",
|
|
233
233
|
"functionName": "adminDeleteEntity",
|
|
234
234
|
"commandPath": [
|
|
235
235
|
"table",
|
|
@@ -254,7 +254,7 @@ export const adminCommands = [
|
|
|
254
254
|
},
|
|
255
255
|
{
|
|
256
256
|
"scope": "admin",
|
|
257
|
-
"module": "
|
|
257
|
+
"module": "access-rule",
|
|
258
258
|
"functionName": "getEntityIngressList",
|
|
259
259
|
"commandPath": [
|
|
260
260
|
"access-rule",
|
|
@@ -279,7 +279,7 @@ export const adminCommands = [
|
|
|
279
279
|
},
|
|
280
280
|
{
|
|
281
281
|
"scope": "admin",
|
|
282
|
-
"module": "
|
|
282
|
+
"module": "access-rule",
|
|
283
283
|
"functionName": "getEntityIngress",
|
|
284
284
|
"commandPath": [
|
|
285
285
|
"access-rule",
|
|
@@ -308,7 +308,7 @@ export const adminCommands = [
|
|
|
308
308
|
},
|
|
309
309
|
{
|
|
310
310
|
"scope": "admin",
|
|
311
|
-
"module": "
|
|
311
|
+
"module": "access-rule",
|
|
312
312
|
"functionName": "createEntityIngress",
|
|
313
313
|
"commandPath": [
|
|
314
314
|
"access-rule",
|
|
@@ -333,7 +333,7 @@ export const adminCommands = [
|
|
|
333
333
|
},
|
|
334
334
|
{
|
|
335
335
|
"scope": "admin",
|
|
336
|
-
"module": "
|
|
336
|
+
"module": "access-rule",
|
|
337
337
|
"functionName": "updateEntityIngress",
|
|
338
338
|
"commandPath": [
|
|
339
339
|
"access-rule",
|
|
@@ -362,7 +362,7 @@ export const adminCommands = [
|
|
|
362
362
|
},
|
|
363
363
|
{
|
|
364
364
|
"scope": "admin",
|
|
365
|
-
"module": "
|
|
365
|
+
"module": "access-rule",
|
|
366
366
|
"functionName": "deleteEntityIngress",
|
|
367
367
|
"commandPath": [
|
|
368
368
|
"access-rule",
|
|
@@ -391,7 +391,7 @@ export const adminCommands = [
|
|
|
391
391
|
},
|
|
392
392
|
{
|
|
393
393
|
"scope": "admin",
|
|
394
|
-
"module": "
|
|
394
|
+
"module": "access-rule",
|
|
395
395
|
"functionName": "updateEntityIngress",
|
|
396
396
|
"commandPath": [
|
|
397
397
|
"access-rule",
|
|
@@ -530,7 +530,7 @@ export const adminCommands = [
|
|
|
530
530
|
export const userCommands = [
|
|
531
531
|
{
|
|
532
532
|
"scope": "user",
|
|
533
|
-
"module": "
|
|
533
|
+
"module": "entry",
|
|
534
534
|
"functionName": "getEntry",
|
|
535
535
|
"commandPath": [
|
|
536
536
|
"entry"
|
|
@@ -543,16 +543,17 @@ export const userCommands = [
|
|
|
543
543
|
"queryParams": [
|
|
544
544
|
{
|
|
545
545
|
"key": "include_app_tables",
|
|
546
|
-
"flag": "
|
|
546
|
+
"flag": "",
|
|
547
547
|
"type": "boolean",
|
|
548
|
-
"hasDefault": true
|
|
548
|
+
"hasDefault": true,
|
|
549
|
+
"fixedValue": "true"
|
|
549
550
|
}
|
|
550
551
|
],
|
|
551
552
|
"responseType": "GlobalActionEntryRespVO"
|
|
552
553
|
},
|
|
553
554
|
{
|
|
554
555
|
"scope": "user",
|
|
555
|
-
"module": "
|
|
556
|
+
"module": "table",
|
|
556
557
|
"functionName": "getEntityInfo",
|
|
557
558
|
"commandPath": [
|
|
558
559
|
"table",
|
|
@@ -577,7 +578,7 @@ export const userCommands = [
|
|
|
577
578
|
},
|
|
578
579
|
{
|
|
579
580
|
"scope": "user",
|
|
580
|
-
"module": "
|
|
581
|
+
"module": "table",
|
|
581
582
|
"functionName": "getDataset",
|
|
582
583
|
"commandPath": [
|
|
583
584
|
"table",
|
|
@@ -602,7 +603,7 @@ export const userCommands = [
|
|
|
602
603
|
},
|
|
603
604
|
{
|
|
604
605
|
"scope": "user",
|
|
605
|
-
"module": "
|
|
606
|
+
"module": "table",
|
|
606
607
|
"functionName": "queryLinktoPickOptions",
|
|
607
608
|
"commandPath": [
|
|
608
609
|
"table",
|
|
@@ -627,7 +628,7 @@ export const userCommands = [
|
|
|
627
628
|
},
|
|
628
629
|
{
|
|
629
630
|
"scope": "user",
|
|
630
|
-
"module": "
|
|
631
|
+
"module": "row",
|
|
631
632
|
"functionName": "queryEntity",
|
|
632
633
|
"commandPath": [
|
|
633
634
|
"row",
|
|
@@ -652,7 +653,7 @@ export const userCommands = [
|
|
|
652
653
|
},
|
|
653
654
|
{
|
|
654
655
|
"scope": "user",
|
|
655
|
-
"module": "
|
|
656
|
+
"module": "row",
|
|
656
657
|
"functionName": "getEntityRow",
|
|
657
658
|
"commandPath": [
|
|
658
659
|
"row",
|
|
@@ -688,7 +689,7 @@ export const userCommands = [
|
|
|
688
689
|
},
|
|
689
690
|
{
|
|
690
691
|
"scope": "user",
|
|
691
|
-
"module": "
|
|
692
|
+
"module": "row",
|
|
692
693
|
"functionName": "insertEntity",
|
|
693
694
|
"commandPath": [
|
|
694
695
|
"row",
|
|
@@ -713,7 +714,7 @@ export const userCommands = [
|
|
|
713
714
|
},
|
|
714
715
|
{
|
|
715
716
|
"scope": "user",
|
|
716
|
-
"module": "
|
|
717
|
+
"module": "row",
|
|
717
718
|
"functionName": "updateEntityRow",
|
|
718
719
|
"commandPath": [
|
|
719
720
|
"row",
|
|
@@ -742,7 +743,7 @@ export const userCommands = [
|
|
|
742
743
|
},
|
|
743
744
|
{
|
|
744
745
|
"scope": "user",
|
|
745
|
-
"module": "
|
|
746
|
+
"module": "row",
|
|
746
747
|
"functionName": "deleteEntityRow",
|
|
747
748
|
"commandPath": [
|
|
748
749
|
"row",
|
|
@@ -767,7 +768,7 @@ export const userCommands = [
|
|
|
767
768
|
},
|
|
768
769
|
{
|
|
769
770
|
"scope": "user",
|
|
770
|
-
"module": "
|
|
771
|
+
"module": "row",
|
|
771
772
|
"functionName": "updateEntityBulk",
|
|
772
773
|
"commandPath": [
|
|
773
774
|
"row",
|
|
@@ -792,7 +793,7 @@ export const userCommands = [
|
|
|
792
793
|
},
|
|
793
794
|
{
|
|
794
795
|
"scope": "user",
|
|
795
|
-
"module": "
|
|
796
|
+
"module": "row",
|
|
796
797
|
"functionName": "queryEntitySelection",
|
|
797
798
|
"commandPath": [
|
|
798
799
|
"row",
|
|
@@ -821,7 +822,7 @@ export const userCommands = [
|
|
|
821
822
|
},
|
|
822
823
|
{
|
|
823
824
|
"scope": "user",
|
|
824
|
-
"module": "
|
|
825
|
+
"module": "upload",
|
|
825
826
|
"functionName": "getUploadToken",
|
|
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": "uploadPreview",
|
|
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": "mobileUpload",
|
|
858
859
|
"commandPath": [
|
|
859
860
|
"upload",
|
|
@@ -869,7 +870,7 @@ export const userCommands = [
|
|
|
869
870
|
},
|
|
870
871
|
{
|
|
871
872
|
"scope": "user",
|
|
872
|
-
"module": "
|
|
873
|
+
"module": "upload",
|
|
873
874
|
"functionName": "checkMobileUpload",
|
|
874
875
|
"commandPath": [
|
|
875
876
|
"upload",
|
|
@@ -917,7 +918,7 @@ export const userCommands = [
|
|
|
917
918
|
},
|
|
918
919
|
{
|
|
919
920
|
"scope": "user",
|
|
920
|
-
"module": "
|
|
921
|
+
"module": "workflow",
|
|
921
922
|
"functionName": "getEntityProcessMap",
|
|
922
923
|
"commandPath": [
|
|
923
924
|
"workflow",
|
|
@@ -946,7 +947,7 @@ export const userCommands = [
|
|
|
946
947
|
},
|
|
947
948
|
{
|
|
948
949
|
"scope": "user",
|
|
949
|
-
"module": "
|
|
950
|
+
"module": "workflow",
|
|
950
951
|
"functionName": "doEntityAction",
|
|
951
952
|
"commandPath": [
|
|
952
953
|
"workflow",
|
|
@@ -980,7 +981,7 @@ export const userCommands = [
|
|
|
980
981
|
},
|
|
981
982
|
{
|
|
982
983
|
"scope": "user",
|
|
983
|
-
"module": "
|
|
984
|
+
"module": "workflow",
|
|
984
985
|
"functionName": "doEntityAction",
|
|
985
986
|
"commandPath": [
|
|
986
987
|
"workflow",
|
|
@@ -1014,7 +1015,7 @@ export const userCommands = [
|
|
|
1014
1015
|
},
|
|
1015
1016
|
{
|
|
1016
1017
|
"scope": "user",
|
|
1017
|
-
"module": "
|
|
1018
|
+
"module": "workflow",
|
|
1018
1019
|
"functionName": "doEntityAction",
|
|
1019
1020
|
"commandPath": [
|
|
1020
1021
|
"workflow",
|
|
@@ -1048,7 +1049,7 @@ export const userCommands = [
|
|
|
1048
1049
|
},
|
|
1049
1050
|
{
|
|
1050
1051
|
"scope": "user",
|
|
1051
|
-
"module": "
|
|
1052
|
+
"module": "workflow",
|
|
1052
1053
|
"functionName": "doEntityAction",
|
|
1053
1054
|
"commandPath": [
|
|
1054
1055
|
"workflow",
|
|
@@ -1082,7 +1083,7 @@ export const userCommands = [
|
|
|
1082
1083
|
},
|
|
1083
1084
|
{
|
|
1084
1085
|
"scope": "user",
|
|
1085
|
-
"module": "
|
|
1086
|
+
"module": "workflow",
|
|
1086
1087
|
"functionName": "doEntityAction",
|
|
1087
1088
|
"commandPath": [
|
|
1088
1089
|
"workflow",
|
|
@@ -2,95 +2,95 @@
|
|
|
2
2
|
|
|
3
3
|
export const typeIndex = {
|
|
4
4
|
"AppCreateByTenantsReqVO": {
|
|
5
|
-
"file": "
|
|
5
|
+
"file": "types/app.ts",
|
|
6
6
|
"dependencies": []
|
|
7
7
|
},
|
|
8
8
|
"AppCreateEntityReqVO": {
|
|
9
|
-
"file": "
|
|
9
|
+
"file": "types/app.ts",
|
|
10
10
|
"dependencies": []
|
|
11
11
|
},
|
|
12
12
|
"AppIngressCreateReqVO": {
|
|
13
|
-
"file": "
|
|
13
|
+
"file": "types/ingress.ts",
|
|
14
14
|
"dependencies": []
|
|
15
15
|
},
|
|
16
16
|
"AppIngressUpdateReqVO": {
|
|
17
|
-
"file": "
|
|
17
|
+
"file": "types/ingress.ts",
|
|
18
18
|
"dependencies": []
|
|
19
19
|
},
|
|
20
20
|
"AppUpdateAppReqVO": {
|
|
21
|
-
"file": "
|
|
21
|
+
"file": "types/app.ts",
|
|
22
22
|
"dependencies": []
|
|
23
23
|
},
|
|
24
24
|
"EntityBulkUpdateReqVO": {
|
|
25
|
-
"file": "
|
|
25
|
+
"file": "types/user-action.ts",
|
|
26
26
|
"dependencies": []
|
|
27
27
|
},
|
|
28
28
|
"EntityDoActionReqVO": {
|
|
29
|
-
"file": "
|
|
29
|
+
"file": "types/user-action.ts",
|
|
30
30
|
"dependencies": []
|
|
31
31
|
},
|
|
32
32
|
"EntityQueryRelationReqVO": {
|
|
33
|
-
"file": "
|
|
33
|
+
"file": "types/user-action.ts",
|
|
34
34
|
"dependencies": []
|
|
35
35
|
},
|
|
36
36
|
"EntityQueryReqVO": {
|
|
37
|
-
"file": "
|
|
37
|
+
"file": "types/user-action.ts",
|
|
38
38
|
"dependencies": []
|
|
39
39
|
},
|
|
40
40
|
"EntityResolveWorkflowReqVO": {
|
|
41
|
-
"file": "
|
|
41
|
+
"file": "types/user-action.ts",
|
|
42
42
|
"dependencies": []
|
|
43
43
|
},
|
|
44
44
|
"EntitySaveNameReqVO": {
|
|
45
|
-
"file": "
|
|
45
|
+
"file": "types/entity.ts",
|
|
46
46
|
"dependencies": []
|
|
47
47
|
},
|
|
48
48
|
"EntitySaveReqVO": {
|
|
49
|
-
"file": "
|
|
49
|
+
"file": "types/entity.ts",
|
|
50
50
|
"dependencies": []
|
|
51
51
|
},
|
|
52
52
|
"EntitySelectionActionReqVO": {
|
|
53
|
-
"file": "
|
|
53
|
+
"file": "types/user-action.ts",
|
|
54
54
|
"dependencies": []
|
|
55
55
|
},
|
|
56
56
|
"EntityUpdateReqVO": {
|
|
57
|
-
"file": "
|
|
57
|
+
"file": "types/user-action.ts",
|
|
58
58
|
"dependencies": []
|
|
59
59
|
},
|
|
60
60
|
"EntityWorkflowApproveUsersReqVO": {
|
|
61
|
-
"file": "
|
|
61
|
+
"file": "types/user-action.ts",
|
|
62
62
|
"dependencies": []
|
|
63
63
|
},
|
|
64
64
|
"EntityWorkflowDeployReqVO": {
|
|
65
|
-
"file": "
|
|
65
|
+
"file": "types/workflow.ts",
|
|
66
66
|
"dependencies": []
|
|
67
67
|
},
|
|
68
68
|
"EntityWorkflowUpdateReqVO": {
|
|
69
|
-
"file": "
|
|
69
|
+
"file": "types/workflow.ts",
|
|
70
70
|
"dependencies": []
|
|
71
71
|
},
|
|
72
72
|
"GetUploadTokenReqVO": {
|
|
73
|
-
"file": "
|
|
73
|
+
"file": "types/user-action.ts",
|
|
74
74
|
"dependencies": []
|
|
75
75
|
},
|
|
76
76
|
"InsertReqVO": {
|
|
77
|
-
"file": "
|
|
77
|
+
"file": "types/user-action.ts",
|
|
78
78
|
"dependencies": []
|
|
79
79
|
},
|
|
80
80
|
"MobileUploadCheckReqVO": {
|
|
81
|
-
"file": "
|
|
81
|
+
"file": "types/user-action.ts",
|
|
82
82
|
"dependencies": []
|
|
83
83
|
},
|
|
84
84
|
"MobileUploadReqVO": {
|
|
85
|
-
"file": "
|
|
85
|
+
"file": "types/user-action.ts",
|
|
86
86
|
"dependencies": []
|
|
87
87
|
},
|
|
88
88
|
"UploadPreviewReqVO": {
|
|
89
|
-
"file": "
|
|
89
|
+
"file": "types/common.ts",
|
|
90
90
|
"dependencies": []
|
|
91
91
|
},
|
|
92
92
|
"UserProfileUpdateReqVO": {
|
|
93
|
-
"file": "
|
|
93
|
+
"file": "types/user-action.ts",
|
|
94
94
|
"dependencies": []
|
|
95
95
|
}
|
|
96
96
|
} as const
|