@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,151 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var es_ES_exports = {};
19
- __export(es_ES_exports, {
20
- default: () => es_ES_default
21
- });
22
- module.exports = __toCommonJS(es_ES_exports);
23
- var es_ES_default = {
24
- "Workflow": "Flujo de trabajo",
25
- "Execution history": "Historial de ejecuci\xF3n",
26
- "Executed": "Ejecutado",
27
- "Trigger type": "Tipo de activador",
28
- "Status": "Estado",
29
- "On": "Activado",
30
- "Off": "Apagado",
31
- "Version": "Versi\xF3n",
32
- "Copy to new version": "Copiar a nueva versi\xF3n",
33
- "Duplicate": "Duplicar",
34
- "Loading": "Cargando",
35
- "Load failed": "Carga fallida",
36
- "Trigger": "Disparador",
37
- "Trigger variables": "Variables de activaci\xF3n",
38
- "Trigger data": "Datos de activaci\xF3n",
39
- "Trigger time": "Tiempo de activaci\xF3n",
40
- "Triggered at": "Disparado a las",
41
- "Collection event": "Evento de recogida",
42
- "Trigger on": "Activado en",
43
- "After record added": "Despu\xE9s de a\xF1adir el registro",
44
- "After record updated": "Despu\xE9s de actualizar el registro",
45
- "After record added or updated": "Despu\xE9s de a\xF1adir o actualizar el registro",
46
- "After record deleted": "Despu\xE9s de eliminar el registro",
47
- "Changed fields": "Campos modificados",
48
- "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.": "Se activa s\xF3lo si cambia uno de los campos seleccionados. Si no se selecciona, significa que se activar\xE1 cuando cambie cualquier campo. Cuando se a\xF1ade o elimina un registro, se considera que se ha modificado cualquier campo.",
49
- "Only triggers when match conditions": "S\xF3lo se dispara cuando coinciden las condiciones",
50
- "Schedule event": "Programar evento",
51
- "Trigger mode": "Modo de activaci\xF3n",
52
- "Based on certain date": "Basado en fecha determinada",
53
- "Based on date field of collection": "Basado en el campo de fecha de la colecci\xF3n",
54
- "Starts on": "Comienza el",
55
- "Ends on": "Finaliza el",
56
- "No end": "Sin fin",
57
- "Exactly at": "Exactamente en",
58
- "Repeat mode": "Modo repetici\xF3n",
59
- "Repeat limit": "L\xEDmite de repetici\xF3n",
60
- "No limit": "Sin l\xEDmite",
61
- "Seconds": "Segundos",
62
- "Minutes": "Minutos",
63
- "Hours": "Horas",
64
- "Days": "D\xEDas",
65
- "Weeks": "Semanas",
66
- "Months": "Meses",
67
- "No repeat": "No repetir",
68
- "Every": "Cada",
69
- "By minute": "Por minuto",
70
- "By hour": "Por hora",
71
- "By day": "Por d\xEDa",
72
- "By week": "Por semana",
73
- "By month": "Por mes",
74
- "By field": "Por campo",
75
- "By custom date": "Por fecha personalizada",
76
- "Advanced": "Avanzada",
77
- "End": "Fin",
78
- "Node result": "Resultado nodo",
79
- "Constant": "Constante",
80
- "Null": "Null",
81
- "Boolean": "Booleano",
82
- "String": "Cadena",
83
- "Calculator": "Calculadora",
84
- "Arithmetic calculation": "C\xE1lculo aritm\xE9tico",
85
- "String operation": "Operaci\xF3n de Cadena",
86
- "Executed at": "Ejecutado en",
87
- "Queueing": "Puesta en cola",
88
- "On going": "En curso",
89
- "Succeeded": "Logrado",
90
- "Failed": "Fallido",
91
- "Pending": "Pendiente",
92
- "Canceled": "Cancelado",
93
- "This node contains branches, deleting will also be preformed to them, are you sure?": "Este nodo contiene ramas, el borrado tambi\xE9n se preformar\xE1 a ellas, \xBFest\xE1s seguro?",
94
- "Control": "Control",
95
- "Collection operations": "Operaciones de recogida",
96
- "Extended types": "Tipos ampliados",
97
- "Node type": "Tipo de nodo",
98
- "Calculation": "C\xE1lculo",
99
- "Configure calculation": "Configurar c\xE1lculo",
100
- "Calculation result": "Resultado del c\xE1lculo",
101
- "True": "Verdadero",
102
- "False": "Falso",
103
- "concat": "concat",
104
- "Condition": "Condici\xF3n",
105
- "Mode": "Modo",
106
- 'Continue when "Yes"': 'Continuar cuando "S\xED"',
107
- 'Branch into "Yes" and "No"': 'Ramificarse en "S\xED" y "No"',
108
- "Conditions": "Condiciones",
109
- "Parallel branch": "Rama paralela",
110
- "Add branch": "A\xF1adir rama",
111
- "All succeeded": "Todo correcto",
112
- "Any succeeded": "Cualquiera con \xE9xito",
113
- "Any succeeded or failed": "Cualquiera tuvo \xE9xito o fall\xF3",
114
- "Continue after all branches succeeded": "Continuar despu\xE9s que todas las ramas han tenido \xE9xito",
115
- "Continue after any branch succeeded": "Continuar despu\xE9s que cualquier rama tenga \xE9xito",
116
- "Continue after any branch succeeded, or exit after any branch failed": "Continuar despu\xE9s de que cualquier rama tenga \xE9xito, o salir despu\xE9s de que cualquier rama falle",
117
- "Delay": "Retraso",
118
- "Duration": "Duraci\xF3n",
119
- "End Status": "Estado Final",
120
- "Select status": "Seleccionar estado",
121
- "Succeed and continue": "\xC9xito y continuar",
122
- "Fail and exit": "Falla y sale",
123
- "Create record": "Crear registro",
124
- "Update record": "Actualizar registro",
125
- "Query record": "Consultar registro",
126
- "Multiple records": "M\xFAltiples registros",
127
- "Please select collection first": "Por favor, seleccione primero la colecci\xF3n",
128
- "Only update records matching conditions": "Actualizar s\xF3lo los registros que cumplan las condiciones",
129
- "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\xE1n en el valor predeterminado, y los que no tengan un valor predeterminado se establecer\xE1n en nulo.",
130
- "Trigger in executed workflow cannot be modified": "No se puede modificar el desencadenante en el flujo de trabajo ejecutado",
131
- "Node in executed workflow cannot be modified": "Nodo en flujo de trabajo ejecutado no puede ser modificado",
132
- "Can not delete": "No se puede eliminar",
133
- "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}}",
134
- "HTTP request": "Petici\xF3n HTTP",
135
- "HTTP method": "M\xE9todo HTTP",
136
- "URL": "URL",
137
- "Headers": "Encabezados",
138
- "Add request header": "A\xF1adir encabezado de petici\xF3n",
139
- "Parameters": "Par\xE1metros",
140
- "Add parameter": "A\xF1adir par\xE1metro",
141
- "Body": "Cuerpo",
142
- "Use variable": "Utilizar variable",
143
- "Format": "Formato",
144
- "Insert": "Insertar",
145
- "Timeout config": "Tiempo de espera config",
146
- "ms": "ms",
147
- "Input request data": "Datos de solicitud de entrada",
148
- "Only support standard JSON data": "S\xF3lo admite datos JSON est\xE1ndar",
149
- '"Content-Type" only support "application/json", and no need to specify': '"Content-Type" s\xF3lo admite "application/json", y no es necesario especificar',
150
- "Ignore fail request and continue workflow": "Ignorar solicitud fallida y continuar flujo de trabajo"
151
- };
@@ -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,151 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var fr_FR_exports = {};
19
- __export(fr_FR_exports, {
20
- default: () => fr_FR_default
21
- });
22
- module.exports = __toCommonJS(fr_FR_exports);
23
- var fr_FR_default = {
24
- Workflow: "Workflow",
25
- "Execution history": "Historique d'ex\xE9cution",
26
- Executed: "Ex\xE9cut\xE9",
27
- "Trigger type": "Type de d\xE9clencheur",
28
- Status: "Statut",
29
- On: "Activ\xE9",
30
- Off: "D\xE9sactiv\xE9",
31
- Version: "Version",
32
- "Copy to new version": "Copier vers une nouvelle version",
33
- Duplicate: "Dupliquer",
34
- Loading: "Chargement",
35
- "Load failed": "\xC9chec du chargement",
36
- Trigger: "D\xE9clencheur",
37
- "Trigger variables": "Variables de d\xE9clenchement",
38
- "Trigger data": "Donn\xE9es de d\xE9clenchement",
39
- "Trigger time": "Temps de d\xE9clenchement",
40
- "Triggered at": "D\xE9clench\xE9 \xE0",
41
- "Collection event": "\xC9v\xE9nement de collection",
42
- "Trigger on": "D\xE9clencher sur",
43
- "After record added": "Apr\xE8s l'ajout d'un enregistrement",
44
- "After record updated": "Apr\xE8s la mise \xE0 jour d'un enregistrement",
45
- "After record added or updated": "Apr\xE8s l'ajout ou la mise \xE0 jour d'un enregistrement",
46
- "After record deleted": "Apr\xE8s la suppression d'un enregistrement",
47
- "Changed fields": "Champs modifi\xE9s",
48
- "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.": "D\xE9clench\xE9 uniquement si l'un des champs s\xE9lectionn\xE9s change. S'il n'est pas s\xE9lectionn\xE9, cela signifie qu'il sera d\xE9clench\xE9 lorsque n'importe quel champ change. Lorsque l'enregistrement est ajout\xE9 ou supprim\xE9, n'importe quel champ est consid\xE9r\xE9 comme ayant \xE9t\xE9 modifi\xE9.",
49
- "Only triggers when match conditions": "D\xE9clenche uniquement lorsque les conditions correspondent",
50
- "Schedule event": "\xC9v\xE9nement planifi\xE9",
51
- "Trigger mode": "Mode de d\xE9clenchement",
52
- "Based on certain date": "Bas\xE9 sur une date sp\xE9cifique",
53
- "Based on date field of collection": "Bas\xE9 sur le champ de date de la collection",
54
- "Starts on": "Commence le",
55
- "Ends on": "Se termine le",
56
- "No end": "Pas de fin",
57
- "Exactly at": "Exactement \xE0",
58
- "Repeat mode": "Mode de r\xE9p\xE9tition",
59
- "Repeat limit": "Limite de r\xE9p\xE9tition",
60
- "No limit": "Pas de limite",
61
- Seconds: "Secondes",
62
- Minutes: "Minutes",
63
- Hours: "Heures",
64
- Days: "Jours",
65
- Weeks: "Semaines",
66
- Months: "Mois",
67
- "No repeat": "Pas de r\xE9p\xE9tition",
68
- Every: "Chaque",
69
- "By minute": "Par minute",
70
- "By hour": "Par heure",
71
- "By day": "Par jour",
72
- "By week": "Par semaine",
73
- "By month": "Par mois",
74
- "By field": "Par champ",
75
- "By custom date": "Par date personnalis\xE9e",
76
- Advanced: "Avanc\xE9",
77
- End: "Fin",
78
- "Node result": "R\xE9sultat du n\u0153ud",
79
- Constant: "Constante",
80
- Null: "Null",
81
- Boolean: "Bool\xE9en",
82
- String: "Cha\xEEne de caract\xE8res",
83
- Calculator: "Calculatrice",
84
- "Arithmetic calculation": "Calcul arithm\xE9tique",
85
- "String operation": "Op\xE9ration sur les cha\xEEnes de caract\xE8res",
86
- "Executed at": "Ex\xE9cut\xE9 \xE0",
87
- Queueing: "En attente",
88
- "On going": "En cours",
89
- Succeeded: "R\xE9ussi",
90
- Failed: "\xC9chou\xE9",
91
- Pending: "En attente",
92
- Canceled: "Annul\xE9",
93
- "This node contains branches, deleting will also be preformed to them, are you sure?": "Ce n\u0153ud contient des branches, leur suppression sera \xE9galement effectu\xE9e, \xEAtes-vous s\xFBr(e) ?",
94
- Control: "Contr\xF4le",
95
- "Collection operations": "Op\xE9rations sur la collection",
96
- "Extended types": "Types \xE9tendus",
97
- "Node type": "Type de n\u0153ud",
98
- Calculation: "Calcul",
99
- "Configure calculation": "Configurer le calcul",
100
- "Calculation result": "R\xE9sultat du calcul",
101
- True: "Vrai",
102
- False: "Faux",
103
- concat: "concat",
104
- Condition: "Condition",
105
- Mode: "Mode",
106
- 'Continue when "Yes"': 'Continuer quand "Oui"',
107
- 'Branch into "Yes" and "No"': 'Brancher sur "Oui" et "Non"',
108
- Conditions: "Conditions",
109
- "Parallel branch": "Branche parall\xE8le",
110
- "Add branch": "Ajouter une branche",
111
- "All succeeded": "Tous r\xE9ussis",
112
- "Any succeeded": "Un r\xE9ussi",
113
- "Any succeeded or failed": "Un r\xE9ussi ou un \xE9chou\xE9",
114
- "Continue after all branches succeeded": "Continuer apr\xE8s la r\xE9ussite de toutes les branches",
115
- "Continue after any branch succeeded": "Continuer apr\xE8s la r\xE9ussite d'une branche",
116
- "Continue after any branch succeeded, or exit after any branch failed": "Continuer apr\xE8s la r\xE9ussite d'une branche, ou quitter apr\xE8s l'\xE9chec d'une branche",
117
- Delay: "D\xE9lai",
118
- Duration: "Dur\xE9e",
119
- "End Status": "Statut de fin",
120
- "Select status": "S\xE9lectionner un statut",
121
- "Succeed and continue": "R\xE9ussir et continuer",
122
- "Fail and exit": "\xC9chouer et quitter",
123
- "Create record": "Cr\xE9er un enregistrement",
124
- "Update record": "Mettre \xE0 jour un enregistrement",
125
- "Query record": "Interroger un enregistrement",
126
- "Multiple records": "Multiples enregistrements",
127
- "Please select collection first": "Veuillez d'abord s\xE9lectionner une collection",
128
- "Only update records matching conditions": "Mettre \xE0 jour uniquement les enregistrements correspondant aux conditions",
129
- "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\xE7oivent pas de valeur seront d\xE9finis sur la valeur par d\xE9faut, et ceux qui n'ont pas de valeur par d\xE9faut seront d\xE9finis sur null.",
130
- "Trigger in executed workflow cannot be modified": "Le d\xE9clencheur dans le workflow ex\xE9cut\xE9 ne peut pas \xEAtre modifi\xE9",
131
- "Node in executed workflow cannot be modified": "Le n\u0153ud dans le workflow ex\xE9cut\xE9 ne peut pas \xEAtre modifi\xE9",
132
- "Can not delete": "Impossible de supprimer",
133
- "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "Le r\xE9sultat de ce n\u0153ud a \xE9t\xE9 r\xE9f\xE9renc\xE9 par d'autres n\u0153uds ({{nodes}}), veuillez supprimer son utilisation avant de le supprimer.",
134
- "HTTP request": "Requ\xEAte HTTP",
135
- "HTTP method": "M\xE9thode HTTP",
136
- URL: "URL",
137
- Headers: "En-t\xEAtes",
138
- "Add request header": "Ajouter un en-t\xEAte de requ\xEAte",
139
- Parameters: "Param\xE8tres",
140
- "Add parameter": "Ajouter un param\xE8tre",
141
- Body: "Corps",
142
- "Use variable": "Utiliser une variable",
143
- Format: "Format",
144
- Insert: "Ins\xE9rer",
145
- "Timeout config": "Configuration du d\xE9lai d'expiration",
146
- ms: "ms",
147
- "Input request data": "Entr\xE9e des donn\xE9es de requ\xEAte",
148
- "Only support standard JSON data": "Prend uniquement en charge les donn\xE9es JSON standard",
149
- '"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'\xEAtre sp\xE9cifi\xE9`,
150
- "Ignore fail request and continue workflow": "Ignorer l'\xE9chec de la requ\xEAte et continuer le workflow"
151
- };
@@ -1,88 +0,0 @@
1
- declare const _default: {
2
- Workflow: string;
3
- 'Execution history': string;
4
- 'Trigger type': string;
5
- Status: string;
6
- On: string;
7
- Off: string;
8
- Version: string;
9
- 'Copy to new version': string;
10
- 'Load failed': string;
11
- Trigger: string;
12
- 'Collection event': string;
13
- 'Trigger on': string;
14
- 'After record added': string;
15
- 'After record updated': string;
16
- 'After record added or updated': string;
17
- 'After record deleted': string;
18
- 'Changed fields': string;
19
- '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;
20
- 'Only triggers when match conditions': string;
21
- 'Schedule event': string;
22
- 'Trigger mode': string;
23
- 'Based on certain date': string;
24
- 'Based on date field of collection': string;
25
- 'Starts on': string;
26
- 'Ends on': string;
27
- 'Exactly at': string;
28
- 'Repeat mode': string;
29
- 'Repeat limit': string;
30
- 'No limit': string;
31
- Seconds: string;
32
- Minutes: string;
33
- Hours: string;
34
- Days: string;
35
- Weeks: string;
36
- Months: string;
37
- 'No repeat': string;
38
- Every: string;
39
- 'By minute': string;
40
- 'By hour': string;
41
- 'By day': string;
42
- 'By week': string;
43
- 'By month': string;
44
- 'By field': string;
45
- 'By custom date': string;
46
- Advanced: string;
47
- End: string;
48
- 'Trigger variables': string;
49
- 'Node result': string;
50
- Constant: string;
51
- Boolean: string;
52
- String: string;
53
- 'Arithmetic calculation': string;
54
- 'String operation': string;
55
- 'On going': string;
56
- Succeeded: string;
57
- Failed: string;
58
- Canceled: string;
59
- 'This node contains branches, deleting will also be preformed to them, are you sure?': string;
60
- Control: string;
61
- 'Collection operations': string;
62
- 'Node type': string;
63
- Calculation: string;
64
- 'Configure calculation': string;
65
- 'Calculation result': string;
66
- True: string;
67
- False: string;
68
- Condition: string;
69
- Mode: string;
70
- 'Continue when "Yes"': string;
71
- 'Branch into "Yes" and "No"': string;
72
- Conditions: string;
73
- 'Parallel branch': string;
74
- 'All succeeded': string;
75
- 'Any succeeded': string;
76
- 'Continue after all branches succeeded': string;
77
- 'Continue after any branch succeeded': string;
78
- 'Create record': string;
79
- 'Update record': string;
80
- 'Query record': string;
81
- 'Multiple records': string;
82
- 'Please select collection first': string;
83
- 'Only update records matching conditions': string;
84
- '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;
85
- 'Trigger in executed workflow cannot be modified': string;
86
- 'Node in executed workflow cannot be modified': string;
87
- };
88
- export default _default;
@@ -1,109 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all)
7
- __defProp(target, name, { get: all[name], enumerable: true });
8
- };
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from))
12
- if (!__hasOwnProp.call(to, key) && key !== except)
13
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
- }
15
- return to;
16
- };
17
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
- var ja_JP_exports = {};
19
- __export(ja_JP_exports, {
20
- default: () => ja_JP_default
21
- });
22
- module.exports = __toCommonJS(ja_JP_exports);
23
- var ja_JP_default = {
24
- Workflow: "\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC",
25
- "Execution history": "\u5B9F\u884C\u5C65\u6B74",
26
- "Trigger type": "\u30C8\u30EA\u30AC\u30FC\u30BF\u30A4\u30D7",
27
- Status: "\u72B6\u614B",
28
- On: "\u6709\u52B9",
29
- Off: "\u7121\u52B9",
30
- Version: "\u30D0\u30FC\u30B8\u30E7\u30F3",
31
- "Copy to new version": "\u65B0\u3057\u3044\u30D0\u30FC\u30B8\u30E7\u30F3\u306B\u30B3\u30D4\u30FC",
32
- "Load failed": "\u8AAD\u307F\u8FBC\u307F\u306B\u5931\u6557\u3057\u307E\u3057\u305F",
33
- Trigger: "\u30C8\u30EA\u30AC\u30FC",
34
- "Collection event": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u30A4\u30D9\u30F3\u30C8",
35
- "Trigger on": "\u30C8\u30EA\u30AC\u30FC\u30BF\u30A4\u30DF\u30F3\u30B0",
36
- "After record added": "\u30EC\u30B3\u30FC\u30C9\u3092\u8FFD\u52A0\u3057\u305F\u5F8C",
37
- "After record updated": "\u30EC\u30B3\u30FC\u30C9\u3092\u66F4\u65B0\u3057\u305F\u5F8C",
38
- "After record added or updated": "\u30EC\u30B3\u30FC\u30C9\u3092\u8FFD\u52A0\u3082\u3057\u304F\u306F\u66F4\u65B0\u3057\u305F\u5F8C",
39
- "After record deleted": "\u30EC\u30B3\u30FC\u30C9\u3092\u524A\u9664\u3057\u305F\u5F8C",
40
- "Changed fields": "\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u5909\u66F4\u3055\u308C\u305F\u6642",
41
- "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.": "\u9078\u629E\u3057\u305F\u30D5\u30A3\u30FC\u30EB\u30C9\u306E 1 \u3064\u304C\u5909\u66F4\u3055\u308C\u305F\u5834\u5408\u306B\u306E\u307F\u30C8\u30EA\u30AC\u30FC\u3055\u308C\u307E\u3059\u3002 \u9078\u629E\u3055\u308C\u3066\u3044\u306A\u3044\u5834\u5408\u306F\u3001\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u5909\u66F4\u3055\u308C\u305F\u3068\u304D\u306B\u30C8\u30EA\u30AC\u30FC\u3055\u308C\u308B\u3053\u3068\u3092\u610F\u5473\u3057\u307E\u3059\u3002 \u30EC\u30B3\u30FC\u30C9\u304C\u8FFD\u52A0\u307E\u305F\u306F\u524A\u9664\u3055\u308C\u308B\u3068\u3001\u3059\u3079\u3066\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u304C\u5909\u66F4\u3055\u308C\u305F\u3068\u898B\u306A\u3055\u308C\u307E\u3059\u3002",
42
- "Only triggers when match conditions": "\u4EE5\u4E0B\u306E\u6761\u4EF6\u3092\u6E80\u305F\u3059\u3068\u767A\u52D5",
43
- "Schedule event": "\u30B9\u30B1\u30B8\u30E5\u30FC\u30EB\u30A4\u30D9\u30F3\u30C8",
44
- "Trigger mode": "\u30C8\u30EA\u30AC\u30FC\u30E2\u30FC\u30C9",
45
- "Based on certain date": "\u30AB\u30B9\u30BF\u30E0\u6642\u9593",
46
- "Based on date field of collection": "\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u306E\u30D5\u30A3\u30FC\u30EB\u30C9\u6642\u9593\u306B\u57FA\u3065\u304F",
47
- "Starts on": "\u958B\u59CB",
48
- "Ends on": "\u7D42\u4E86",
49
- "Exactly at": "\u3061\u3087\u3046\u3069",
50
- "Repeat mode": "\u7E70\u308A\u8FD4\u3057\u30D1\u30BF\u30FC\u30F3",
51
- "Repeat limit": "\u7E70\u308A\u8FD4\u3057\u56DE\u6570",
52
- "No limit": "\u7121\u5236\u9650",
53
- Seconds: "\u79D2",
54
- Minutes: "\u5206",
55
- Hours: "\u6642",
56
- Days: "\u65E5",
57
- Weeks: "\u9031",
58
- Months: "\u6708",
59
- "No repeat": "\u7E70\u308A\u8FD4\u3055\u306A\u3044",
60
- Every: "\u6BCE",
61
- "By minute": "\u5206\u3054\u3068",
62
- "By hour": "\u6642\u9593\u3054\u3068",
63
- "By day": "\u65E5\u3054\u3068",
64
- "By week": "\u9031\u3054\u3068",
65
- "By month": "\u6708\u3054\u3068",
66
- "By field": "\u30D5\u30A3\u30FC\u30EB\u30C9\u3054\u3068",
67
- "By custom date": "\u30AB\u30B9\u30BF\u30E0\u6642\u9593",
68
- Advanced: "\u30A2\u30C9\u30D0\u30F3\u30B9\u30C9",
69
- End: "\u7D42\u4E86",
70
- "Trigger variables": "\u30C8\u30EA\u30AC\u30FC\u30D5\u30A3\u30FC\u30EB\u30C9",
71
- "Node result": "\u30CE\u30FC\u30C9\u306E\u7D50\u679C",
72
- Constant: "\u5B9A\u6570",
73
- Boolean: "\u8AD6\u7406\u5024",
74
- String: "\u6587\u5B57\u5217",
75
- "Arithmetic calculation": "\u7B97\u8853\u6F14\u7B97",
76
- "String operation": "\u6587\u5B57\u5217\u64CD\u4F5C",
77
- "On going": "\u51E6\u7406\u4E2D",
78
- Succeeded: "\u6210\u529F",
79
- Failed: "\u5931\u6557",
80
- Canceled: "\u53D6\u6D88",
81
- "This node contains branches, deleting will also be preformed to them, are you sure?": "\u30CE\u30FC\u30C9\u306B\u306F\u30D6\u30E9\u30F3\u30C1\u304C\u542B\u307E\u308C\u3066\u304A\u308A\u3001\u305D\u306E\u3059\u3079\u3066\u306E\u30D6\u30E9\u30F3\u30C1\u306E\u4E0B\u306B\u3042\u308B\u3059\u3079\u3066\u306E\u5B50\u30CE\u30FC\u30C9\u304C\u540C\u6642\u306B\u524A\u9664\u3055\u308C\u307E\u3059\u3002\u7D9A\u884C\u3057\u3066\u3082\u3088\u308D\u3057\u3044\u3067\u3059\u304B?",
82
- Control: "\u30D7\u30ED\u30BB\u30B9\u5236\u5FA1",
83
- "Collection operations": "\u30D5\u30A3\u30FC\u30EB\u30C9\u64CD\u4F5C",
84
- "Node type": "\u30CE\u30FC\u30C9\u30BF\u30A4\u30D7",
85
- Calculation: "\u6F14\u7B97",
86
- "Configure calculation": "\u6F14\u7B97\u8A2D\u5B9A",
87
- "Calculation result": "\u6F14\u7B97\u7D50\u679C",
88
- True: "\u771F",
89
- False: "\u507D",
90
- Condition: "\u6761\u4EF6",
91
- Mode: "\u30E2\u30C7\u30EB",
92
- 'Continue when "Yes"': "\u300C\u306F\u3044\u300D\u306E\u5834\u5408\u306B\u7D9A\u884C",
93
- 'Branch into "Yes" and "No"': "\u300C\u306F\u3044\u300D\u3068\u300C\u3044\u3044\u3048\u300D\u3067\u5206\u5C90\u3057\u3066\u7D9A\u884C",
94
- Conditions: "\u6761\u4EF6\u8A2D\u5B9A",
95
- "Parallel branch": "\u5206\u5C90",
96
- "All succeeded": "\u3059\u3079\u3066\u6210\u529F",
97
- "Any succeeded": "\u3044\u305A\u308C\u304B\u304C\u6210\u529F",
98
- "Continue after all branches succeeded": "\u3059\u3079\u3066\u306E\u5206\u5C90\u304C\u6210\u529F\u3057\u305F\u5F8C\u306B\u7D9A\u884C",
99
- "Continue after any branch succeeded": "\u3044\u305A\u308C\u304B\u306E\u5206\u5C90\u304C\u6210\u529F\u3057\u305F\u5F8C\u306B\u7D9A\u884C",
100
- "Create record": "\u30EC\u30B3\u30FC\u30C9\u8FFD\u52A0",
101
- "Update record": "\u30EC\u30B3\u30FC\u30C9\u66F4\u65B0",
102
- "Query record": "\u30AF\u30A8\u30EA \u30EC\u30B3\u30FC\u30C9",
103
- "Multiple records": "\u8907\u6570\u30EC\u30B3\u30FC\u30C9",
104
- "Please select collection first": "\u5148\u306B\u30B3\u30EC\u30AF\u30B7\u30E7\u30F3\u3092\u9078\u629E\u3057\u3066\u304F\u3060\u3055\u3044",
105
- "Only update records matching conditions": "\u6761\u4EF6\u3092\u6E80\u305F\u3059\u30EC\u30B3\u30FC\u30C9\u306E\u307F\u66F4\u65B0",
106
- "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.": "\u5024\u304C\u5272\u308A\u5F53\u3066\u3089\u308C\u3066\u3044\u306A\u3044\u30D5\u30A3\u30FC\u30EB\u30C9\u306F\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u306B\u8A2D\u5B9A\u3055\u308C\u3001\u30C7\u30D5\u30A9\u30EB\u30C8\u5024\u304C\u306A\u3044\u30D5\u30A3\u30FC\u30EB\u30C9\u306F null \u306B\u8A2D\u5B9A\u3055\u308C\u307E\u3059",
107
- "Trigger in executed workflow cannot be modified": "\u3059\u3067\u306B\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u3092\u5B9F\u884C\u3057\u305F\u30C8\u30EA\u30AC\u30FC\u306F\u5909\u66F4\u3067\u304D\u307E\u305B\u3093",
108
- "Node in executed workflow cannot be modified": "\u3059\u3067\u306B\u5B9F\u884C\u3055\u308C\u305F\u30EF\u30FC\u30AF\u30D5\u30ED\u30FC\u306E\u30CE\u30FC\u30C9\u306F\u5909\u66F4\u3067\u304D\u307E\u305B\u3093"
109
- };