@carthooks/arcubase-cli 0.1.3 → 0.1.5
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 +546 -243
- package/bundle/arcubase.mjs +546 -243
- package/dist/bin/arcubase-admin.js +0 -0
- package/dist/bin/arcubase.js +0 -0
- package/dist/generated/command_registry.generated.d.ts +36 -112
- package/dist/generated/command_registry.generated.d.ts.map +1 -1
- package/dist/generated/command_registry.generated.js +40 -163
- package/dist/generated/type_index.generated.d.ts +0 -12
- package/dist/generated/type_index.generated.d.ts.map +1 -1
- package/dist/generated/type_index.generated.js +0 -12
- package/dist/generated/zod_registry.generated.d.ts +1 -19
- package/dist/generated/zod_registry.generated.d.ts.map +1 -1
- package/dist/generated/zod_registry.generated.js +0 -21
- package/dist/runtime/command_registry.d.ts +19 -1
- package/dist/runtime/command_registry.d.ts.map +1 -1
- package/dist/runtime/command_registry.js +19 -1
- package/dist/runtime/errors.d.ts +1 -0
- package/dist/runtime/errors.d.ts.map +1 -1
- package/dist/runtime/execute.d.ts.map +1 -1
- package/dist/runtime/execute.js +321 -8
- package/dist/runtime/upload.d.ts +13 -0
- package/dist/runtime/upload.d.ts.map +1 -0
- package/dist/runtime/upload.js +148 -0
- package/dist/runtime/zod_registry.d.ts.map +1 -1
- package/dist/runtime/zod_registry.js +50 -30
- package/dist/tests/command_registry.test.js +11 -4
- package/dist/tests/execute_validation.test.js +221 -13
- package/dist/tests/help.test.js +29 -6
- package/dist/tests/upload.test.d.ts +2 -0
- package/dist/tests/upload.test.d.ts.map +1 -0
- package/dist/tests/upload.test.js +107 -0
- package/package.json +1 -1
- package/sdk-dist/api/admin/app.ts +8 -1
- package/sdk-dist/docs/runtime-reference/README.md +33 -15
- package/sdk-dist/docs/runtime-reference/app-discovery.md +68 -0
- package/sdk-dist/docs/runtime-reference/entity-schema/README.md +2 -2
- package/sdk-dist/docs/runtime-reference/entity-schema/file.md +9 -0
- package/sdk-dist/docs/runtime-reference/entity-schema/image.md +9 -0
- package/sdk-dist/docs/runtime-reference/entity-schema/subform.md +2 -2
- package/sdk-dist/docs/runtime-reference/entity-schema.md +2 -2
- package/sdk-dist/docs/runtime-reference/examples/README.md +1 -1
- package/sdk-dist/docs/runtime-reference/examples/oms-01/README.md +23 -4
- package/sdk-dist/docs/runtime-reference/examples/oms-01/app-overview.md +1 -1
- package/sdk-dist/docs/runtime-reference/row-crud.md +8 -6
- package/sdk-dist/docs/runtime-reference/search-and-bulk-actions.md +5 -5
- package/sdk-dist/docs/runtime-reference/table-lifecycle.md +34 -6
- package/sdk-dist/docs/runtime-reference/uploads.md +106 -0
- package/sdk-dist/generated/command_registry.generated.ts +40 -163
- package/sdk-dist/generated/type_index.generated.ts +0 -12
- package/sdk-dist/generated/zod_registry.generated.ts +0 -36
- package/sdk-dist/types/app.ts +7 -0
- package/src/generated/command_registry.generated.ts +40 -163
- package/src/generated/type_index.generated.ts +0 -12
- package/src/generated/zod_registry.generated.ts +0 -36
- package/src/runtime/command_registry.ts +38 -2
- package/src/runtime/errors.ts +1 -0
- package/src/runtime/execute.ts +368 -8
- package/src/runtime/upload.ts +196 -0
- package/src/runtime/zod_registry.ts +50 -30
- package/src/tests/command_registry.test.ts +13 -4
- package/src/tests/execute_validation.test.ts +257 -13
- package/src/tests/help.test.ts +35 -6
- package/src/tests/upload.test.ts +133 -0
- package/sdk-dist/docs/runtime-reference/workflow/README.md +0 -19
|
File without changes
|
package/dist/bin/arcubase.js
CHANGED
|
File without changes
|
|
@@ -75,6 +75,18 @@ export declare const adminCommands: readonly [{
|
|
|
75
75
|
readonly requestType: "AppCreateByTenantsReqVO";
|
|
76
76
|
readonly scalarParams: readonly [];
|
|
77
77
|
readonly responseType: "AppCreateByTenantsRespVO";
|
|
78
|
+
}, {
|
|
79
|
+
readonly scope: "admin";
|
|
80
|
+
readonly module: "app";
|
|
81
|
+
readonly functionName: "listApps";
|
|
82
|
+
readonly commandPath: readonly ["app", "list-apps"];
|
|
83
|
+
readonly method: "GET";
|
|
84
|
+
readonly endpoint: "/apps";
|
|
85
|
+
readonly endpointParams: readonly [];
|
|
86
|
+
readonly controller: "App.ListApps";
|
|
87
|
+
readonly requestType: null;
|
|
88
|
+
readonly scalarParams: readonly [];
|
|
89
|
+
readonly responseType: "AppListRespVO";
|
|
78
90
|
}, {
|
|
79
91
|
readonly scope: "admin";
|
|
80
92
|
readonly module: "app";
|
|
@@ -2079,58 +2091,6 @@ export declare const adminCommands: readonly [{
|
|
|
2079
2091
|
readonly hasDefault: true;
|
|
2080
2092
|
}];
|
|
2081
2093
|
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
2094
|
}];
|
|
2135
2095
|
export declare const userCommands: readonly [{
|
|
2136
2096
|
readonly scope: "user";
|
|
@@ -2886,9 +2846,9 @@ export declare const userCommands: readonly [{
|
|
|
2886
2846
|
readonly responseType: "FetchUserTokenRespVO";
|
|
2887
2847
|
}, {
|
|
2888
2848
|
readonly scope: "user";
|
|
2889
|
-
readonly module: "
|
|
2849
|
+
readonly module: "rows";
|
|
2890
2850
|
readonly functionName: "putEntityQueryKeeper";
|
|
2891
|
-
readonly commandPath: readonly ["
|
|
2851
|
+
readonly commandPath: readonly ["rows", "put-entity-query-keeper"];
|
|
2892
2852
|
readonly method: "POST";
|
|
2893
2853
|
readonly endpoint: "/entity/:app_id/:entity_id/query-keeper";
|
|
2894
2854
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -2898,9 +2858,9 @@ export declare const userCommands: readonly [{
|
|
|
2898
2858
|
readonly responseType: "EntityPutQueryKeeperRespVO";
|
|
2899
2859
|
}, {
|
|
2900
2860
|
readonly scope: "user";
|
|
2901
|
-
readonly module: "
|
|
2861
|
+
readonly module: "rows";
|
|
2902
2862
|
readonly functionName: "queryEntity";
|
|
2903
|
-
readonly commandPath: readonly ["
|
|
2863
|
+
readonly commandPath: readonly ["rows", "query-entity"];
|
|
2904
2864
|
readonly method: "POST";
|
|
2905
2865
|
readonly endpoint: "/entity/:app_id/:entity_id/data-query";
|
|
2906
2866
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -2910,9 +2870,9 @@ export declare const userCommands: readonly [{
|
|
|
2910
2870
|
readonly responseType: "EntityQueryRespVO";
|
|
2911
2871
|
}, {
|
|
2912
2872
|
readonly scope: "user";
|
|
2913
|
-
readonly module: "
|
|
2873
|
+
readonly module: "rows";
|
|
2914
2874
|
readonly functionName: "filterEntityQuery";
|
|
2915
|
-
readonly commandPath: readonly ["
|
|
2875
|
+
readonly commandPath: readonly ["rows", "filter-entity-query"];
|
|
2916
2876
|
readonly method: "POST";
|
|
2917
2877
|
readonly endpoint: "/entity/:app_id/:entity_id/query-filter";
|
|
2918
2878
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -2922,9 +2882,9 @@ export declare const userCommands: readonly [{
|
|
|
2922
2882
|
readonly responseType: "EntityQueryFilterRespVO";
|
|
2923
2883
|
}, {
|
|
2924
2884
|
readonly scope: "user";
|
|
2925
|
-
readonly module: "
|
|
2885
|
+
readonly module: "rows";
|
|
2926
2886
|
readonly functionName: "queryEntitySelection";
|
|
2927
|
-
readonly commandPath: readonly ["
|
|
2887
|
+
readonly commandPath: readonly ["rows", "query-entity-selection"];
|
|
2928
2888
|
readonly method: "POST";
|
|
2929
2889
|
readonly endpoint: "/entity/:app_id/:entity_id/selection-query/:action";
|
|
2930
2890
|
readonly endpointParams: readonly ["app_id", "entity_id", "action"];
|
|
@@ -2934,21 +2894,9 @@ export declare const userCommands: readonly [{
|
|
|
2934
2894
|
readonly responseType: "EntityQuerySelectionRespVO";
|
|
2935
2895
|
}, {
|
|
2936
2896
|
readonly scope: "user";
|
|
2937
|
-
readonly module: "
|
|
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";
|
|
2897
|
+
readonly module: "rows";
|
|
2950
2898
|
readonly functionName: "getEntityRow";
|
|
2951
|
-
readonly commandPath: readonly ["
|
|
2899
|
+
readonly commandPath: readonly ["rows", "get-entity-row"];
|
|
2952
2900
|
readonly method: "GET";
|
|
2953
2901
|
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id";
|
|
2954
2902
|
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
@@ -2962,9 +2910,9 @@ export declare const userCommands: readonly [{
|
|
|
2962
2910
|
readonly responseType: "EntityRowRespVO";
|
|
2963
2911
|
}, {
|
|
2964
2912
|
readonly scope: "user";
|
|
2965
|
-
readonly module: "
|
|
2913
|
+
readonly module: "rows";
|
|
2966
2914
|
readonly functionName: "deleteEntityRow";
|
|
2967
|
-
readonly commandPath: readonly ["
|
|
2915
|
+
readonly commandPath: readonly ["rows", "delete-entity-row"];
|
|
2968
2916
|
readonly method: "POST";
|
|
2969
2917
|
readonly endpoint: "/entity/:app_id/:entity_id/delete-item";
|
|
2970
2918
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -2974,9 +2922,9 @@ export declare const userCommands: readonly [{
|
|
|
2974
2922
|
readonly responseType: "EntityRowDeleteRespVO";
|
|
2975
2923
|
}, {
|
|
2976
2924
|
readonly scope: "user";
|
|
2977
|
-
readonly module: "
|
|
2925
|
+
readonly module: "rows";
|
|
2978
2926
|
readonly functionName: "restoreEntityRow";
|
|
2979
|
-
readonly commandPath: readonly ["
|
|
2927
|
+
readonly commandPath: readonly ["rows", "restore-entity-row"];
|
|
2980
2928
|
readonly method: "POST";
|
|
2981
2929
|
readonly endpoint: "/entity/:app_id/:entity_id/restore-item";
|
|
2982
2930
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -2986,9 +2934,9 @@ export declare const userCommands: readonly [{
|
|
|
2986
2934
|
readonly responseType: "{ restored: number }";
|
|
2987
2935
|
}, {
|
|
2988
2936
|
readonly scope: "user";
|
|
2989
|
-
readonly module: "
|
|
2937
|
+
readonly module: "rows";
|
|
2990
2938
|
readonly functionName: "updateEntityRow";
|
|
2991
|
-
readonly commandPath: readonly ["
|
|
2939
|
+
readonly commandPath: readonly ["rows", "update-entity-row"];
|
|
2992
2940
|
readonly method: "PUT";
|
|
2993
2941
|
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id";
|
|
2994
2942
|
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
@@ -2998,9 +2946,9 @@ export declare const userCommands: readonly [{
|
|
|
2998
2946
|
readonly responseType: "EntityUpdateRespVO";
|
|
2999
2947
|
}, {
|
|
3000
2948
|
readonly scope: "user";
|
|
3001
|
-
readonly module: "
|
|
2949
|
+
readonly module: "rows";
|
|
3002
2950
|
readonly functionName: "validateEntityUniq";
|
|
3003
|
-
readonly commandPath: readonly ["
|
|
2951
|
+
readonly commandPath: readonly ["rows", "validate-entity-uniq"];
|
|
3004
2952
|
readonly method: "POST";
|
|
3005
2953
|
readonly endpoint: "/entity/:app_id/:entity_id/validate-uniq";
|
|
3006
2954
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -3010,9 +2958,9 @@ export declare const userCommands: readonly [{
|
|
|
3010
2958
|
readonly responseType: "EntityValidateUniqRespVO";
|
|
3011
2959
|
}, {
|
|
3012
2960
|
readonly scope: "user";
|
|
3013
|
-
readonly module: "
|
|
2961
|
+
readonly module: "rows";
|
|
3014
2962
|
readonly functionName: "insertEntity";
|
|
3015
|
-
readonly commandPath: readonly ["
|
|
2963
|
+
readonly commandPath: readonly ["rows", "insert-entity"];
|
|
3016
2964
|
readonly method: "POST";
|
|
3017
2965
|
readonly endpoint: "/entity/:app_id/:entity_id/insert";
|
|
3018
2966
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -3022,9 +2970,9 @@ export declare const userCommands: readonly [{
|
|
|
3022
2970
|
readonly responseType: "InsertRespVO";
|
|
3023
2971
|
}, {
|
|
3024
2972
|
readonly scope: "user";
|
|
3025
|
-
readonly module: "
|
|
2973
|
+
readonly module: "rows";
|
|
3026
2974
|
readonly functionName: "prepareEntityInsert";
|
|
3027
|
-
readonly commandPath: readonly ["
|
|
2975
|
+
readonly commandPath: readonly ["rows", "prepare-entity-insert"];
|
|
3028
2976
|
readonly method: "POST";
|
|
3029
2977
|
readonly endpoint: "/entity/:app_id/:entity_id/prepare";
|
|
3030
2978
|
readonly endpointParams: readonly ["app_id", "entity_id"];
|
|
@@ -3034,33 +2982,9 @@ export declare const userCommands: readonly [{
|
|
|
3034
2982
|
readonly responseType: "InsertPrepareRespVO";
|
|
3035
2983
|
}, {
|
|
3036
2984
|
readonly scope: "user";
|
|
3037
|
-
readonly module: "
|
|
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";
|
|
2985
|
+
readonly module: "rows";
|
|
3062
2986
|
readonly functionName: "getEntitySubformItems";
|
|
3063
|
-
readonly commandPath: readonly ["
|
|
2987
|
+
readonly commandPath: readonly ["rows", "get-entity-subform-items"];
|
|
3064
2988
|
readonly method: "POST";
|
|
3065
2989
|
readonly endpoint: "/entity/:app_id/:entity_id/row/:row_id/get-subitems";
|
|
3066
2990
|
readonly endpointParams: readonly ["app_id", "entity_id", "row_id"];
|
|
@@ -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,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACtC,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,cAAc,EAAE,SAAS,MAAM,EAAE,CAAA;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,YAAY,EAAE,SAAS;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,EAAE,CAAA;IAC5E,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,aAAa
|
|
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,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;IACtC,MAAM,EAAE,MAAM,CAAA;IACd,QAAQ,EAAE,MAAM,CAAA;IAChB,cAAc,EAAE,SAAS,MAAM,EAAE,CAAA;IACjC,UAAU,EAAE,MAAM,CAAA;IAClB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,YAAY,EAAE,SAAS;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,OAAO,CAAA;KAAE,EAAE,CAAA;IAC5E,YAAY,EAAE,MAAM,CAAA;CACrB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuiGhB,CAAA;AAEV,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAs0Cf,CAAA"}
|
|
@@ -88,6 +88,22 @@ export const adminCommands = [
|
|
|
88
88
|
"scalarParams": [],
|
|
89
89
|
"responseType": "AppCreateByTenantsRespVO"
|
|
90
90
|
},
|
|
91
|
+
{
|
|
92
|
+
"scope": "admin",
|
|
93
|
+
"module": "app",
|
|
94
|
+
"functionName": "listApps",
|
|
95
|
+
"commandPath": [
|
|
96
|
+
"app",
|
|
97
|
+
"list-apps"
|
|
98
|
+
],
|
|
99
|
+
"method": "GET",
|
|
100
|
+
"endpoint": "/apps",
|
|
101
|
+
"endpointParams": [],
|
|
102
|
+
"controller": "App.ListApps",
|
|
103
|
+
"requestType": null,
|
|
104
|
+
"scalarParams": [],
|
|
105
|
+
"responseType": "AppListRespVO"
|
|
106
|
+
},
|
|
91
107
|
{
|
|
92
108
|
"scope": "admin",
|
|
93
109
|
"module": "app",
|
|
@@ -3093,88 +3109,6 @@ export const adminCommands = [
|
|
|
3093
3109
|
}
|
|
3094
3110
|
],
|
|
3095
3111
|
"responseType": "TenantUsageDailyRespVO"
|
|
3096
|
-
},
|
|
3097
|
-
{
|
|
3098
|
-
"scope": "admin",
|
|
3099
|
-
"module": "workflow",
|
|
3100
|
-
"functionName": "deployEntityWorkflow",
|
|
3101
|
-
"commandPath": [
|
|
3102
|
-
"workflow",
|
|
3103
|
-
"deploy-entity-workflow"
|
|
3104
|
-
],
|
|
3105
|
-
"method": "POST",
|
|
3106
|
-
"endpoint": "/apps/:app_id/entity/:entity_id/workflow/deploy",
|
|
3107
|
-
"endpointParams": [
|
|
3108
|
-
"app_id",
|
|
3109
|
-
"entity_id"
|
|
3110
|
-
],
|
|
3111
|
-
"controller": "Entity.WorkflowDeploy",
|
|
3112
|
-
"requestType": "EntityWorkflowDeployReqVO",
|
|
3113
|
-
"scalarParams": [],
|
|
3114
|
-
"responseType": "EntityWorkflowDeployRespVO"
|
|
3115
|
-
},
|
|
3116
|
-
{
|
|
3117
|
-
"scope": "admin",
|
|
3118
|
-
"module": "workflow",
|
|
3119
|
-
"functionName": "getEntityWorkflow",
|
|
3120
|
-
"commandPath": [
|
|
3121
|
-
"workflow",
|
|
3122
|
-
"get-entity-workflow"
|
|
3123
|
-
],
|
|
3124
|
-
"method": "GET",
|
|
3125
|
-
"endpoint": "/apps/:app_id/entity/:entity_id/workflow",
|
|
3126
|
-
"endpointParams": [
|
|
3127
|
-
"app_id",
|
|
3128
|
-
"entity_id"
|
|
3129
|
-
],
|
|
3130
|
-
"controller": "Entity.WorkflowGet",
|
|
3131
|
-
"requestType": null,
|
|
3132
|
-
"scalarParams": [
|
|
3133
|
-
{
|
|
3134
|
-
"name": "workingId",
|
|
3135
|
-
"type": "string",
|
|
3136
|
-
"hasDefault": true
|
|
3137
|
-
}
|
|
3138
|
-
],
|
|
3139
|
-
"responseType": "EntityWorkflowGetRespVO"
|
|
3140
|
-
},
|
|
3141
|
-
{
|
|
3142
|
-
"scope": "admin",
|
|
3143
|
-
"module": "workflow",
|
|
3144
|
-
"functionName": "createEntityWorkflowVersion",
|
|
3145
|
-
"commandPath": [
|
|
3146
|
-
"workflow",
|
|
3147
|
-
"create-entity-workflow-version"
|
|
3148
|
-
],
|
|
3149
|
-
"method": "POST",
|
|
3150
|
-
"endpoint": "/apps/:app_id/entity/:entity_id/workflow/new",
|
|
3151
|
-
"endpointParams": [
|
|
3152
|
-
"app_id",
|
|
3153
|
-
"entity_id"
|
|
3154
|
-
],
|
|
3155
|
-
"controller": "Entity.WorkflowNewVersion",
|
|
3156
|
-
"requestType": null,
|
|
3157
|
-
"scalarParams": [],
|
|
3158
|
-
"responseType": "EntityWorkflowNewVersionRespVO"
|
|
3159
|
-
},
|
|
3160
|
-
{
|
|
3161
|
-
"scope": "admin",
|
|
3162
|
-
"module": "workflow",
|
|
3163
|
-
"functionName": "updateEntityWorkflow",
|
|
3164
|
-
"commandPath": [
|
|
3165
|
-
"workflow",
|
|
3166
|
-
"update-entity-workflow"
|
|
3167
|
-
],
|
|
3168
|
-
"method": "POST",
|
|
3169
|
-
"endpoint": "/apps/:app_id/entity/:entity_id/workflow",
|
|
3170
|
-
"endpointParams": [
|
|
3171
|
-
"app_id",
|
|
3172
|
-
"entity_id"
|
|
3173
|
-
],
|
|
3174
|
-
"controller": "Entity.WorkflowUpdate",
|
|
3175
|
-
"requestType": "EntityWorkflowUpdateReqVO",
|
|
3176
|
-
"scalarParams": [],
|
|
3177
|
-
"responseType": "EntityWorkflowUpdateRespVO"
|
|
3178
3112
|
}
|
|
3179
3113
|
];
|
|
3180
3114
|
export const userCommands = [
|
|
@@ -4291,10 +4225,10 @@ export const userCommands = [
|
|
|
4291
4225
|
},
|
|
4292
4226
|
{
|
|
4293
4227
|
"scope": "user",
|
|
4294
|
-
"module": "
|
|
4228
|
+
"module": "rows",
|
|
4295
4229
|
"functionName": "putEntityQueryKeeper",
|
|
4296
4230
|
"commandPath": [
|
|
4297
|
-
"
|
|
4231
|
+
"rows",
|
|
4298
4232
|
"put-entity-query-keeper"
|
|
4299
4233
|
],
|
|
4300
4234
|
"method": "POST",
|
|
@@ -4310,10 +4244,10 @@ export const userCommands = [
|
|
|
4310
4244
|
},
|
|
4311
4245
|
{
|
|
4312
4246
|
"scope": "user",
|
|
4313
|
-
"module": "
|
|
4247
|
+
"module": "rows",
|
|
4314
4248
|
"functionName": "queryEntity",
|
|
4315
4249
|
"commandPath": [
|
|
4316
|
-
"
|
|
4250
|
+
"rows",
|
|
4317
4251
|
"query-entity"
|
|
4318
4252
|
],
|
|
4319
4253
|
"method": "POST",
|
|
@@ -4329,10 +4263,10 @@ export const userCommands = [
|
|
|
4329
4263
|
},
|
|
4330
4264
|
{
|
|
4331
4265
|
"scope": "user",
|
|
4332
|
-
"module": "
|
|
4266
|
+
"module": "rows",
|
|
4333
4267
|
"functionName": "filterEntityQuery",
|
|
4334
4268
|
"commandPath": [
|
|
4335
|
-
"
|
|
4269
|
+
"rows",
|
|
4336
4270
|
"filter-entity-query"
|
|
4337
4271
|
],
|
|
4338
4272
|
"method": "POST",
|
|
@@ -4348,10 +4282,10 @@ export const userCommands = [
|
|
|
4348
4282
|
},
|
|
4349
4283
|
{
|
|
4350
4284
|
"scope": "user",
|
|
4351
|
-
"module": "
|
|
4285
|
+
"module": "rows",
|
|
4352
4286
|
"functionName": "queryEntitySelection",
|
|
4353
4287
|
"commandPath": [
|
|
4354
|
-
"
|
|
4288
|
+
"rows",
|
|
4355
4289
|
"query-entity-selection"
|
|
4356
4290
|
],
|
|
4357
4291
|
"method": "POST",
|
|
@@ -4368,29 +4302,10 @@ export const userCommands = [
|
|
|
4368
4302
|
},
|
|
4369
4303
|
{
|
|
4370
4304
|
"scope": "user",
|
|
4371
|
-
"module": "
|
|
4372
|
-
"functionName": "resolveEntityWorkflow",
|
|
4373
|
-
"commandPath": [
|
|
4374
|
-
"workflow",
|
|
4375
|
-
"resolve-entity-workflow"
|
|
4376
|
-
],
|
|
4377
|
-
"method": "POST",
|
|
4378
|
-
"endpoint": "/entity/:app_id/:entity_id/resolve-workflow",
|
|
4379
|
-
"endpointParams": [
|
|
4380
|
-
"app_id",
|
|
4381
|
-
"entity_id"
|
|
4382
|
-
],
|
|
4383
|
-
"controller": "UserAction.EntityResolveWorkflow",
|
|
4384
|
-
"requestType": "EntityResolveWorkflowReqVO",
|
|
4385
|
-
"scalarParams": [],
|
|
4386
|
-
"responseType": "EntityResolveWorkflowRespVO"
|
|
4387
|
-
},
|
|
4388
|
-
{
|
|
4389
|
-
"scope": "user",
|
|
4390
|
-
"module": "workflow",
|
|
4305
|
+
"module": "rows",
|
|
4391
4306
|
"functionName": "getEntityRow",
|
|
4392
4307
|
"commandPath": [
|
|
4393
|
-
"
|
|
4308
|
+
"rows",
|
|
4394
4309
|
"get-entity-row"
|
|
4395
4310
|
],
|
|
4396
4311
|
"method": "GET",
|
|
@@ -4413,10 +4328,10 @@ export const userCommands = [
|
|
|
4413
4328
|
},
|
|
4414
4329
|
{
|
|
4415
4330
|
"scope": "user",
|
|
4416
|
-
"module": "
|
|
4331
|
+
"module": "rows",
|
|
4417
4332
|
"functionName": "deleteEntityRow",
|
|
4418
4333
|
"commandPath": [
|
|
4419
|
-
"
|
|
4334
|
+
"rows",
|
|
4420
4335
|
"delete-entity-row"
|
|
4421
4336
|
],
|
|
4422
4337
|
"method": "POST",
|
|
@@ -4432,10 +4347,10 @@ export const userCommands = [
|
|
|
4432
4347
|
},
|
|
4433
4348
|
{
|
|
4434
4349
|
"scope": "user",
|
|
4435
|
-
"module": "
|
|
4350
|
+
"module": "rows",
|
|
4436
4351
|
"functionName": "restoreEntityRow",
|
|
4437
4352
|
"commandPath": [
|
|
4438
|
-
"
|
|
4353
|
+
"rows",
|
|
4439
4354
|
"restore-entity-row"
|
|
4440
4355
|
],
|
|
4441
4356
|
"method": "POST",
|
|
@@ -4451,10 +4366,10 @@ export const userCommands = [
|
|
|
4451
4366
|
},
|
|
4452
4367
|
{
|
|
4453
4368
|
"scope": "user",
|
|
4454
|
-
"module": "
|
|
4369
|
+
"module": "rows",
|
|
4455
4370
|
"functionName": "updateEntityRow",
|
|
4456
4371
|
"commandPath": [
|
|
4457
|
-
"
|
|
4372
|
+
"rows",
|
|
4458
4373
|
"update-entity-row"
|
|
4459
4374
|
],
|
|
4460
4375
|
"method": "PUT",
|
|
@@ -4471,10 +4386,10 @@ export const userCommands = [
|
|
|
4471
4386
|
},
|
|
4472
4387
|
{
|
|
4473
4388
|
"scope": "user",
|
|
4474
|
-
"module": "
|
|
4389
|
+
"module": "rows",
|
|
4475
4390
|
"functionName": "validateEntityUniq",
|
|
4476
4391
|
"commandPath": [
|
|
4477
|
-
"
|
|
4392
|
+
"rows",
|
|
4478
4393
|
"validate-entity-uniq"
|
|
4479
4394
|
],
|
|
4480
4395
|
"method": "POST",
|
|
@@ -4490,10 +4405,10 @@ export const userCommands = [
|
|
|
4490
4405
|
},
|
|
4491
4406
|
{
|
|
4492
4407
|
"scope": "user",
|
|
4493
|
-
"module": "
|
|
4408
|
+
"module": "rows",
|
|
4494
4409
|
"functionName": "insertEntity",
|
|
4495
4410
|
"commandPath": [
|
|
4496
|
-
"
|
|
4411
|
+
"rows",
|
|
4497
4412
|
"insert-entity"
|
|
4498
4413
|
],
|
|
4499
4414
|
"method": "POST",
|
|
@@ -4509,10 +4424,10 @@ export const userCommands = [
|
|
|
4509
4424
|
},
|
|
4510
4425
|
{
|
|
4511
4426
|
"scope": "user",
|
|
4512
|
-
"module": "
|
|
4427
|
+
"module": "rows",
|
|
4513
4428
|
"functionName": "prepareEntityInsert",
|
|
4514
4429
|
"commandPath": [
|
|
4515
|
-
"
|
|
4430
|
+
"rows",
|
|
4516
4431
|
"prepare-entity-insert"
|
|
4517
4432
|
],
|
|
4518
4433
|
"method": "POST",
|
|
@@ -4528,48 +4443,10 @@ export const userCommands = [
|
|
|
4528
4443
|
},
|
|
4529
4444
|
{
|
|
4530
4445
|
"scope": "user",
|
|
4531
|
-
"module": "
|
|
4532
|
-
"functionName": "queryEntityWorkflowApproveUsers",
|
|
4533
|
-
"commandPath": [
|
|
4534
|
-
"workflow",
|
|
4535
|
-
"query-entity-workflow-approve-users"
|
|
4536
|
-
],
|
|
4537
|
-
"method": "POST",
|
|
4538
|
-
"endpoint": "/entity/:app_id/:entity_id/query-approve-users",
|
|
4539
|
-
"endpointParams": [
|
|
4540
|
-
"app_id",
|
|
4541
|
-
"entity_id"
|
|
4542
|
-
],
|
|
4543
|
-
"controller": "UserAction.EntityWorkflowApproveUsers",
|
|
4544
|
-
"requestType": null,
|
|
4545
|
-
"scalarParams": [],
|
|
4546
|
-
"responseType": "EntityWorkflowApproveUsersRespVO"
|
|
4547
|
-
},
|
|
4548
|
-
{
|
|
4549
|
-
"scope": "user",
|
|
4550
|
-
"module": "workflow",
|
|
4551
|
-
"functionName": "queryEntityWorkflowNodes",
|
|
4552
|
-
"commandPath": [
|
|
4553
|
-
"workflow",
|
|
4554
|
-
"query-entity-workflow-nodes"
|
|
4555
|
-
],
|
|
4556
|
-
"method": "POST",
|
|
4557
|
-
"endpoint": "/entity/:app_id/:entity_id/query-workflow-nodes",
|
|
4558
|
-
"endpointParams": [
|
|
4559
|
-
"app_id",
|
|
4560
|
-
"entity_id"
|
|
4561
|
-
],
|
|
4562
|
-
"controller": "UserAction.EntityWorkflowNodes",
|
|
4563
|
-
"requestType": null,
|
|
4564
|
-
"scalarParams": [],
|
|
4565
|
-
"responseType": "EntityWorkflowNodesRespVO"
|
|
4566
|
-
},
|
|
4567
|
-
{
|
|
4568
|
-
"scope": "user",
|
|
4569
|
-
"module": "workflow",
|
|
4446
|
+
"module": "rows",
|
|
4570
4447
|
"functionName": "getEntitySubformItems",
|
|
4571
4448
|
"commandPath": [
|
|
4572
|
-
"
|
|
4449
|
+
"rows",
|
|
4573
4450
|
"get-entity-subform-items"
|
|
4574
4451
|
],
|
|
4575
4452
|
"method": "POST",
|
|
@@ -278,10 +278,6 @@ export declare const typeIndex: {
|
|
|
278
278
|
readonly file: "/opt/arcubase-sdk/types/user-action.ts";
|
|
279
279
|
readonly dependencies: readonly [];
|
|
280
280
|
};
|
|
281
|
-
readonly EntityResolveWorkflowReqVO: {
|
|
282
|
-
readonly file: "/opt/arcubase-sdk/types/user-action.ts";
|
|
283
|
-
readonly dependencies: readonly [];
|
|
284
|
-
};
|
|
285
281
|
readonly EntitySaveCustomKeysReqVO: {
|
|
286
282
|
readonly file: "/opt/arcubase-sdk/types/entity.ts";
|
|
287
283
|
readonly dependencies: readonly [{
|
|
@@ -336,14 +332,6 @@ export declare const typeIndex: {
|
|
|
336
332
|
readonly file: "/opt/arcubase-sdk/types/common.ts";
|
|
337
333
|
readonly dependencies: readonly [];
|
|
338
334
|
};
|
|
339
|
-
readonly EntityWorkflowDeployReqVO: {
|
|
340
|
-
readonly file: "/opt/arcubase-sdk/types/workflow.ts";
|
|
341
|
-
readonly dependencies: readonly [];
|
|
342
|
-
};
|
|
343
|
-
readonly EntityWorkflowUpdateReqVO: {
|
|
344
|
-
readonly file: "/opt/arcubase-sdk/types/workflow.ts";
|
|
345
|
-
readonly dependencies: readonly [];
|
|
346
|
-
};
|
|
347
335
|
readonly FetchWidgetsDataReqVO: {
|
|
348
336
|
readonly file: "/opt/arcubase-sdk/types/user-action.ts";
|
|
349
337
|
readonly dependencies: readonly [];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"type_index.generated.d.ts","sourceRoot":"","sources":["../../src/generated/type_index.generated.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"type_index.generated.d.ts","sourceRoot":"","sources":["../../src/generated/type_index.generated.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAweZ,CAAA"}
|
|
@@ -281,10 +281,6 @@ export const typeIndex = {
|
|
|
281
281
|
"file": "/opt/arcubase-sdk/types/user-action.ts",
|
|
282
282
|
"dependencies": []
|
|
283
283
|
},
|
|
284
|
-
"EntityResolveWorkflowReqVO": {
|
|
285
|
-
"file": "/opt/arcubase-sdk/types/user-action.ts",
|
|
286
|
-
"dependencies": []
|
|
287
|
-
},
|
|
288
284
|
"EntitySaveCustomKeysReqVO": {
|
|
289
285
|
"file": "/opt/arcubase-sdk/types/entity.ts",
|
|
290
286
|
"dependencies": [
|
|
@@ -343,14 +339,6 @@ export const typeIndex = {
|
|
|
343
339
|
"file": "/opt/arcubase-sdk/types/common.ts",
|
|
344
340
|
"dependencies": []
|
|
345
341
|
},
|
|
346
|
-
"EntityWorkflowDeployReqVO": {
|
|
347
|
-
"file": "/opt/arcubase-sdk/types/workflow.ts",
|
|
348
|
-
"dependencies": []
|
|
349
|
-
},
|
|
350
|
-
"EntityWorkflowUpdateReqVO": {
|
|
351
|
-
"file": "/opt/arcubase-sdk/types/workflow.ts",
|
|
352
|
-
"dependencies": []
|
|
353
|
-
},
|
|
354
342
|
"FetchWidgetsDataReqVO": {
|
|
355
343
|
"file": "/opt/arcubase-sdk/types/user-action.ts",
|
|
356
344
|
"dependencies": []
|