@tachybase/module-workflow 1.5.1 → 1.6.1

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 (75) hide show
  1. package/dist/client/WorkflowCategoriesProvider.d.ts +4 -0
  2. package/dist/client/components/ColletionTreeSelect.d.ts +16 -0
  3. package/dist/client/components/EnabledStatusFilter.d.ts +2 -0
  4. package/dist/client/components/WorkflowCategoryColumn.d.ts +8 -0
  5. package/dist/client/components/index.d.ts +3 -0
  6. package/dist/client/features/script/Script.instruction.d.ts +136 -0
  7. package/dist/client/features/script/ScriptCodeEditor.d.ts +9 -0
  8. package/dist/client/features/script/SyncRemoteCodeButton.d.ts +6 -0
  9. package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +164 -5
  10. package/dist/client/hooks/index.d.ts +2 -0
  11. package/dist/client/hooks/useDumpAction.d.ts +7 -0
  12. package/dist/client/hooks/useRevisionAction.d.ts +7 -0
  13. package/dist/client/index.d.ts +2 -0
  14. package/dist/client/index.js +85 -59
  15. package/dist/client/nodes/select.d.ts +235 -0
  16. package/dist/client/schemas/workflows.d.ts +5 -0
  17. package/dist/client/utils.d.ts +2 -2
  18. package/dist/externalVersion.js +9 -9
  19. package/dist/locale/en-US.json +49 -1
  20. package/dist/locale/es-ES.json +19 -1
  21. package/dist/locale/fr-FR.json +18 -0
  22. package/dist/locale/ja-JP.json +19 -1
  23. package/dist/locale/ko_KR.json +19 -1
  24. package/dist/locale/pt-BR.json +19 -1
  25. package/dist/locale/ru-RU.json +20 -2
  26. package/dist/locale/tr-TR.json +20 -2
  27. package/dist/locale/zh-CN.json +52 -1
  28. package/dist/node_modules/@babel/core/lib/index.js +77 -77
  29. package/dist/node_modules/@babel/core/node_modules/.bin/parser +4 -4
  30. package/dist/node_modules/@babel/core/package.json +1 -1
  31. package/dist/node_modules/@babel/preset-env/lib/index.js +88 -88
  32. package/dist/node_modules/@babel/preset-env/package.json +1 -1
  33. package/dist/node_modules/@babel/preset-react/lib/index.js +80 -80
  34. package/dist/node_modules/@babel/preset-react/package.json +1 -1
  35. package/dist/node_modules/@babel/preset-typescript/lib/index.js +77 -77
  36. package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
  37. package/dist/node_modules/cron-parser/package.json +1 -1
  38. package/dist/node_modules/form-data/package.json +1 -1
  39. package/dist/node_modules/jsonata/package.json +1 -1
  40. package/dist/node_modules/lru-cache/package.json +1 -1
  41. package/dist/node_modules/mime-types/package.json +1 -1
  42. package/dist/node_modules/qrcode/package.json +1 -1
  43. package/dist/server/Plugin.js +57 -1
  44. package/dist/server/actions/executions.d.ts +3 -3
  45. package/dist/server/actions/executions.js +42 -30
  46. package/dist/server/actions/index.js +3 -2
  47. package/dist/server/actions/nodes.d.ts +13 -6
  48. package/dist/server/actions/nodes.js +160 -34
  49. package/dist/server/actions/workflows.d.ts +17 -8
  50. package/dist/server/actions/workflows.helpers.d.ts +55 -0
  51. package/dist/server/actions/workflows.helpers.js +167 -0
  52. package/dist/server/actions/workflows.js +118 -69
  53. package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +1 -1
  54. package/dist/server/features/interception/RequestInterceptionTrigger.js +12 -12
  55. package/dist/server/features/manual/actions.d.ts +1 -1
  56. package/dist/server/features/manual/actions.js +12 -12
  57. package/dist/server/features/notice/actions.js +19 -19
  58. package/dist/server/features/notice/plugin.js +0 -3
  59. package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +2 -2
  60. package/dist/server/features/omni-trigger/CustomActionTrigger.js +27 -27
  61. package/dist/server/features/script/script.instruction.js +146 -4
  62. package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +4 -0
  63. package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -5
  64. package/dist/server/instructions/SelectInstruction.d.ts +13 -0
  65. package/dist/server/instructions/SelectInstruction.js +126 -0
  66. package/dist/server/services/remote-code-fetcher.d.ts +48 -0
  67. package/dist/server/services/remote-code-fetcher.js +370 -0
  68. package/dist/server/utils/get-remote-code-fetcher.d.ts +7 -0
  69. package/dist/server/utils/get-remote-code-fetcher.js +39 -0
  70. package/dist/server/utils.d.ts +16 -0
  71. package/dist/server/utils.js +33 -2
  72. package/package.json +12 -12
  73. package/dist/client/provider/EventSourceProvider.d.ts +0 -7
  74. package/dist/server/features/trigger-instruction/index.d.ts +0 -0
  75. package/dist/server/features/trigger-instruction/index.js +0 -0
@@ -0,0 +1,235 @@
1
+ import { SchemaInitializerItemType, useCollectionDataSource } from '@tachybase/client';
2
+ import { FilterDynamicComponent } from '../components/FilterDynamicComponent';
3
+ import { WorkflowVariableInput } from '../variable';
4
+ import { Instruction } from './default-node/interface';
5
+ export default class extends Instruction {
6
+ title: string;
7
+ type: string;
8
+ group: string;
9
+ icon: string;
10
+ color: string;
11
+ description: string;
12
+ fieldset: {
13
+ collection: {
14
+ 'x-reactions': any[];
15
+ type: string;
16
+ title: string;
17
+ required: boolean;
18
+ 'x-decorator': string;
19
+ 'x-component': string;
20
+ };
21
+ multiple: {
22
+ type: string;
23
+ 'x-decorator': string;
24
+ 'x-component': string;
25
+ 'x-content': string;
26
+ description: string;
27
+ };
28
+ isTree: {
29
+ type: string;
30
+ 'x-decorator': string;
31
+ 'x-component': string;
32
+ 'x-content': string;
33
+ };
34
+ params: {
35
+ type: string;
36
+ 'x-component': string;
37
+ properties: {
38
+ filter: {
39
+ type: string;
40
+ title: string;
41
+ 'x-decorator': string;
42
+ 'x-component': string;
43
+ 'x-use-component-props': () => {
44
+ options: any[];
45
+ className: string;
46
+ };
47
+ 'x-component-props': {
48
+ dynamicComponent: string;
49
+ };
50
+ };
51
+ sort: {
52
+ type: string;
53
+ title: string;
54
+ 'x-decorator': string;
55
+ 'x-component': string;
56
+ items: {
57
+ type: string;
58
+ properties: {
59
+ space: {
60
+ type: string;
61
+ 'x-component': string;
62
+ properties: {
63
+ sort: {
64
+ type: string;
65
+ 'x-decorator': string;
66
+ 'x-component': string;
67
+ };
68
+ field: {
69
+ type: string;
70
+ enum: string;
71
+ required: boolean;
72
+ 'x-decorator': string;
73
+ 'x-component': string;
74
+ 'x-component-props': {
75
+ style: {
76
+ width: number;
77
+ };
78
+ };
79
+ };
80
+ direction: {
81
+ type: string;
82
+ 'x-decorator': string;
83
+ 'x-component': string;
84
+ 'x-component-props': {
85
+ optionType: string;
86
+ };
87
+ enum: {
88
+ label: string;
89
+ value: string;
90
+ }[];
91
+ };
92
+ remove: {
93
+ type: string;
94
+ 'x-decorator': string;
95
+ 'x-component': string;
96
+ };
97
+ };
98
+ };
99
+ };
100
+ };
101
+ properties: {
102
+ add: {
103
+ type: string;
104
+ title: string;
105
+ 'x-component': string;
106
+ };
107
+ };
108
+ };
109
+ pagination: {
110
+ type: string;
111
+ properties: {
112
+ paginate: {
113
+ type: string;
114
+ title: string;
115
+ 'x-decorator': string;
116
+ 'x-component': string;
117
+ 'x-content': string;
118
+ default: boolean;
119
+ };
120
+ pagination: {
121
+ type: string;
122
+ 'x-decorator': string;
123
+ 'x-component': string;
124
+ 'x-reactions': {
125
+ dependencies: string[];
126
+ fulfill: {
127
+ state: {
128
+ hidden: string;
129
+ };
130
+ };
131
+ }[];
132
+ properties: {
133
+ row: {
134
+ type: string;
135
+ 'x-component': string;
136
+ properties: {
137
+ page: {
138
+ type: string;
139
+ 'x-component': string;
140
+ properties: {
141
+ page: {
142
+ type: string;
143
+ title: string;
144
+ 'x-decorator': string;
145
+ 'x-component': string;
146
+ 'x-component-props': {
147
+ useTypedConstant: string[];
148
+ };
149
+ default: number;
150
+ };
151
+ };
152
+ };
153
+ pageSize: {
154
+ type: string;
155
+ 'x-component': string;
156
+ properties: {
157
+ pageSize: {
158
+ type: string;
159
+ title: string;
160
+ 'x-decorator': string;
161
+ 'x-component': string;
162
+ 'x-component-props': {
163
+ min: number;
164
+ max: number;
165
+ };
166
+ default: number;
167
+ };
168
+ };
169
+ };
170
+ };
171
+ };
172
+ };
173
+ };
174
+ };
175
+ };
176
+ summary: {
177
+ type: string;
178
+ title: string;
179
+ 'x-decorator': string;
180
+ 'x-component': string;
181
+ 'x-component-props': {
182
+ title: string;
183
+ needLeaf: boolean;
184
+ useCollection(): any;
185
+ };
186
+ 'x-reactions': {
187
+ dependencies: string[];
188
+ fulfill: {
189
+ state: {
190
+ visible: string;
191
+ };
192
+ };
193
+ }[];
194
+ };
195
+ };
196
+ 'x-reactions': {
197
+ dependencies: string[];
198
+ fulfill: {
199
+ state: {
200
+ visible: string;
201
+ };
202
+ };
203
+ }[];
204
+ };
205
+ failOnEmpty: {
206
+ type: string;
207
+ 'x-decorator': string;
208
+ 'x-component': string;
209
+ 'x-content': string;
210
+ };
211
+ };
212
+ scope: {
213
+ useCollectionDataSource: typeof useCollectionDataSource;
214
+ useSortableFields(): {
215
+ value: any;
216
+ label: any;
217
+ }[];
218
+ };
219
+ components: {
220
+ ArrayItems: import("@tachybase/schema").ReactFC<import("react").HTMLAttributes<HTMLDivElement>> & import("@tego/client").ArrayBaseMixins & {
221
+ Item: import("@tachybase/schema").ReactFC<React.HTMLAttributes<HTMLDivElement> & {
222
+ type?: "card" | "divide";
223
+ }>;
224
+ };
225
+ FilterDynamicComponent: typeof FilterDynamicComponent;
226
+ SchemaComponentContext: import("react").Context<import("@tachybase/client").ISchemaComponentContext>;
227
+ WorkflowVariableInput: typeof WorkflowVariableInput;
228
+ };
229
+ useVariables({ key: name, title, config }: {
230
+ key: any;
231
+ title: any;
232
+ config: any;
233
+ }, options: any): import("..").VariableOption;
234
+ useInitializers(node: any): SchemaInitializerItemType | null;
235
+ }
@@ -83,6 +83,11 @@ export declare const useCreateFormBlockProps: () => {
83
83
  export declare const createWorkflow: ISchema;
84
84
  export declare const updateWorkflow: ISchema;
85
85
  export declare const WorkflowTabCardItem: (props: any) => import("react/jsx-runtime").JSX.Element;
86
+ /**
87
+ * 表格数据提供者,支持分类筛选
88
+ * - 根据当前选中的分类标签(tag.value)动态添加 category.id filter
89
+ * - 使用 listExtended action 获取包含额外字段的工作流列表(最新执行时间、事件源名称、分类等)
90
+ */
86
91
  export declare const TabTableBlockProvider: React.MemoExoticComponent<import("@tachybase/schema").ReactFC<{
87
92
  params: any;
88
93
  }>>;
@@ -1,5 +1,5 @@
1
1
  export declare function linkNodes(nodes: any): void;
2
2
  export declare function isValidFilter(condition: any): any;
3
3
  export declare function traverseSchema(schema: any, fn: any): void;
4
- export declare function getWorkflowDetailPath(id: string | number): string;
5
- export declare function getWorkflowExecutionsPath(id: string | number): string;
4
+ export declare function getWorkflowDetailPath(id: string | number, type?: any): string;
5
+ export declare function getWorkflowExecutionsPath(id: string | number, type?: any): string;
@@ -1,20 +1,20 @@
1
1
  module.exports = {
2
2
  "react": "18.3.1",
3
- "@tachybase/client": "1.5.1",
4
- "@ant-design/icons": "5.6.1",
3
+ "@tachybase/client": "1.6.1",
4
+ "@ant-design/icons": "6.1.0",
5
5
  "antd": "5.22.5",
6
6
  "lodash": "4.17.21",
7
- "@tego/client": "1.3.52",
7
+ "@tego/client": "1.6.0-alpha.9",
8
8
  "react-i18next": "16.2.1",
9
9
  "react-router-dom": "6.28.1",
10
- "@tachybase/schema": "1.3.52",
11
- "@tego/server": "1.3.52",
10
+ "@tachybase/schema": "1.6.0-alpha.9",
11
+ "@tego/server": "1.6.0-alpha.9",
12
12
  "dayjs": "1.11.13",
13
13
  "@dnd-kit/core": "6.3.1",
14
14
  "axios": "1.13.0",
15
15
  "sequelize": "6.37.5",
16
- "@tachybase/plugin-workflow-test": "1.5.1",
17
- "@tachybase/test": "1.3.52",
18
- "@tachybase/module-error-handler": "1.5.1",
19
- "@tachybase/module-ui-schema": "1.5.1"
16
+ "@tachybase/plugin-workflow-test": "1.6.1",
17
+ "@tachybase/test": "1.6.0-alpha.9",
18
+ "@tachybase/module-error-handler": "1.6.1",
19
+ "@tachybase/module-ui-schema": "1.6.1"
20
20
  };
@@ -6,6 +6,7 @@
6
6
  "Add assignee": "Add assignee",
7
7
  "Add branch": "Add branch",
8
8
  "Add parameter": "Add parameter",
9
+ "Add property": "Add property",
9
10
  "Add request header": "Add request header",
10
11
  "Advanced": "Advanced",
11
12
  "After record added": "After record added",
@@ -14,7 +15,9 @@
14
15
  "After record updated": "After record updated",
15
16
  "Aggregate": "Aggregate",
16
17
  "Aggregator function": "Aggregator function",
18
+ "Alias": "Alias",
17
19
  "All pass": "All pass",
20
+ "All statuses": "All",
18
21
  "All succeeded": "All succeeded",
19
22
  "Allow query for tree data": "Allow query for tree data",
20
23
  "An expression for calculation in each rows": "An expression for calculation in each rows",
@@ -50,8 +53,15 @@
50
53
  "Assignee": "Assignee",
51
54
  "Assignees": "Assignees",
52
55
  "Associations to use": "Associations to use",
56
+ "Auth token": "Auth token/password",
57
+ "Auth token placeholder": "Please enter auth token or password",
58
+ "Auth username": "Auth username",
59
+ "Auth username placeholder": "Please enter username (Basic Auth)",
60
+ "Authentication type": "Authentication type",
53
61
  "Based on certain date": "Based on certain date",
54
62
  "Based on date field of collection": "Based on date field of collection",
63
+ "Basic Auth": "Basic Auth",
64
+ "Bearer Token": "Bearer Token",
55
65
  "Bind collection?": "Bind collection?",
56
66
  "Body": "Body",
57
67
  "Boolean": "Boolean",
@@ -65,6 +75,7 @@
65
75
  "By month": "By month",
66
76
  "By using a loop node, you can perform the same operation on multiple sets of data. The source of these sets can be either multiple records from a query node or multiple associated records of a single record. Loop node can also be used for iterating a certain number of times or for looping through each character in a string. However, excessive looping may cause performance issues, so use with caution.": "By using a loop node, you can perform the same operation on multiple sets of data. The source of these sets can be either multiple records from a query node or multiple associated records of a single record. Loop node can also be used for iterating a certain number of times or for looping through each character in a string. However, excessive looping may cause performance issues, so use with caution.",
67
77
  "By week": "By week",
78
+ "CDN": "CDN",
68
79
  "Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression. The expression is dynamic one from an expression collections.": "Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression. The expression is dynamic one from an expression collections.",
69
80
  "Calculation": "Calculation",
70
81
  "Calculation result": "Calculation result",
@@ -74,6 +85,17 @@
74
85
  "CarbonCopy": "CarbonCopy",
75
86
  "Changed fields": "Changed fields",
76
87
  "Code": "Code",
88
+ "Code URL": "Code URL",
89
+ "Code URL is required for Git": "Code URL is required for Git",
90
+ "Code URL placeholder": "CDN URL or Git repository address, e.g.: https://cdn.example.com/script.ts or https://github.com/owner/repo",
91
+ "Code branch": "Code branch",
92
+ "Code branch placeholder": "Git branch name, default is main",
93
+ "Code editor failed to load": "Code editor failed to load",
94
+ "Code path": "Code path",
95
+ "Code path placeholder": "File path in Git repository, e.g.: src/scripts/myScript.ts",
96
+ "Code source": "Code source",
97
+ "Code synced successfully": "Code synced successfully",
98
+ "Code type": "Code type",
77
99
  "Collaboratively": "Collaboratively",
78
100
  "Collection event": "Collection event",
79
101
  "Collection operations": "Collection operations",
@@ -107,6 +129,7 @@
107
129
  "Data of associated collection": "Data of associated collection",
108
130
  "Data of collection": "Data of collection",
109
131
  "Data record": "Data record",
132
+ "Data source map": "Data source map",
110
133
  "Data will be updated": "Data will be updated",
111
134
  "Days": "Days",
112
135
  "Declare a new variable": "Declare a new variable",
@@ -116,6 +139,7 @@
116
139
  "Deprecated, please do not use it": "Deprecated, please do not use it",
117
140
  "Details": "Details",
118
141
  "Disabled": "Disabled",
142
+ "Disabled status": "Disabled",
119
143
  "Distinct": "Distinct",
120
144
  "Draft": "Draft",
121
145
  "Duplicate": "Duplicate",
@@ -145,7 +169,9 @@
145
169
  "Extended types": "Extended types",
146
170
  "Fail and exit": "Fail and exit",
147
171
  "Failed": "Failed",
172
+ "Failed to create execution": "Failed to create execution",
148
173
  "Failed to retry execution": "Failed to retry execution",
174
+ "Failed to sync remote code": "Failed to sync remote code",
149
175
  "False": "False",
150
176
  "Field name existed in form": "Field name existed in form",
151
177
  "Field to aggregate": "Field to aggregate",
@@ -155,6 +181,8 @@
155
181
  "Form event": "Form event",
156
182
  "Format": "Format",
157
183
  "General event": "General event",
184
+ "Get specific data from JSON result of any node BY js code or json code;": "Get specific data from JSON result of any node BY js code or json code;",
185
+ "Git": "Git",
158
186
  "Go to configure": "Go to configure",
159
187
  "HTTP method": "HTTP method",
160
188
  "HTTP request": "HTTP request",
@@ -165,6 +193,7 @@
165
193
  "Hours": "Hours",
166
194
  "ID": "ID",
167
195
  "If checked, the workflow will be terminated after rejection branch processed.": "If checked, the workflow will be terminated after rejection branch processed.",
196
+ "If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.",
168
197
  "Ignore failed request and continue workflow": "Ignore failed request and continue workflow",
169
198
  "In the workflow, notification messages can be viewed by the notified person in the notification center.": "In the workflow, notification messages can be viewed by the notified person in the notification center.",
170
199
  "Initiate Request": "Initiate Request",
@@ -174,10 +203,14 @@
174
203
  "Input request data": "Input request data",
175
204
  "Insert": "Insert",
176
205
  "Interceptor": "Interceptor",
206
+ "Label": "Label",
207
+ "Last sync time": "Last sync time",
177
208
  "Launch": "Launch",
178
209
  "Launched time": "Launched time",
179
210
  "Load failed": "Load failed",
180
211
  "Loading": "Loading",
212
+ "Loading editor...": "Loading editor...",
213
+ "Local code": "Local code",
181
214
  "Loop": "Loop",
182
215
  "Loop index": "Loop index",
183
216
  "Loop length": "Loop length",
@@ -185,6 +218,7 @@
185
218
  "Manual": "Manual",
186
219
  "Minutes": "Minutes",
187
220
  "Mode": "Mode",
221
+ "Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.",
188
222
  "Months": "Months",
189
223
  "Multiple records": "Multiple records",
190
224
  "My Pending Tasks": "My Pending Tasks",
@@ -192,6 +226,8 @@
192
226
  "MyLaunch": "MyLaunch",
193
227
  "Negotiation": "Negotiation",
194
228
  "Negotiation mode": "Negotiation mode",
229
+ "No authentication": "No authentication",
230
+ "No code returned from remote source": "No code returned from remote source",
195
231
  "No end": "No end",
196
232
  "No limit": "No limit",
197
233
  "No repeat": "No repeat",
@@ -201,11 +237,12 @@
201
237
  "Node result": "Node result",
202
238
  "Node type": "Node type",
203
239
  "Not initiated": "Not initiated",
240
+ "Not synced": "Not synced",
204
241
  "Notice": "Notice",
205
242
  "Notice Center": "Notice Center",
206
243
  "Notice blocks": "Notice blocks",
207
244
  "Null": "Null",
208
- "Off": "Off",
245
+ "Off": "Disabled",
209
246
  "On": "On",
210
247
  "On going": "On going",
211
248
  "Only support standard JSON data": "Only support standard JSON data",
@@ -220,8 +257,13 @@
220
257
  "Pass mode": "Pass mode",
221
258
  "Passthrough mode": "Passthrough mode",
222
259
  "Pending": "Pending",
260
+ "Please enter code...": "Please enter code...",
261
+ "Please select code type first": "Please select code type first",
223
262
  "Please select collection first": "Please select collection first",
263
+ "Please select remote code source first": "Please select remote code source first",
224
264
  "Processing": "Processing",
265
+ "Properties mapping": "Properties mapping",
266
+ "Property path": "Property path",
225
267
  "Query Notified Person": "Query Notified Person",
226
268
  "Query record": "Query record",
227
269
  "Query result": "Query result",
@@ -231,6 +273,7 @@
231
273
  "Rejected": "Rejected",
232
274
  "Related approvals": "Related approvals",
233
275
  "Remarks": "Remarks",
276
+ "Remote code": "Remote code",
234
277
  "Repeat limit": "Repeat limit",
235
278
  "Repeat mode": "Repeat mode",
236
279
  "Resource": "Resource",
@@ -264,12 +307,16 @@
264
307
  "Succeed and continue": "Succeed and continue",
265
308
  "Succeeded": "Succeeded",
266
309
  "Summary": "Summary",
310
+ "Sync remote code": "Sync remote code",
311
+ "Sync status": "Sync status",
312
+ "Synced": "Synced",
267
313
  "Target type": "Target type",
268
314
  "Task": "Task",
269
315
  "Task node": "Task node",
270
316
  "Terminate the process": "Terminate the process",
271
317
  "Test": "Test",
272
318
  "Test execution ended": "Test execution ended",
319
+ "Test execution failed": "Test execution failed",
273
320
  "Test workflow": "Test workflow",
274
321
  "The Notified Person": "The Notified Person",
275
322
  "The interface of show notice detail": "The interface of show notice detail",
@@ -325,6 +372,7 @@
325
372
  "comment": "comment",
326
373
  "concat": "concat",
327
374
  "group-title-count": "group-title-count",
375
+ "keyName": "keyName",
328
376
  "ms": "ms",
329
377
  "needAuthorization": "needAuthorization",
330
378
  "workflow loop!": "workflow loop!"
@@ -2,12 +2,15 @@
2
2
  "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" sólo admite \"application/json\", y no es necesario especificar",
3
3
  "Add branch": "Añadir rama",
4
4
  "Add parameter": "Añadir parámetro",
5
+ "Add property": "Agregar propiedad",
5
6
  "Add request header": "Añadir encabezado de petición",
6
7
  "Advanced": "Avanzada",
7
8
  "After record added": "Después de añadir el registro",
8
9
  "After record added or updated": "Después de añadir o actualizar el registro",
9
10
  "After record deleted": "Después de eliminar el registro",
10
11
  "After record updated": "Después de actualizar el registro",
12
+ "Alias": "Alias",
13
+ "All statuses": "Todos",
11
14
  "All succeeded": "Todo correcto",
12
15
  "Any succeeded": "Cualquiera con éxito",
13
16
  "Any succeeded or failed": "Cualquiera tuvo éxito o falló",
@@ -29,6 +32,7 @@
29
32
  "Can not delete": "No se puede eliminar",
30
33
  "Canceled": "Cancelado",
31
34
  "Changed fields": "Campos modificados",
35
+ "Code editor failed to load": "Error al cargar el editor de código",
32
36
  "Collection event": "Evento de recogida",
33
37
  "Collection operations": "Operaciones de recogida",
34
38
  "Condition": "Condición",
@@ -42,8 +46,10 @@
42
46
  "Control": "Control",
43
47
  "Copy to new version": "Copiar a nueva versión",
44
48
  "Create record": "Crear registro",
49
+ "Data source map": "Mapa de fuentes de datos",
45
50
  "Days": "Días",
46
51
  "Delay": "Retraso",
52
+ "Disabled status": "Deshabilitado",
47
53
  "Duplicate": "Duplicar",
48
54
  "Duration": "Duración",
49
55
  "End": "Fin",
@@ -60,21 +66,28 @@
60
66
  "Extended types": "Tipos ampliados",
61
67
  "Fail and exit": "Falla y sale",
62
68
  "Failed": "Fallido",
69
+ "Failed to create execution": "Error al crear la ejecución",
63
70
  "Failed to retry execution": "Error al reintentar la ejecución",
64
71
  "False": "Falso",
65
72
  "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.": "Los campos a los que no se les asigne un valor se establecerán en el valor predeterminado, y los que no tengan un valor predeterminado se establecerán en nulo.",
66
73
  "Format": "Formato",
74
+ "Get specific data from JSON result of any node BY js code or json code;": "Obtener datos específicos del resultado JSON de cualquier nodo mediante código js o código json;",
67
75
  "HTTP method": "Método HTTP",
68
76
  "HTTP request": "Petición HTTP",
69
77
  "Headers": "Encabezados",
70
78
  "Hours": "Horas",
79
+ "If the type of query result is object or array of object, could map the properties which to be accessed in subsequent nodes.": "Si el tipo de resultado de consulta es objeto o matriz de objetos, se pueden mapear las propiedades que se accederán en los nodos posteriores.",
71
80
  "Ignore fail request and continue workflow": "Ignorar solicitud fallida y continuar flujo de trabajo",
72
81
  "Input request data": "Datos de solicitud de entrada",
73
82
  "Insert": "Insertar",
83
+ "Label": "Etiqueta",
84
+ "Last sync time": "Última hora de sincronización",
74
85
  "Load failed": "Carga fallida",
75
86
  "Loading": "Cargando",
87
+ "Loading editor...": "Cargando editor...",
76
88
  "Minutes": "Minutos",
77
89
  "Mode": "Modo",
90
+ "Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Error al cargar Monaco Editor, se ha degradado al editor de texto básico. Algunas funciones pueden estar limitadas.",
78
91
  "Months": "Meses",
79
92
  "Multiple records": "Múltiples registros",
80
93
  "No end": "Sin fin",
@@ -84,7 +97,7 @@
84
97
  "Node result": "Resultado nodo",
85
98
  "Node type": "Tipo de nodo",
86
99
  "Null": "Null",
87
- "Off": "Apagado",
100
+ "Off": "Deshabilitado",
88
101
  "On": "Activado",
89
102
  "On going": "En curso",
90
103
  "Only support standard JSON data": "Sólo admite datos JSON estándar",
@@ -94,7 +107,10 @@
94
107
  "Parallel branch": "Rama paralela",
95
108
  "Parameters": "Parámetros",
96
109
  "Pending": "Pendiente",
110
+ "Please enter code...": "Por favor, ingrese el código...",
97
111
  "Please select collection first": "Por favor, seleccione primero la colección",
112
+ "Properties mapping": "Mapeo de propiedades",
113
+ "Property path": "Ruta de propiedad",
98
114
  "Query record": "Consultar registro",
99
115
  "Queueing": "Puesta en cola",
100
116
  "Repeat limit": "Límite de repetición",
@@ -111,6 +127,7 @@
111
127
  "Succeed and continue": "Éxito y continuar",
112
128
  "Succeeded": "Logrado",
113
129
  "Test execution ended": "Prueba de ejecución terminada",
130
+ "Test execution failed": "Error en la ejecución de prueba",
114
131
  "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "El resultado de este nodo ha sido referenciado por otros nodos ({{nodes}}",
115
132
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Este nodo contiene ramas, el borrado también se preformará a ellas, ¿estás seguro?",
116
133
  "Timeout config": "Tiempo de espera config",
@@ -132,5 +149,6 @@
132
149
  "Weeks": "Semanas",
133
150
  "Workflow": "Flujo de trabajo",
134
151
  "concat": "concat",
152
+ "keyName": "Nombre de clave",
135
153
  "ms": "ms"
136
154
  }