@tachybase/module-workflow 0.23.47 → 0.23.58
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/dist/client/features/dynamic-calculation/DynamicCalculation.d.ts +12 -0
- package/dist/client/features/loop/LoopInstruction.d.ts +12 -0
- package/dist/client/features/parallel/ParallelInstruction.d.ts +12 -0
- package/dist/client/features/request/RequestInstruction.d.ts +1 -2
- package/dist/client/features/sql/SQLInstruction.d.ts +12 -0
- package/dist/client/features/variables/VariablesInstruction.d.ts +12 -0
- package/dist/client/index.js +10 -10
- package/dist/client/nodes/calculation.d.ts +12 -0
- package/dist/client/nodes/condition.d.ts +12 -0
- package/dist/client/nodes/end.d.ts +12 -0
- package/dist/client/variable.d.ts +1 -5
- package/dist/externalVersion.js +15 -15
- package/dist/locale/en-US.json +4 -0
- package/dist/locale/zh-CN.json +4 -0
- package/dist/node_modules/@babel/core/package.json +1 -1
- package/dist/node_modules/cron-parser/package.json +1 -1
- package/dist/node_modules/form-data/package.json +1 -1
- package/dist/node_modules/jsonata/package.json +1 -1
- package/dist/node_modules/lru-cache/package.json +1 -1
- package/dist/node_modules/mime-types/package.json +1 -1
- package/dist/node_modules/qrcode/package.json +1 -1
- package/dist/server/Plugin.js +21 -12
- package/dist/server/Processor.d.ts +1 -0
- package/dist/server/Processor.js +2 -1
- package/dist/server/features/interception/RequestInterceptionTrigger.js +4 -1
- package/dist/server/features/omni-trigger/CustomActionTrigger.js +4 -1
- package/package.json +17 -17
- package/dist/server/features/webhook/Plugin.d.ts +0 -4
- package/dist/server/features/webhook/Plugin.js +0 -109
- package/dist/server/features/webhook/index.d.ts +0 -1
- package/dist/server/features/webhook/index.js +0 -27
- package/dist/server/features/webhook/webhooks.d.ts +0 -9
- package/dist/server/features/webhook/webhooks.js +0 -286
|
@@ -46,6 +46,18 @@ export default class extends Instruction {
|
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
};
|
|
49
|
+
remarks: {
|
|
50
|
+
type: string;
|
|
51
|
+
title: string;
|
|
52
|
+
'x-decorator': string;
|
|
53
|
+
'x-component': string;
|
|
54
|
+
'x-component-props': {
|
|
55
|
+
autoSize: {
|
|
56
|
+
minRows: number;
|
|
57
|
+
};
|
|
58
|
+
placeholder: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
49
61
|
};
|
|
50
62
|
components: {
|
|
51
63
|
DynamicExpression: typeof DynamicExpression;
|
|
@@ -21,6 +21,18 @@ export default class extends Instruction {
|
|
|
21
21
|
};
|
|
22
22
|
required: boolean;
|
|
23
23
|
};
|
|
24
|
+
remarks: {
|
|
25
|
+
type: string;
|
|
26
|
+
title: string;
|
|
27
|
+
'x-decorator': string;
|
|
28
|
+
'x-component': string;
|
|
29
|
+
'x-component-props': {
|
|
30
|
+
autoSize: {
|
|
31
|
+
minRows: number;
|
|
32
|
+
};
|
|
33
|
+
placeholder: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
24
36
|
};
|
|
25
37
|
components: {
|
|
26
38
|
WorkflowVariableInput: typeof WorkflowVariableInput;
|
|
@@ -23,6 +23,18 @@ export default class extends Instruction {
|
|
|
23
23
|
};
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
|
+
remarks: {
|
|
27
|
+
type: string;
|
|
28
|
+
title: string;
|
|
29
|
+
'x-decorator': string;
|
|
30
|
+
'x-component': string;
|
|
31
|
+
'x-component-props': {
|
|
32
|
+
autoSize: {
|
|
33
|
+
minRows: number;
|
|
34
|
+
};
|
|
35
|
+
placeholder: string;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
26
38
|
};
|
|
27
39
|
components: {
|
|
28
40
|
RadioWithTooltip: typeof RadioWithTooltip;
|
|
@@ -160,11 +160,10 @@ export default class extends Instruction {
|
|
|
160
160
|
};
|
|
161
161
|
description: string;
|
|
162
162
|
};
|
|
163
|
-
|
|
163
|
+
remarks: {
|
|
164
164
|
type: string;
|
|
165
165
|
title: string;
|
|
166
166
|
'x-decorator': string;
|
|
167
|
-
'x-decorator-props': {};
|
|
168
167
|
'x-component': string;
|
|
169
168
|
'x-component-props': {
|
|
170
169
|
autoSize: {
|
|
@@ -33,6 +33,18 @@ export default class extends Instruction {
|
|
|
33
33
|
className: string;
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
|
+
remarks: {
|
|
37
|
+
type: string;
|
|
38
|
+
title: string;
|
|
39
|
+
'x-decorator': string;
|
|
40
|
+
'x-component': string;
|
|
41
|
+
'x-component-props': {
|
|
42
|
+
autoSize: {
|
|
43
|
+
minRows: number;
|
|
44
|
+
};
|
|
45
|
+
placeholder: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
36
48
|
};
|
|
37
49
|
components: {
|
|
38
50
|
WorkflowVariableRawTextArea: typeof WorkflowVariableRawTextArea;
|
|
@@ -28,6 +28,18 @@ export declare class VariablesInstruction extends Instruction {
|
|
|
28
28
|
};
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
|
+
remarks: {
|
|
32
|
+
type: string;
|
|
33
|
+
title: string;
|
|
34
|
+
'x-decorator': string;
|
|
35
|
+
'x-component': string;
|
|
36
|
+
'x-component-props': {
|
|
37
|
+
autoSize: {
|
|
38
|
+
minRows: number;
|
|
39
|
+
};
|
|
40
|
+
placeholder: string;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
31
43
|
};
|
|
32
44
|
scope: {
|
|
33
45
|
useCollectionDataSource: typeof useCollectionDataSource;
|