@tachybase/module-workflow 1.6.0 → 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 (64) hide show
  1. package/dist/client/components/ColletionTreeSelect.d.ts +16 -0
  2. package/dist/client/components/EnabledStatusFilter.d.ts +2 -0
  3. package/dist/client/components/index.d.ts +1 -0
  4. package/dist/client/features/script/Script.instruction.d.ts +136 -0
  5. package/dist/client/features/script/ScriptCodeEditor.d.ts +9 -0
  6. package/dist/client/features/script/SyncRemoteCodeButton.d.ts +6 -0
  7. package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +164 -5
  8. package/dist/client/index.js +85 -59
  9. package/dist/client/nodes/select.d.ts +235 -0
  10. package/dist/externalVersion.js +9 -9
  11. package/dist/locale/en-US.json +47 -1
  12. package/dist/locale/es-ES.json +17 -1
  13. package/dist/locale/fr-FR.json +16 -0
  14. package/dist/locale/ja-JP.json +17 -1
  15. package/dist/locale/ko_KR.json +17 -1
  16. package/dist/locale/pt-BR.json +17 -1
  17. package/dist/locale/ru-RU.json +18 -2
  18. package/dist/locale/tr-TR.json +18 -2
  19. package/dist/locale/zh-CN.json +50 -1
  20. package/dist/node_modules/@babel/core/lib/index.js +77 -77
  21. package/dist/node_modules/@babel/core/node_modules/.bin/parser +4 -4
  22. package/dist/node_modules/@babel/core/package.json +1 -1
  23. package/dist/node_modules/@babel/preset-env/lib/index.js +88 -88
  24. package/dist/node_modules/@babel/preset-env/package.json +1 -1
  25. package/dist/node_modules/@babel/preset-react/lib/index.js +80 -80
  26. package/dist/node_modules/@babel/preset-react/package.json +1 -1
  27. package/dist/node_modules/@babel/preset-typescript/lib/index.js +77 -77
  28. package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
  29. package/dist/node_modules/cron-parser/package.json +1 -1
  30. package/dist/node_modules/form-data/package.json +1 -1
  31. package/dist/node_modules/jsonata/package.json +1 -1
  32. package/dist/node_modules/lru-cache/package.json +1 -1
  33. package/dist/node_modules/mime-types/package.json +1 -1
  34. package/dist/node_modules/qrcode/package.json +1 -1
  35. package/dist/server/Plugin.js +57 -1
  36. package/dist/server/actions/executions.d.ts +3 -3
  37. package/dist/server/actions/executions.js +33 -33
  38. package/dist/server/actions/index.js +3 -2
  39. package/dist/server/actions/nodes.d.ts +13 -6
  40. package/dist/server/actions/nodes.js +160 -34
  41. package/dist/server/actions/workflows.d.ts +9 -9
  42. package/dist/server/actions/workflows.helpers.d.ts +6 -6
  43. package/dist/server/actions/workflows.helpers.js +14 -14
  44. package/dist/server/actions/workflows.js +85 -85
  45. package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +1 -1
  46. package/dist/server/features/interception/RequestInterceptionTrigger.js +12 -12
  47. package/dist/server/features/manual/actions.d.ts +1 -1
  48. package/dist/server/features/manual/actions.js +12 -12
  49. package/dist/server/features/notice/actions.js +19 -19
  50. package/dist/server/features/notice/plugin.js +0 -3
  51. package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +2 -2
  52. package/dist/server/features/omni-trigger/CustomActionTrigger.js +27 -27
  53. package/dist/server/features/script/script.instruction.js +146 -4
  54. package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +4 -0
  55. package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -5
  56. package/dist/server/instructions/SelectInstruction.d.ts +13 -0
  57. package/dist/server/instructions/SelectInstruction.js +126 -0
  58. package/dist/server/services/remote-code-fetcher.d.ts +48 -0
  59. package/dist/server/services/remote-code-fetcher.js +370 -0
  60. package/dist/server/utils/get-remote-code-fetcher.d.ts +7 -0
  61. package/dist/server/utils/get-remote-code-fetcher.js +39 -0
  62. package/package.json +12 -12
  63. package/dist/server/features/trigger-instruction/index.d.ts +0 -0
  64. 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
+ }
@@ -1,20 +1,20 @@
1
1
  module.exports = {
2
2
  "react": "18.3.1",
3
- "@tachybase/client": "1.6.0",
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.6.0",
17
- "@tachybase/test": "1.3.52",
18
- "@tachybase/module-error-handler": "1.6.0",
19
- "@tachybase/module-ui-schema": "1.6.0"
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",
@@ -147,6 +171,7 @@
147
171
  "Failed": "Failed",
148
172
  "Failed to create execution": "Failed to create execution",
149
173
  "Failed to retry execution": "Failed to retry execution",
174
+ "Failed to sync remote code": "Failed to sync remote code",
150
175
  "False": "False",
151
176
  "Field name existed in form": "Field name existed in form",
152
177
  "Field to aggregate": "Field to aggregate",
@@ -156,6 +181,8 @@
156
181
  "Form event": "Form event",
157
182
  "Format": "Format",
158
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",
159
186
  "Go to configure": "Go to configure",
160
187
  "HTTP method": "HTTP method",
161
188
  "HTTP request": "HTTP request",
@@ -166,6 +193,7 @@
166
193
  "Hours": "Hours",
167
194
  "ID": "ID",
168
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.",
169
197
  "Ignore failed request and continue workflow": "Ignore failed request and continue workflow",
170
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.",
171
199
  "Initiate Request": "Initiate Request",
@@ -175,10 +203,14 @@
175
203
  "Input request data": "Input request data",
176
204
  "Insert": "Insert",
177
205
  "Interceptor": "Interceptor",
206
+ "Label": "Label",
207
+ "Last sync time": "Last sync time",
178
208
  "Launch": "Launch",
179
209
  "Launched time": "Launched time",
180
210
  "Load failed": "Load failed",
181
211
  "Loading": "Loading",
212
+ "Loading editor...": "Loading editor...",
213
+ "Local code": "Local code",
182
214
  "Loop": "Loop",
183
215
  "Loop index": "Loop index",
184
216
  "Loop length": "Loop length",
@@ -186,6 +218,7 @@
186
218
  "Manual": "Manual",
187
219
  "Minutes": "Minutes",
188
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.",
189
222
  "Months": "Months",
190
223
  "Multiple records": "Multiple records",
191
224
  "My Pending Tasks": "My Pending Tasks",
@@ -193,6 +226,8 @@
193
226
  "MyLaunch": "MyLaunch",
194
227
  "Negotiation": "Negotiation",
195
228
  "Negotiation mode": "Negotiation mode",
229
+ "No authentication": "No authentication",
230
+ "No code returned from remote source": "No code returned from remote source",
196
231
  "No end": "No end",
197
232
  "No limit": "No limit",
198
233
  "No repeat": "No repeat",
@@ -202,11 +237,12 @@
202
237
  "Node result": "Node result",
203
238
  "Node type": "Node type",
204
239
  "Not initiated": "Not initiated",
240
+ "Not synced": "Not synced",
205
241
  "Notice": "Notice",
206
242
  "Notice Center": "Notice Center",
207
243
  "Notice blocks": "Notice blocks",
208
244
  "Null": "Null",
209
- "Off": "Off",
245
+ "Off": "Disabled",
210
246
  "On": "On",
211
247
  "On going": "On going",
212
248
  "Only support standard JSON data": "Only support standard JSON data",
@@ -221,8 +257,13 @@
221
257
  "Pass mode": "Pass mode",
222
258
  "Passthrough mode": "Passthrough mode",
223
259
  "Pending": "Pending",
260
+ "Please enter code...": "Please enter code...",
261
+ "Please select code type first": "Please select code type first",
224
262
  "Please select collection first": "Please select collection first",
263
+ "Please select remote code source first": "Please select remote code source first",
225
264
  "Processing": "Processing",
265
+ "Properties mapping": "Properties mapping",
266
+ "Property path": "Property path",
226
267
  "Query Notified Person": "Query Notified Person",
227
268
  "Query record": "Query record",
228
269
  "Query result": "Query result",
@@ -232,6 +273,7 @@
232
273
  "Rejected": "Rejected",
233
274
  "Related approvals": "Related approvals",
234
275
  "Remarks": "Remarks",
276
+ "Remote code": "Remote code",
235
277
  "Repeat limit": "Repeat limit",
236
278
  "Repeat mode": "Repeat mode",
237
279
  "Resource": "Resource",
@@ -265,6 +307,9 @@
265
307
  "Succeed and continue": "Succeed and continue",
266
308
  "Succeeded": "Succeeded",
267
309
  "Summary": "Summary",
310
+ "Sync remote code": "Sync remote code",
311
+ "Sync status": "Sync status",
312
+ "Synced": "Synced",
268
313
  "Target type": "Target type",
269
314
  "Task": "Task",
270
315
  "Task node": "Task node",
@@ -327,6 +372,7 @@
327
372
  "comment": "comment",
328
373
  "concat": "concat",
329
374
  "group-title-count": "group-title-count",
375
+ "keyName": "keyName",
330
376
  "ms": "ms",
331
377
  "needAuthorization": "needAuthorization",
332
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",
@@ -65,17 +71,23 @@
65
71
  "False": "Falso",
66
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.",
67
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;",
68
75
  "HTTP method": "Método HTTP",
69
76
  "HTTP request": "Petición HTTP",
70
77
  "Headers": "Encabezados",
71
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.",
72
80
  "Ignore fail request and continue workflow": "Ignorar solicitud fallida y continuar flujo de trabajo",
73
81
  "Input request data": "Datos de solicitud de entrada",
74
82
  "Insert": "Insertar",
83
+ "Label": "Etiqueta",
84
+ "Last sync time": "Última hora de sincronización",
75
85
  "Load failed": "Carga fallida",
76
86
  "Loading": "Cargando",
87
+ "Loading editor...": "Cargando editor...",
77
88
  "Minutes": "Minutos",
78
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.",
79
91
  "Months": "Meses",
80
92
  "Multiple records": "Múltiples registros",
81
93
  "No end": "Sin fin",
@@ -85,7 +97,7 @@
85
97
  "Node result": "Resultado nodo",
86
98
  "Node type": "Tipo de nodo",
87
99
  "Null": "Null",
88
- "Off": "Apagado",
100
+ "Off": "Deshabilitado",
89
101
  "On": "Activado",
90
102
  "On going": "En curso",
91
103
  "Only support standard JSON data": "Sólo admite datos JSON estándar",
@@ -95,7 +107,10 @@
95
107
  "Parallel branch": "Rama paralela",
96
108
  "Parameters": "Parámetros",
97
109
  "Pending": "Pendiente",
110
+ "Please enter code...": "Por favor, ingrese el código...",
98
111
  "Please select collection first": "Por favor, seleccione primero la colección",
112
+ "Properties mapping": "Mapeo de propiedades",
113
+ "Property path": "Ruta de propiedad",
99
114
  "Query record": "Consultar registro",
100
115
  "Queueing": "Puesta en cola",
101
116
  "Repeat limit": "Límite de repetición",
@@ -134,5 +149,6 @@
134
149
  "Weeks": "Semanas",
135
150
  "Workflow": "Flujo de trabajo",
136
151
  "concat": "concat",
152
+ "keyName": "Nombre de clave",
137
153
  "ms": "ms"
138
154
  }
@@ -2,12 +2,15 @@
2
2
  "\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" prend uniquement en charge \"application/json\" et n'a pas besoin d'être spécifié",
3
3
  "Add branch": "Ajouter une branche",
4
4
  "Add parameter": "Ajouter un paramètre",
5
+ "Add property": "Ajouter une propriété",
5
6
  "Add request header": "Ajouter un en-tête de requête",
6
7
  "Advanced": "Avancé",
7
8
  "After record added": "Après l'ajout d'un enregistrement",
8
9
  "After record added or updated": "Après l'ajout ou la mise à jour d'un enregistrement",
9
10
  "After record deleted": "Après la suppression d'un enregistrement",
10
11
  "After record updated": "Après la mise à jour d'un enregistrement",
12
+ "Alias": "Alias",
13
+ "All statuses": "Tous",
11
14
  "All succeeded": "Tous réussis",
12
15
  "Any succeeded": "Un réussi",
13
16
  "Any succeeded or failed": "Un réussi ou un échoué",
@@ -29,6 +32,7 @@
29
32
  "Can not delete": "Impossible de supprimer",
30
33
  "Canceled": "Annulé",
31
34
  "Changed fields": "Champs modifiés",
35
+ "Code editor failed to load": "Échec du chargement de l'éditeur de code",
32
36
  "Collection event": "Événement de collection",
33
37
  "Collection operations": "Opérations sur la collection",
34
38
  "Condition": "Condition",
@@ -42,8 +46,10 @@
42
46
  "Control": "Contrôle",
43
47
  "Copy to new version": "Copier vers une nouvelle version",
44
48
  "Create record": "Créer un enregistrement",
49
+ "Data source map": "Carte des sources de données",
45
50
  "Days": "Jours",
46
51
  "Delay": "Délai",
52
+ "Disabled status": "Désactivé",
47
53
  "Duplicate": "Dupliquer",
48
54
  "Duration": "Durée",
49
55
  "End": "Fin",
@@ -65,17 +71,23 @@
65
71
  "False": "Faux",
66
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.": "Les champs qui ne reçoivent pas de valeur seront définis sur la valeur par défaut, et ceux qui n'ont pas de valeur par défaut seront définis sur null.",
67
73
  "Format": "Format",
74
+ "Get specific data from JSON result of any node BY js code or json code;": "Obtenir des données spécifiques à partir du résultat JSON de n'importe quel nœud via du code js ou du code json ;",
68
75
  "HTTP method": "Méthode HTTP",
69
76
  "HTTP request": "Requête HTTP",
70
77
  "Headers": "En-têtes",
71
78
  "Hours": "Heures",
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 le type de résultat de requête est un objet ou un tableau d'objets, les propriétés peuvent être mappées pour être accessibles dans les nœuds suivants.",
72
80
  "Ignore fail request and continue workflow": "Ignorer l'échec de la requête et continuer le workflow",
73
81
  "Input request data": "Entrée des données de requête",
74
82
  "Insert": "Insérer",
83
+ "Label": "Étiquette",
84
+ "Last sync time": "Dernière heure de synchronisation",
75
85
  "Load failed": "Échec du chargement",
76
86
  "Loading": "Chargement",
87
+ "Loading editor...": "Chargement de l'éditeur...",
77
88
  "Minutes": "Minutes",
78
89
  "Mode": "Mode",
90
+ "Monaco Editor failed to load, downgraded to basic text editor. Some features may be limited.": "Échec du chargement de Monaco Editor, rétrogradé vers l'éditeur de texte de base. Certaines fonctionnalités peuvent être limitées.",
79
91
  "Months": "Mois",
80
92
  "Multiple records": "Multiples enregistrements",
81
93
  "No end": "Pas de fin",
@@ -95,7 +107,10 @@
95
107
  "Parallel branch": "Branche parallèle",
96
108
  "Parameters": "Paramètres",
97
109
  "Pending": "En attente",
110
+ "Please enter code...": "Veuillez entrer le code...",
98
111
  "Please select collection first": "Veuillez d'abord sélectionner une collection",
112
+ "Properties mapping": "Mappage des propriétés",
113
+ "Property path": "Chemin de propriété",
99
114
  "Query record": "Interroger un enregistrement",
100
115
  "Queueing": "En attente",
101
116
  "Repeat limit": "Limite de répétition",
@@ -134,5 +149,6 @@
134
149
  "Weeks": "Semaines",
135
150
  "Workflow": "Workflow",
136
151
  "concat": "concat",
152
+ "keyName": "Nom de clé",
137
153
  "ms": "ms"
138
154
  }