@nocobase/plugin-workflow 0.17.0-alpha.2 → 0.17.0-alpha.4

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.
Files changed (133) hide show
  1. package/dist/client/WorkflowPane.d.ts +2 -0
  2. package/dist/client/components/index.d.ts +5 -0
  3. package/dist/client/hooks/useTriggerWorkflowActionProps.d.ts +3 -0
  4. package/dist/client/index.d.ts +14 -6
  5. package/dist/client/index.js +136 -186
  6. package/dist/client/nodes/calculation.d.ts +8 -62
  7. package/dist/client/nodes/condition.d.ts +9 -9
  8. package/dist/client/nodes/create.d.ts +3 -5
  9. package/dist/client/nodes/destroy.d.ts +3 -4
  10. package/dist/client/nodes/index.d.ts +2 -6
  11. package/dist/client/nodes/query.d.ts +3 -5
  12. package/dist/client/nodes/update.d.ts +4 -4
  13. package/dist/client/triggers/collection.d.ts +3 -4
  14. package/dist/client/triggers/index.d.ts +2 -11
  15. package/dist/client/triggers/schedule/index.d.ts +3 -4
  16. package/dist/client/utils.d.ts +1 -0
  17. package/dist/externalVersion.js +11 -13
  18. package/dist/locale/{en-US.js → en-US.json} +41 -94
  19. package/dist/locale/es-ES.json +98 -0
  20. package/dist/locale/fr-FR.json +98 -0
  21. package/dist/locale/ja-JP.json +82 -0
  22. package/dist/locale/pt-BR.json +98 -0
  23. package/dist/locale/ru-RU.json +82 -0
  24. package/dist/locale/tr-TR.json +82 -0
  25. package/dist/locale/zh-CN.json +176 -0
  26. package/dist/node_modules/cron-parser/package.json +1 -1
  27. package/dist/node_modules/lru-cache/package.json +1 -1
  28. package/dist/server/Plugin.d.ts +12 -2
  29. package/dist/server/Plugin.js +31 -7
  30. package/dist/server/Processor.d.ts +1 -1
  31. package/dist/server/index.d.ts +1 -1
  32. package/dist/server/index.js +2 -0
  33. package/dist/server/instructions/CalculationInstruction.d.ts +15 -0
  34. package/dist/server/instructions/{calculation.js → CalculationInstruction.js} +13 -6
  35. package/dist/server/instructions/ConditionInstruction.d.ts +19 -0
  36. package/dist/server/instructions/{condition.js → ConditionInstruction.js} +11 -7
  37. package/dist/server/instructions/CreateInstruction.d.ts +10 -0
  38. package/dist/server/instructions/{create.js → CreateInstruction.js} +13 -6
  39. package/dist/server/instructions/DestroyInstruction.d.ts +10 -0
  40. package/dist/server/instructions/{destroy.js → DestroyInstruction.js} +13 -6
  41. package/dist/server/instructions/{update.d.ts → QueryInstruction.d.ts} +5 -4
  42. package/dist/server/instructions/{query.js → QueryInstruction.js} +13 -6
  43. package/dist/server/instructions/{aggregate.d.ts → UpdateInstruction.d.ts} +5 -4
  44. package/dist/server/instructions/{update.js → UpdateInstruction.js} +13 -6
  45. package/dist/server/instructions/index.d.ts +10 -14
  46. package/dist/server/instructions/index.js +9 -39
  47. package/dist/server/migrations/20231122143143-split-to-plugins.d.ts +4 -0
  48. package/dist/server/migrations/20231122143143-split-to-plugins.js +87 -0
  49. package/dist/server/triggers/{collection.d.ts → CollectionTrigger.d.ts} +1 -1
  50. package/dist/server/triggers/{collection.js → CollectionTrigger.js} +15 -5
  51. package/dist/server/triggers/{schedule.d.ts → ScheduleTrigger.d.ts} +2 -1
  52. package/dist/server/triggers/{schedule.js → ScheduleTrigger.js} +5 -5
  53. package/dist/server/triggers/index.d.ts +2 -6
  54. package/dist/server/triggers/index.js +1 -21
  55. package/package.json +3 -2
  56. package/dist/client/WorkflowProvider.d.ts +0 -5
  57. package/dist/client/components/Duration.d.ts +0 -5
  58. package/dist/client/components/DynamicExpression.d.ts +0 -6
  59. package/dist/client/components/NullRender.d.ts +0 -1
  60. package/dist/client/interfaces/expression.d.ts +0 -3
  61. package/dist/client/nodes/aggregate.d.ts +0 -196
  62. package/dist/client/nodes/delay.d.ts +0 -35
  63. package/dist/client/nodes/loop.d.ts +0 -33
  64. package/dist/client/nodes/manual/AssigneesSelect.d.ts +0 -6
  65. package/dist/client/nodes/manual/DetailsBlockProvider.d.ts +0 -2
  66. package/dist/client/nodes/manual/FormBlockInitializer.d.ts +0 -2
  67. package/dist/client/nodes/manual/FormBlockProvider.d.ts +0 -2
  68. package/dist/client/nodes/manual/ModeConfig.d.ts +0 -5
  69. package/dist/client/nodes/manual/SchemaConfig.d.ts +0 -49
  70. package/dist/client/nodes/manual/WorkflowTodo.d.ts +0 -5
  71. package/dist/client/nodes/manual/WorkflowTodoBlockInitializer.d.ts +0 -2
  72. package/dist/client/nodes/manual/forms/create.d.ts +0 -3
  73. package/dist/client/nodes/manual/forms/custom.d.ts +0 -5
  74. package/dist/client/nodes/manual/forms/update.d.ts +0 -3
  75. package/dist/client/nodes/manual/index.d.ts +0 -86
  76. package/dist/client/nodes/manual/utils.d.ts +0 -2
  77. package/dist/client/nodes/parallel.d.ts +0 -32
  78. package/dist/client/nodes/request.d.ts +0 -183
  79. package/dist/client/nodes/sql.d.ts +0 -35
  80. package/dist/client/triggers/form.d.ts +0 -52
  81. package/dist/locale/en-US.d.ts +0 -130
  82. package/dist/locale/es-ES.d.ts +0 -130
  83. package/dist/locale/es-ES.js +0 -151
  84. package/dist/locale/fr-FR.d.ts +0 -130
  85. package/dist/locale/fr-FR.js +0 -151
  86. package/dist/locale/ja-JP.d.ts +0 -88
  87. package/dist/locale/ja-JP.js +0 -109
  88. package/dist/locale/pt-BR.d.ts +0 -130
  89. package/dist/locale/pt-BR.js +0 -151
  90. package/dist/locale/ru-RU.d.ts +0 -88
  91. package/dist/locale/ru-RU.js +0 -109
  92. package/dist/locale/tr-TR.d.ts +0 -88
  93. package/dist/locale/tr-TR.js +0 -109
  94. package/dist/locale/zh-CN.d.ts +0 -249
  95. package/dist/locale/zh-CN.js +0 -270
  96. package/dist/server/fields/expression-field.d.ts +0 -7
  97. package/dist/server/fields/expression-field.js +0 -32
  98. package/dist/server/fields/index.d.ts +0 -1
  99. package/dist/server/fields/index.js +0 -28
  100. package/dist/server/instructions/aggregate.js +0 -54
  101. package/dist/server/instructions/calculation.d.ts +0 -3
  102. package/dist/server/instructions/condition.d.ts +0 -6
  103. package/dist/server/instructions/create.d.ts +0 -8
  104. package/dist/server/instructions/delay.d.ts +0 -15
  105. package/dist/server/instructions/delay.js +0 -104
  106. package/dist/server/instructions/destroy.d.ts +0 -8
  107. package/dist/server/instructions/loop.d.ts +0 -15
  108. package/dist/server/instructions/loop.js +0 -94
  109. package/dist/server/instructions/manual/actions.d.ts +0 -2
  110. package/dist/server/instructions/manual/actions.js +0 -94
  111. package/dist/server/instructions/manual/collecions/jobs.d.ts +0 -19
  112. package/dist/server/instructions/manual/collecions/jobs.js +0 -39
  113. package/dist/server/instructions/manual/collecions/users.d.ts +0 -15
  114. package/dist/server/instructions/manual/collecions/users.js +0 -37
  115. package/dist/server/instructions/manual/collecions/users_jobs.d.ts +0 -3
  116. package/dist/server/instructions/manual/collecions/users_jobs.js +0 -70
  117. package/dist/server/instructions/manual/forms/create.d.ts +0 -5
  118. package/dist/server/instructions/manual/forms/create.js +0 -41
  119. package/dist/server/instructions/manual/forms/index.d.ts +0 -6
  120. package/dist/server/instructions/manual/forms/index.js +0 -38
  121. package/dist/server/instructions/manual/forms/update.d.ts +0 -6
  122. package/dist/server/instructions/manual/forms/update.js +0 -41
  123. package/dist/server/instructions/manual/index.d.ts +0 -29
  124. package/dist/server/instructions/manual/index.js +0 -179
  125. package/dist/server/instructions/parallel.d.ts +0 -12
  126. package/dist/server/instructions/parallel.js +0 -124
  127. package/dist/server/instructions/query.d.ts +0 -9
  128. package/dist/server/instructions/request.d.ts +0 -18
  129. package/dist/server/instructions/request.js +0 -92
  130. package/dist/server/instructions/sql.d.ts +0 -12
  131. package/dist/server/instructions/sql.js +0 -43
  132. package/dist/server/triggers/form.d.ts +0 -11
  133. package/dist/server/triggers/form.js +0 -116
@@ -1,32 +0,0 @@
1
- import React from 'react';
2
- import { RadioWithTooltip } from '../components/RadioWithTooltip';
3
- declare const _default: {
4
- title: string;
5
- type: string;
6
- group: string;
7
- description: string;
8
- fieldset: {
9
- mode: {
10
- type: string;
11
- title: string;
12
- 'x-decorator': string;
13
- 'x-component': string;
14
- 'x-component-props': {
15
- options: {
16
- value: string;
17
- label: string;
18
- tooltip: string;
19
- }[];
20
- };
21
- default: string;
22
- };
23
- };
24
- view: {};
25
- component: ({ data }: {
26
- data: any;
27
- }) => React.JSX.Element;
28
- components: {
29
- RadioWithTooltip: typeof RadioWithTooltip;
30
- };
31
- };
32
- export default _default;
@@ -1,183 +0,0 @@
1
- import { WorkflowVariableInput, WorkflowVariableJSON } from '../variable';
2
- declare const _default: {
3
- title: string;
4
- type: string;
5
- group: string;
6
- description: string;
7
- fieldset: {
8
- method: {
9
- type: string;
10
- required: boolean;
11
- title: string;
12
- 'x-decorator': string;
13
- 'x-component': string;
14
- 'x-component-props': {
15
- showSearch: boolean;
16
- allowClear: boolean;
17
- className: string;
18
- };
19
- enum: {
20
- label: string;
21
- value: string;
22
- }[];
23
- default: string;
24
- };
25
- url: {
26
- type: string;
27
- required: boolean;
28
- title: string;
29
- 'x-decorator': string;
30
- 'x-decorator-props': {};
31
- 'x-component': string;
32
- 'x-component-props': {
33
- placeholder: string;
34
- };
35
- };
36
- headers: {
37
- type: string;
38
- 'x-component': string;
39
- 'x-decorator': string;
40
- title: string;
41
- description: string;
42
- items: {
43
- type: string;
44
- properties: {
45
- space: {
46
- type: string;
47
- 'x-component': string;
48
- properties: {
49
- name: {
50
- type: string;
51
- 'x-decorator': string;
52
- 'x-component': string;
53
- 'x-component-props': {
54
- placeholder: string;
55
- };
56
- };
57
- value: {
58
- type: string;
59
- 'x-decorator': string;
60
- 'x-component': string;
61
- 'x-component-props': {
62
- useTypedConstant: boolean;
63
- };
64
- };
65
- remove: {
66
- type: string;
67
- 'x-decorator': string;
68
- 'x-component': string;
69
- };
70
- };
71
- };
72
- };
73
- };
74
- properties: {
75
- add: {
76
- type: string;
77
- title: string;
78
- 'x-component': string;
79
- };
80
- };
81
- };
82
- params: {
83
- type: string;
84
- 'x-component': string;
85
- 'x-decorator': string;
86
- title: string;
87
- items: {
88
- type: string;
89
- properties: {
90
- space: {
91
- type: string;
92
- 'x-component': string;
93
- properties: {
94
- name: {
95
- type: string;
96
- 'x-decorator': string;
97
- 'x-component': string;
98
- 'x-component-props': {
99
- placeholder: string;
100
- };
101
- };
102
- value: {
103
- type: string;
104
- 'x-decorator': string;
105
- 'x-component': string;
106
- 'x-component-props': {
107
- useTypedConstant: boolean;
108
- };
109
- };
110
- remove: {
111
- type: string;
112
- 'x-decorator': string;
113
- 'x-component': string;
114
- };
115
- };
116
- };
117
- };
118
- };
119
- properties: {
120
- add: {
121
- type: string;
122
- title: string;
123
- 'x-component': string;
124
- };
125
- };
126
- };
127
- data: {
128
- type: string;
129
- title: string;
130
- 'x-decorator': string;
131
- 'x-decorator-props': {};
132
- 'x-component': string;
133
- 'x-component-props': {
134
- changeOnSelect: boolean;
135
- autoSize: {
136
- minRows: number;
137
- };
138
- placeholder: string;
139
- };
140
- description: string;
141
- };
142
- timeout: {
143
- type: string;
144
- title: string;
145
- 'x-decorator': string;
146
- 'x-decorator-props': {};
147
- 'x-component': string;
148
- 'x-component-props': {
149
- addonAfter: string;
150
- min: number;
151
- step: number;
152
- defaultValue: number;
153
- };
154
- };
155
- ignoreFail: {
156
- type: string;
157
- title: string;
158
- 'x-decorator': string;
159
- 'x-component': string;
160
- };
161
- };
162
- view: {};
163
- scope: {};
164
- components: {
165
- ArrayItems: import("@formily/reactive-react").ReactFC<import("react").HTMLAttributes<HTMLDivElement>> & import("@formily/antd-v5").ArrayBaseMixins & {
166
- Item: import("@formily/reactive-react").ReactFC<import("react").HTMLAttributes<HTMLDivElement> & {
167
- type?: "divide" | "card";
168
- }>;
169
- };
170
- WorkflowVariableInput: typeof WorkflowVariableInput;
171
- WorkflowVariableJSON: typeof WorkflowVariableJSON;
172
- };
173
- useVariables({ key, title }: {
174
- key: any;
175
- title: any;
176
- }, { types, fieldNames }: {
177
- types: any;
178
- fieldNames?: import("@nocobase/client").FieldNames;
179
- }): {
180
- [x: string]: any;
181
- };
182
- };
183
- export default _default;
@@ -1,35 +0,0 @@
1
- import { WorkflowVariableRawTextArea } from '../variable';
2
- declare const _default: {
3
- title: string;
4
- type: string;
5
- group: string;
6
- description: string;
7
- fieldset: {
8
- sql: {
9
- type: string;
10
- required: boolean;
11
- title: string;
12
- description: string;
13
- 'x-decorator': string;
14
- 'x-component': string;
15
- 'x-component-props': {
16
- rows: number;
17
- className: string;
18
- };
19
- };
20
- };
21
- scope: {};
22
- components: {
23
- WorkflowVariableRawTextArea: typeof WorkflowVariableRawTextArea;
24
- };
25
- useVariables({ key, title }: {
26
- key: any;
27
- title: any;
28
- }, { types, fieldNames }: {
29
- types: any;
30
- fieldNames?: import("@nocobase/client").FieldNames;
31
- }): {
32
- [x: string]: any;
33
- };
34
- };
35
- export default _default;
@@ -1,52 +0,0 @@
1
- import { SchemaInitializerItemType, useCollectionDataSource } from '@nocobase/client';
2
- declare const _default: {
3
- title: string;
4
- type: string;
5
- description: string;
6
- fieldset: {
7
- collection: {
8
- title: string;
9
- description: string;
10
- "x-reactions": any[];
11
- type: string;
12
- required: boolean;
13
- 'x-decorator': string;
14
- 'x-component': string;
15
- 'x-component-props': {
16
- className: string;
17
- };
18
- };
19
- appends: {
20
- title: string;
21
- type: string;
22
- description: string;
23
- 'x-decorator': string;
24
- 'x-component': string;
25
- 'x-component-props': {
26
- title: string;
27
- multiple: boolean;
28
- useCollection(): any;
29
- };
30
- 'x-reactions': {
31
- dependencies: string[];
32
- fulfill: {
33
- state: {
34
- visible: string;
35
- };
36
- };
37
- }[];
38
- };
39
- };
40
- scope: {
41
- useCollectionDataSource: typeof useCollectionDataSource;
42
- };
43
- components: {};
44
- useVariables(config: any, options: any): import("../variable").VariableOption[];
45
- useInitializers(config: any): SchemaInitializerItemType | null;
46
- initializers: {};
47
- useActionTriggerable: boolean;
48
- };
49
- export default _default;
50
- export declare function useTriggerWorkflowsActionProps(): {
51
- onClick(): Promise<void>;
52
- };
@@ -1,130 +0,0 @@
1
- declare const _default: {
2
- Workflow: string;
3
- 'Execution history': string;
4
- Executed: string;
5
- 'Trigger type': string;
6
- Status: string;
7
- On: string;
8
- Off: string;
9
- Version: string;
10
- 'Copy to new version': string;
11
- Duplicate: string;
12
- Loading: string;
13
- 'Load failed': string;
14
- Trigger: string;
15
- 'Trigger variables': string;
16
- 'Trigger data': string;
17
- 'Trigger time': string;
18
- 'Triggered at': string;
19
- 'Collection event': string;
20
- 'Trigger on': string;
21
- 'After record added': string;
22
- 'After record updated': string;
23
- 'After record added or updated': string;
24
- 'After record deleted': string;
25
- 'Changed fields': string;
26
- 'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.': string;
27
- 'Only triggers when match conditions': string;
28
- 'Schedule event': string;
29
- 'Trigger mode': string;
30
- 'Based on certain date': string;
31
- 'Based on date field of collection': string;
32
- 'Starts on': string;
33
- 'Ends on': string;
34
- 'No end': string;
35
- 'Exactly at': string;
36
- 'Repeat mode': string;
37
- 'Repeat limit': string;
38
- 'No limit': string;
39
- Seconds: string;
40
- Minutes: string;
41
- Hours: string;
42
- Days: string;
43
- Weeks: string;
44
- Months: string;
45
- 'No repeat': string;
46
- Every: string;
47
- 'By minute': string;
48
- 'By hour': string;
49
- 'By day': string;
50
- 'By week': string;
51
- 'By month': string;
52
- 'By field': string;
53
- 'By custom date': string;
54
- Advanced: string;
55
- End: string;
56
- 'Node result': string;
57
- Constant: string;
58
- Null: string;
59
- Boolean: string;
60
- String: string;
61
- Calculator: string;
62
- 'Arithmetic calculation': string;
63
- 'String operation': string;
64
- 'Executed at': string;
65
- Queueing: string;
66
- 'On going': string;
67
- Succeeded: string;
68
- Failed: string;
69
- Pending: string;
70
- Canceled: string;
71
- 'This node contains branches, deleting will also be preformed to them, are you sure?': string;
72
- Control: string;
73
- 'Collection operations': string;
74
- 'Extended types': string;
75
- 'Node type': string;
76
- Calculation: string;
77
- 'Configure calculation': string;
78
- 'Calculation result': string;
79
- True: string;
80
- False: string;
81
- concat: string;
82
- Condition: string;
83
- Mode: string;
84
- 'Continue when "Yes"': string;
85
- 'Branch into "Yes" and "No"': string;
86
- Conditions: string;
87
- 'Parallel branch': string;
88
- 'Add branch': string;
89
- 'All succeeded': string;
90
- 'Any succeeded': string;
91
- 'Any succeeded or failed': string;
92
- 'Continue after all branches succeeded': string;
93
- 'Continue after any branch succeeded': string;
94
- 'Continue after any branch succeeded, or exit after any branch failed': string;
95
- Delay: string;
96
- Duration: string;
97
- 'End Status': string;
98
- 'Select status': string;
99
- 'Succeed and continue': string;
100
- 'Fail and exit': string;
101
- 'Create record': string;
102
- 'Update record': string;
103
- 'Query record': string;
104
- 'Multiple records': string;
105
- 'Please select collection first': string;
106
- 'Only update records matching conditions': string;
107
- 'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.': string;
108
- 'Trigger in executed workflow cannot be modified': string;
109
- 'Node in executed workflow cannot be modified': string;
110
- 'Can not delete': string;
111
- 'The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.': string;
112
- 'HTTP request': string;
113
- 'HTTP method': string;
114
- URL: string;
115
- Headers: string;
116
- 'Add request header': string;
117
- Parameters: string;
118
- 'Add parameter': string;
119
- Body: string;
120
- 'Use variable': string;
121
- Format: string;
122
- Insert: string;
123
- 'Timeout config': string;
124
- ms: string;
125
- 'Input request data': string;
126
- 'Only support standard JSON data': string;
127
- '"Content-Type" only support "application/json", and no need to specify': string;
128
- 'Ignore fail request and continue workflow': string;
129
- };
130
- export default _default;
@@ -1,130 +0,0 @@
1
- declare const _default: {
2
- Workflow: string;
3
- "Execution history": string;
4
- Executed: string;
5
- "Trigger type": string;
6
- Status: string;
7
- On: string;
8
- Off: string;
9
- Version: string;
10
- "Copy to new version": string;
11
- Duplicate: string;
12
- Loading: string;
13
- "Load failed": string;
14
- Trigger: string;
15
- "Trigger variables": string;
16
- "Trigger data": string;
17
- "Trigger time": string;
18
- "Triggered at": string;
19
- "Collection event": string;
20
- "Trigger on": string;
21
- "After record added": string;
22
- "After record updated": string;
23
- "After record added or updated": string;
24
- "After record deleted": string;
25
- "Changed fields": string;
26
- "Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.": string;
27
- "Only triggers when match conditions": string;
28
- "Schedule event": string;
29
- "Trigger mode": string;
30
- "Based on certain date": string;
31
- "Based on date field of collection": string;
32
- "Starts on": string;
33
- "Ends on": string;
34
- "No end": string;
35
- "Exactly at": string;
36
- "Repeat mode": string;
37
- "Repeat limit": string;
38
- "No limit": string;
39
- Seconds: string;
40
- Minutes: string;
41
- Hours: string;
42
- Days: string;
43
- Weeks: string;
44
- Months: string;
45
- "No repeat": string;
46
- Every: string;
47
- "By minute": string;
48
- "By hour": string;
49
- "By day": string;
50
- "By week": string;
51
- "By month": string;
52
- "By field": string;
53
- "By custom date": string;
54
- Advanced: string;
55
- End: string;
56
- "Node result": string;
57
- Constant: string;
58
- Null: string;
59
- Boolean: string;
60
- String: string;
61
- Calculator: string;
62
- "Arithmetic calculation": string;
63
- "String operation": string;
64
- "Executed at": string;
65
- Queueing: string;
66
- "On going": string;
67
- Succeeded: string;
68
- Failed: string;
69
- Pending: string;
70
- Canceled: string;
71
- "This node contains branches, deleting will also be preformed to them, are you sure?": string;
72
- Control: string;
73
- "Collection operations": string;
74
- "Extended types": string;
75
- "Node type": string;
76
- Calculation: string;
77
- "Configure calculation": string;
78
- "Calculation result": string;
79
- True: string;
80
- False: string;
81
- concat: string;
82
- Condition: string;
83
- Mode: string;
84
- "Continue when \"Yes\"": string;
85
- "Branch into \"Yes\" and \"No\"": string;
86
- Conditions: string;
87
- "Parallel branch": string;
88
- "Add branch": string;
89
- "All succeeded": string;
90
- "Any succeeded": string;
91
- "Any succeeded or failed": string;
92
- "Continue after all branches succeeded": string;
93
- "Continue after any branch succeeded": string;
94
- "Continue after any branch succeeded, or exit after any branch failed": string;
95
- Delay: string;
96
- Duration: string;
97
- "End Status": string;
98
- "Select status": string;
99
- "Succeed and continue": string;
100
- "Fail and exit": string;
101
- "Create record": string;
102
- "Update record": string;
103
- "Query record": string;
104
- "Multiple records": string;
105
- "Please select collection first": string;
106
- "Only update records matching conditions": string;
107
- "Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.": string;
108
- "Trigger in executed workflow cannot be modified": string;
109
- "Node in executed workflow cannot be modified": string;
110
- "Can not delete": string;
111
- "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": string;
112
- "HTTP request": string;
113
- "HTTP method": string;
114
- URL: string;
115
- Headers: string;
116
- "Add request header": string;
117
- Parameters: string;
118
- "Add parameter": string;
119
- Body: string;
120
- "Use variable": string;
121
- Format: string;
122
- Insert: string;
123
- "Timeout config": string;
124
- ms: string;
125
- "Input request data": string;
126
- "Only support standard JSON data": string;
127
- "\"Content-Type\" only support \"application/json\", and no need to specify": string;
128
- "Ignore fail request and continue workflow": string;
129
- };
130
- export default _default;