@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,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 pt_BR_exports = {};
19
- __export(pt_BR_exports, {
20
- default: () => pt_BR_default
21
- });
22
- module.exports = __toCommonJS(pt_BR_exports);
23
- var pt_BR_default = {
24
- Workflow: "Fluxo de trabalho",
25
- "Execution history": "Hist\xF3rico de execu\xE7\xE3o",
26
- Executed: "Executado",
27
- "Trigger type": "Tipo de acionador",
28
- Status: "Status",
29
- On: "Ligado",
30
- Off: "Desligado",
31
- Version: "Vers\xE3o",
32
- "Copy to new version": "Copiar para nova vers\xE3o",
33
- Duplicate: "Duplicar",
34
- Loading: "Carregando",
35
- "Load failed": "Falha ao carregar",
36
- Trigger: "Acionador",
37
- "Trigger variables": "Vari\xE1veis do acionador",
38
- "Trigger data": "Dados do acionador",
39
- "Trigger time": "Tempo do acionador",
40
- "Triggered at": "Acionado em",
41
- "Collection event": "Evento da cole\xE7\xE3o",
42
- "Trigger on": "Acionar em",
43
- "After record added": "Depois do registro ser adicionado",
44
- "After record updated": "Depois do registro ser atualizado",
45
- "After record added or updated": "Depois do registro ser adicionado ou atualizado",
46
- "After record deleted": "Depois do registro ser exclu\xEDdo",
47
- "Changed fields": "Campos alterados",
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.": "Acionado apenas se um dos campos selecionados for alterado. Se n\xE3o estiver selecionado, ser\xE1 acionado quando qualquer campo for alterado. Quando um registro \xE9 adicionado ou exclu\xEDdo, qualquer campo \xE9 considerado como tendo sido alterado.",
49
- "Only triggers when match conditions": "Aciona somente quando as condi\xE7\xF5es correspondem",
50
- "Schedule event": "Evento programado",
51
- "Trigger mode": "Modo de acionamento",
52
- "Based on certain date": "Com base em uma data espec\xEDfica",
53
- "Based on date field of collection": "Com base no campo de data da cole\xE7\xE3o",
54
- "Starts on": "Come\xE7a em",
55
- "Ends on": "Termina em",
56
- "No end": "Sem fim",
57
- "Exactly at": "Exatamente \xE0s",
58
- "Repeat mode": "Modo de repeti\xE7\xE3o",
59
- "Repeat limit": "Limite de repeti\xE7\xE3o",
60
- "No limit": "Sem limite",
61
- Seconds: "Segundos",
62
- Minutes: "Minutos",
63
- Hours: "Horas",
64
- Days: "Dias",
65
- Weeks: "Semanas",
66
- Months: "Meses",
67
- "No repeat": "Sem repeti\xE7\xE3o",
68
- Every: "Cada",
69
- "By minute": "Por minuto",
70
- "By hour": "Por hora",
71
- "By day": "Por dia",
72
- "By week": "Por semana",
73
- "By month": "Por m\xEAs",
74
- "By field": "Por campo",
75
- "By custom date": "Por data personalizada",
76
- Advanced: "Avan\xE7ado",
77
- End: "Fim",
78
- "Node result": "Resultado do n\xF3",
79
- Constant: "Constante",
80
- Null: "Nulo",
81
- Boolean: "Booleano",
82
- String: "String",
83
- Calculator: "Calculadora",
84
- "Arithmetic calculation": "C\xE1lculo aritm\xE9tico",
85
- "String operation": "Opera\xE7\xE3o de string",
86
- "Executed at": "Executado em",
87
- Queueing: "Em fila",
88
- "On going": "Em andamento",
89
- Succeeded: "Sucesso",
90
- Failed: "Falhou",
91
- Pending: "Pendente",
92
- Canceled: "Cancelado",
93
- "This node contains branches, deleting will also be preformed to them, are you sure?": "Este n\xF3 cont\xE9m ramos, a exclus\xE3o tamb\xE9m ser\xE1 realizada neles, voc\xEA tem certeza?",
94
- Control: "Controle",
95
- "Collection operations": "Opera\xE7\xF5es de cole\xE7\xE3o",
96
- "Extended types": "Tipos estendidos",
97
- "Node type": "Tipo de n\xF3",
98
- Calculation: "C\xE1lculo",
99
- "Configure calculation": "Configurar c\xE1lculo",
100
- "Calculation result": "Resultado do c\xE1lculo",
101
- True: "Verdadeiro",
102
- False: "Falso",
103
- concat: "concatenar",
104
- Condition: "Condi\xE7\xE3o",
105
- Mode: "Modo",
106
- 'Continue when "Yes"': 'Continuar quando "Sim"',
107
- 'Branch into "Yes" and "No"': 'Ramo em "Sim" e "N\xE3o"',
108
- Conditions: "Condi\xE7\xF5es",
109
- "Parallel branch": "Ramo paralelo",
110
- "Add branch": "Adicionar ramo",
111
- "All succeeded": "Todos com sucesso",
112
- "Any succeeded": "Qualquer um com sucesso",
113
- "Any succeeded or failed": "Qualquer um com sucesso ou falha",
114
- "Continue after all branches succeeded": "Continuar ap\xF3s todos os ramos com sucesso",
115
- "Continue after any branch succeeded": "Continuar ap\xF3s qualquer ramo com sucesso",
116
- "Continue after any branch succeeded, or exit after any branch failed": "Continuar ap\xF3s qualquer ramo com sucesso ou sair ap\xF3s qualquer ramo falhar",
117
- Delay: "Atraso",
118
- Duration: "Dura\xE7\xE3o",
119
- "End Status": "Status final",
120
- "Select status": "Selecionar status",
121
- "Succeed and continue": "Ter sucesso e continuar",
122
- "Fail and exit": "Falhar e sair",
123
- "Create record": "Criar registro",
124
- "Update record": "Atualizar registro",
125
- "Query record": "Consultar registro",
126
- "Multiple records": "M\xFAltiplos registros",
127
- "Please select collection first": "Por favor, selecione uma cole\xE7\xE3o primeiro",
128
- "Only update records matching conditions": "Atualizar somente registros que atendem \xE0s condi\xE7\xF5es",
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.": "Campos que n\xE3o recebem valor ser\xE3o definidos como valor padr\xE3o e aqueles sem valor padr\xE3o ser\xE3o definidos como nulo.",
130
- "Trigger in executed workflow cannot be modified": "O acionador em fluxo de trabalho executado n\xE3o pode ser modificado",
131
- "Node in executed workflow cannot be modified": "O n\xF3 em fluxo de trabalho executado n\xE3o pode ser modificado",
132
- "Can not delete": "N\xE3o \xE9 poss\xEDvel excluir",
133
- "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "O resultado deste n\xF3 foi referenciado por outros n\xF3s ({{nodes}}), por favor, remova a refer\xEAncia antes de excluir.",
134
- "HTTP request": "Requisi\xE7\xE3o HTTP",
135
- "HTTP method": "M\xE9todo HTTP",
136
- URL: "URL",
137
- Headers: "Cabe\xE7alhos",
138
- "Add request header": "Adicionar cabe\xE7alho de requisi\xE7\xE3o",
139
- Parameters: "Par\xE2metros",
140
- "Add parameter": "Adicionar par\xE2metro",
141
- Body: "Corpo",
142
- "Use variable": "Usar vari\xE1vel",
143
- Format: "Formato",
144
- Insert: "Inserir",
145
- "Timeout config": "Configura\xE7\xE3o de tempo limite",
146
- ms: "ms",
147
- "Input request data": "Dados de entrada da requisi\xE7\xE3o",
148
- "Only support standard JSON data": "Suporta somente dados JSON padr\xE3o",
149
- '"Content-Type" only support "application/json", and no need to specify': '"Content-Type" somente suporta "application/json" e n\xE3o precisa ser especificado',
150
- "Ignore fail request and continue workflow": "Ignorar falhas na requisi\xE7\xE3o e continuar o fluxo de trabalho"
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 ru_RU_exports = {};
19
- __export(ru_RU_exports, {
20
- default: () => ru_RU_default
21
- });
22
- module.exports = __toCommonJS(ru_RU_exports);
23
- var ru_RU_default = {
24
- Workflow: "\u0420\u0430\u0431\u043E\u0447\u0438\u0439 \u043F\u0440\u043E\u0446\u0435\u0441\u0441",
25
- "Execution history": "\u0418\u0441\u0442\u043E\u0440\u0438\u044F \u0437\u0430\u043F\u0443\u0441\u043A\u043E\u0432",
26
- "Trigger type": "\u0422\u0438\u043F \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430",
27
- Status: "\u0421\u0442\u0430\u0442\u0443\u0441",
28
- On: "\u0412\u043A\u043B.",
29
- Off: "\u0412\u044B\u043A\u043B.",
30
- Version: "\u0412\u0435\u0440\u0441\u0438\u044F",
31
- "Copy to new version": "\u0421\u043A\u043E\u043F\u0438\u0440\u043E\u0432\u0430\u0442\u044C \u0432 \u043D\u043E\u0432\u0443\u044E \u0432\u0435\u0440\u0441\u0438\u044E",
32
- "Load failed": "\u0417\u0430\u0433\u0440\u0443\u0437\u043A\u0430 \u043D\u0435 \u0443\u0434\u0430\u043B\u0430\u0441\u044C",
33
- Trigger: "\u0422\u0440\u0438\u0433\u0433\u0435\u0440",
34
- "Collection event": "\u0421\u043E\u0431\u044B\u0442\u0438\u0435 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0438",
35
- "Trigger on": "\u0422\u0440\u0438\u0433\u0433\u0435\u0440 \u043D\u0430",
36
- "After record added": "\u041F\u043E\u0441\u043B\u0435 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438",
37
- "After record updated": "\u041F\u043E\u0441\u043B\u0435 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438",
38
- "After record added or updated": "\u041F\u043E\u0441\u043B\u0435 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u044F \u0438\u043B\u0438 \u043E\u0431\u043D\u043E\u0432\u043B\u0435\u043D\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438",
39
- "After record deleted": "\u041F\u043E\u0441\u043B\u0435 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u044F \u0437\u0430\u043F\u0438\u0441\u0438",
40
- "Changed fields": "\u0418\u0437\u043C\u0435\u043D\u0435\u043D\u043D\u044B\u0435 \u043F\u043E\u043B\u044F",
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.": "\u0417\u0430\u043F\u0443\u0441\u043A\u0430\u0435\u0442\u0441\u044F \u0442\u043E\u043B\u044C\u043A\u043E \u043F\u0440\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0438 \u043E\u0434\u043D\u043E\u0433\u043E \u0438\u0437 \u0432\u044B\u0431\u0440\u0430\u043D\u043D\u044B\u0445 \u043F\u043E\u043B\u0435\u0439. \u0415\u0441\u043B\u0438 \u0444\u043B\u0430\u0436\u043E\u043A \u043D\u0435 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D, \u044D\u0442\u043E \u043E\u0437\u043D\u0430\u0447\u0430\u0435\u0442, \u0447\u0442\u043E \u043E\u043D \u0431\u0443\u0434\u0435\u0442 \u0441\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0442\u044C \u043F\u0440\u0438 \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u0438\u0438 \u043B\u044E\u0431\u043E\u0433\u043E \u043F\u043E\u043B\u044F. \u041F\u0440\u0438 \u0434\u043E\u0431\u0430\u0432\u043B\u0435\u043D\u0438\u0438 \u0438\u043B\u0438 \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0438 \u0437\u0430\u043F\u0438\u0441\u0438 \u043B\u044E\u0431\u043E\u0435 \u043F\u043E\u043B\u0435 \u0441\u0447\u0438\u0442\u0430\u0435\u0442\u0441\u044F \u0438\u0437\u043C\u0435\u043D\u0435\u043D\u043D\u044B\u043C.",
42
- "Only triggers when match conditions": "\u0421\u0440\u0430\u0431\u0430\u0442\u044B\u0432\u0430\u0435\u0442 \u0442\u043E\u043B\u044C\u043A\u043E \u043F\u0440\u0438 \u0441\u043E\u0432\u043F\u0430\u0434\u0435\u043D\u0438\u0438 \u0443\u0441\u043B\u043E\u0432\u0438\u0439",
43
- "Schedule event": "\u0421\u043E\u0431\u044B\u0442\u0438\u0435 \u043F\u043E \u0440\u0430\u0441\u043F\u0438\u0441\u0430\u043D\u0438\u044E",
44
- "Trigger mode": "\u0420\u0435\u0436\u0438\u043C \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430",
45
- "Based on certain date": "\u041D\u0430 \u043E\u0441\u043D\u043E\u0432\u0435 \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D\u043D\u043E\u0439 \u0434\u0430\u0442\u044B",
46
- "Based on date field of collection": "\u041D\u0430 \u0431\u0430\u0437\u0435 \u043F\u043E\u043B\u044F \u0441 \u0434\u0430\u0442\u043E\u0439 \u0432 \u043A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0438",
47
- "Starts on": "\u0421\u0442\u0430\u0440\u0442\u0443\u0435\u0442 \u0441",
48
- "Ends on": "\u041E\u043A\u0430\u043D\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044F \u0432",
49
- "Exactly at": "\u0420\u043E\u0432\u043D\u043E \u0432",
50
- "Repeat mode": "\u0420\u0435\u0436\u0438\u043C \u043F\u043E\u0432\u0442\u043E\u0440\u0430",
51
- "Repeat limit": "\u041E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u0435 \u043D\u0430 \u043F\u043E\u0432\u0442\u043E\u0440\u044B",
52
- "No limit": "\u041D\u0435\u0442 \u043E\u0433\u0440\u0430\u043D\u0438\u0447\u0435\u043D\u0438\u0439",
53
- Seconds: "\u0421\u0435\u043A\u0443\u043D\u0434\u044B",
54
- Minutes: "\u041C\u0438\u043D\u0443\u0442\u044B",
55
- Hours: "\u0427\u0430\u0441\u044B",
56
- Days: "\u0414\u043D\u0438",
57
- Weeks: "\u041D\u0435\u0434\u0435\u043B\u0438",
58
- Months: "\u041C\u0435\u0441\u044F\u0446\u044B",
59
- "No repeat": "\u041D\u0435 \u043F\u043E\u0432\u0442\u043E\u0440\u044F\u0442\u044C",
60
- Every: "\u041A\u0430\u0436\u0434\u044B\u0435",
61
- "By minute": "\u041F\u043E \u043C\u0438\u043D\u0443\u0442\u0430\u043C",
62
- "By hour": "\u041F\u043E \u0447\u0430\u0441\u0430\u043C",
63
- "By day": "\u041F\u043E \u0434\u043D\u044F\u043C",
64
- "By week": "\u041F\u043E \u043D\u0435\u0434\u0435\u043B\u044F\u043C",
65
- "By month": "\u041F\u043E \u043C\u0435\u0441\u044F\u0446\u0430\u043C",
66
- "By field": "\u041F\u043E \u043F\u043E\u043B\u044E",
67
- "By custom date": "\u041F\u043E \u043F\u043E\u043B\u044C\u0437\u043E\u0432\u0430\u0442\u0435\u043B\u044C\u0441\u043A\u043E\u0439 \u0434\u0430\u0442\u0435",
68
- Advanced: "\u041F\u0440\u043E\u0434\u0432\u0438\u043D\u0443\u0442\u044B\u0439",
69
- End: "\u041E\u043A\u043E\u043D\u0447\u0430\u043D\u0438\u0435",
70
- "Trigger variables": "\u041A\u043E\u043D\u0442\u0435\u043A\u0441\u0442 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430",
71
- "Node result": "\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0423\u0437\u043B\u0430",
72
- Constant: "\u041A\u043E\u043D\u0441\u0442\u0430\u043D\u0442\u0430",
73
- Boolean: "\u041B\u043E\u0433\u0438\u0447\u0435\u0441\u043A\u0438\u0439",
74
- String: "\u0421\u0442\u0440\u043E\u043A\u0430",
75
- "Arithmetic calculation": "\u0410\u0440\u0438\u0444\u043C\u0435\u0442\u0438\u0447\u0435\u0441\u043A\u043E\u0435 \u0432\u044B\u0447\u0438\u0441\u043B\u0435\u043D\u0438\u0435",
76
- "String operation": "\u041E\u043F\u0435\u0440\u0430\u0446\u0438\u044F \u0441\u043E \u0441\u0442\u0440\u043E\u043A\u043E\u0439",
77
- "On going": "\u041D\u0435\u043F\u0440\u0435\u0440\u044B\u0432\u043D\u044B\u0439",
78
- Succeeded: "\u0423\u0441\u043F\u0435\u0448\u043D\u044B\u0439",
79
- Failed: "\u041D\u0435\u0443\u0434\u0430\u0447\u043D\u044B\u0439",
80
- Canceled: "\u041F\u0440\u0435\u0440\u0432\u0430\u043D\u043D\u044B\u0439",
81
- "This node contains branches, deleting will also be preformed to them, are you sure?": "\u042D\u0442\u043E\u0442 \u0443\u0437\u0435\u043B \u0441\u043E\u0434\u0435\u0440\u0436\u0438\u0442 \u0432\u0435\u0442\u043A\u0438, \u043A \u043D\u0438\u043C \u0442\u043E\u0436\u0435 \u0431\u0443\u0434\u0435\u0442 \u043F\u0440\u043E\u0438\u0437\u0432\u0435\u0434\u0435\u043D\u043E \u0443\u0434\u0430\u043B\u0435\u043D\u0438\u0435, \u0432\u044B \u0443\u0432\u0435\u0440\u0435\u043D\u044B?",
82
- Control: "\u0423\u043F\u0440\u0430\u0432\u043B\u0435\u043D\u0438\u0435",
83
- "Collection operations": "\u041E\u043F\u0435\u0440\u0430\u0446\u0438\u0438 \u0441 \u041A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u0435\u0439",
84
- "Node type": "\u0422\u0438\u043F \u0423\u0437\u043B\u0430",
85
- Calculation: "\u0412\u044B\u0447\u0438\u0441\u043B\u0435\u043D\u0438\u0435",
86
- "Configure calculation": "\u041D\u0430\u0441\u0442\u0440\u043E\u0438\u0442\u044C \u0432\u044B\u0447\u0438\u0441\u043B\u0435\u043D\u0438\u0435",
87
- "Calculation result": "\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0432\u044B\u0447\u0438\u0441\u043B\u0435\u043D\u0438\u044F",
88
- True: "\u0418\u0441\u0442\u0438\u043D\u0430",
89
- False: "\u041B\u043E\u0436\u044C",
90
- Condition: "\u0423\u0441\u043B\u043E\u0432\u0438\u0435",
91
- Mode: "\u0420\u0435\u0436\u0438\u043C",
92
- 'Continue when "Yes"': '\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0438\u0442\u044C \u043A\u043E\u0433\u0434\u0430 "\u0414\u0430"',
93
- 'Branch into "Yes" and "No"': '\u0420\u0430\u0437\u0432\u0435\u0442\u0432\u043B\u0435\u043D\u0438\u0435 \u043D\u0430 "\u0414\u0430" and "\u041D\u0435\u0442"',
94
- Conditions: "\u0423\u0441\u043B\u043E\u0432\u0438\u044F",
95
- "Parallel branch": "\u041F\u0430\u0440\u0430\u043B\u043B\u0435\u043B\u044C\u043D\u0430\u044F \u0432\u0435\u0442\u0432\u044C",
96
- "All succeeded": "\u0412\u0441\u0451 \u0443\u0441\u043F\u0435\u0448\u043D\u043E",
97
- "Any succeeded": "\u0427\u0442\u043E-\u0442\u043E \u0443\u0441\u043F\u0435\u0448\u043D\u043E",
98
- "Continue after all branches succeeded": "\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0430\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u0443\u0441\u043F\u0435\u0445\u0430 \u043D\u0430 \u0432\u0441\u0435\u0445 \u0432\u0435\u0442\u0432\u044F\u0445",
99
- "Continue after any branch succeeded": "\u041F\u0440\u043E\u0434\u043E\u043B\u0436\u0430\u0442\u044C \u043F\u043E\u0441\u043B\u0435 \u0443\u0441\u043F\u0435\u0445\u0430 \u043D\u0430 \u043B\u044E\u0431\u043E\u0439 \u0438\u0437 \u0432\u0435\u0442\u0432\u0435\u0439",
100
- "Create record": "\u0421\u043E\u0437\u0434\u0430\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C",
101
- "Update record": "\u041E\u0431\u043D\u043E\u0432\u0438\u0442\u044C \u0437\u0430\u043F\u0438\u0441\u044C",
102
- "Query record": "\u0417\u0430\u043F\u0440\u043E\u0441 \u0437\u0430\u043F\u0438\u0441\u0438",
103
- "Multiple records": "\u041C\u043D\u043E\u0436\u0435\u0441\u0442\u0432\u043E \u0437\u0430\u043F\u0438\u0441\u0435\u0439",
104
- "Please select collection first": "\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043D\u0430\u0447\u0430\u043B\u0430 \u041A\u043E\u043B\u043B\u0435\u043A\u0446\u0438\u044E, \u043F\u043E\u0436\u0430\u043B\u0443\u0439\u0441\u0442\u0430",
105
- "Only update records matching conditions": "\u041E\u0431\u043D\u043E\u0432\u043B\u044F\u0442\u044C \u0442\u043E\u043B\u044C\u043A\u043E \u0437\u0430\u043F\u0438\u0441\u0438, \u0441\u043E\u043E\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044E\u0449\u0438\u0435 \u0443\u0441\u043B\u043E\u0432\u0438\u044F\u043C",
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.": "\u041F\u043E\u043B\u044F, \u043A\u043E\u0442\u043E\u0440\u044B\u043C \u043D\u0435 \u043F\u0440\u0438\u0441\u0432\u043E\u0435\u043D\u043E \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435, \u0431\u0443\u0434\u0443\u0442 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u043D\u0430 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u0435 \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E, \u0430 \u043F\u043E\u043B\u044F, \u043D\u0435 \u0438\u043C\u0435\u044E\u0449\u0438\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u0438\u044F \u043F\u043E \u0443\u043C\u043E\u043B\u0447\u0430\u043D\u0438\u044E, \u0431\u0443\u0434\u0443\u0442 \u0443\u0441\u0442\u0430\u043D\u043E\u0432\u043B\u0435\u043D\u044B \u043D\u0430 null.",
107
- "Trigger in executed workflow cannot be modified": "\u0422\u0440\u0438\u0433\u0433\u0435\u0440 \u0432 \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u043C\u043E\u043C \u0440\u0430\u0431\u043E\u0447\u0435\u043C \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0437\u043C\u0435\u043D\u0435\u043D",
108
- "Node in executed workflow cannot be modified": "\u0423\u0437\u0435\u043B \u0432 \u0432\u044B\u043F\u043E\u043B\u043D\u044F\u0435\u043C\u043E\u043C \u0440\u0430\u0431\u043E\u0447\u0435\u043C \u043F\u0440\u043E\u0446\u0435\u0441\u0441\u0435 \u043D\u0435 \u043C\u043E\u0436\u0435\u0442 \u0431\u044B\u0442\u044C \u0438\u0437\u043C\u0435\u043D\u0435\u043D"
109
- };
@@ -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;