@tachybase/module-workflow 1.5.1 → 1.6.0

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 (40) hide show
  1. package/dist/client/WorkflowCategoriesProvider.d.ts +4 -0
  2. package/dist/client/components/WorkflowCategoryColumn.d.ts +8 -0
  3. package/dist/client/components/index.d.ts +2 -0
  4. package/dist/client/hooks/index.d.ts +2 -0
  5. package/dist/client/hooks/useDumpAction.d.ts +7 -0
  6. package/dist/client/hooks/useRevisionAction.d.ts +7 -0
  7. package/dist/client/index.d.ts +2 -0
  8. package/dist/client/index.js +56 -56
  9. package/dist/client/schemas/workflows.d.ts +5 -0
  10. package/dist/client/utils.d.ts +2 -2
  11. package/dist/externalVersion.js +4 -4
  12. package/dist/locale/en-US.json +2 -0
  13. package/dist/locale/es-ES.json +2 -0
  14. package/dist/locale/fr-FR.json +2 -0
  15. package/dist/locale/ja-JP.json +2 -0
  16. package/dist/locale/ko_KR.json +2 -0
  17. package/dist/locale/pt-BR.json +2 -0
  18. package/dist/locale/ru-RU.json +2 -0
  19. package/dist/locale/tr-TR.json +2 -0
  20. package/dist/locale/zh-CN.json +2 -0
  21. package/dist/node_modules/@babel/core/package.json +1 -1
  22. package/dist/node_modules/@babel/preset-env/package.json +1 -1
  23. package/dist/node_modules/@babel/preset-react/package.json +1 -1
  24. package/dist/node_modules/@babel/preset-typescript/package.json +1 -1
  25. package/dist/node_modules/cron-parser/package.json +1 -1
  26. package/dist/node_modules/form-data/package.json +1 -1
  27. package/dist/node_modules/jsonata/package.json +1 -1
  28. package/dist/node_modules/lru-cache/package.json +1 -1
  29. package/dist/node_modules/mime-types/package.json +1 -1
  30. package/dist/node_modules/qrcode/package.json +1 -1
  31. package/dist/server/actions/executions.d.ts +1 -1
  32. package/dist/server/actions/executions.js +15 -3
  33. package/dist/server/actions/workflows.d.ts +11 -2
  34. package/dist/server/actions/workflows.helpers.d.ts +55 -0
  35. package/dist/server/actions/workflows.helpers.js +167 -0
  36. package/dist/server/actions/workflows.js +56 -7
  37. package/dist/server/utils.d.ts +16 -0
  38. package/dist/server/utils.js +33 -2
  39. package/package.json +7 -7
  40. package/dist/client/provider/EventSourceProvider.d.ts +0 -7
@@ -83,6 +83,11 @@ export declare const useCreateFormBlockProps: () => {
83
83
  export declare const createWorkflow: ISchema;
84
84
  export declare const updateWorkflow: ISchema;
85
85
  export declare const WorkflowTabCardItem: (props: any) => import("react/jsx-runtime").JSX.Element;
86
+ /**
87
+ * 表格数据提供者,支持分类筛选
88
+ * - 根据当前选中的分类标签(tag.value)动态添加 category.id filter
89
+ * - 使用 listExtended action 获取包含额外字段的工作流列表(最新执行时间、事件源名称、分类等)
90
+ */
86
91
  export declare const TabTableBlockProvider: React.MemoExoticComponent<import("@tachybase/schema").ReactFC<{
87
92
  params: any;
88
93
  }>>;
@@ -1,5 +1,5 @@
1
1
  export declare function linkNodes(nodes: any): void;
2
2
  export declare function isValidFilter(condition: any): any;
3
3
  export declare function traverseSchema(schema: any, fn: any): void;
4
- export declare function getWorkflowDetailPath(id: string | number): string;
5
- export declare function getWorkflowExecutionsPath(id: string | number): string;
4
+ export declare function getWorkflowDetailPath(id: string | number, type?: any): string;
5
+ export declare function getWorkflowExecutionsPath(id: string | number, type?: any): string;
@@ -1,6 +1,6 @@
1
1
  module.exports = {
2
2
  "react": "18.3.1",
3
- "@tachybase/client": "1.5.1",
3
+ "@tachybase/client": "1.6.0",
4
4
  "@ant-design/icons": "5.6.1",
5
5
  "antd": "5.22.5",
6
6
  "lodash": "4.17.21",
@@ -13,8 +13,8 @@ module.exports = {
13
13
  "@dnd-kit/core": "6.3.1",
14
14
  "axios": "1.13.0",
15
15
  "sequelize": "6.37.5",
16
- "@tachybase/plugin-workflow-test": "1.5.1",
16
+ "@tachybase/plugin-workflow-test": "1.6.0",
17
17
  "@tachybase/test": "1.3.52",
18
- "@tachybase/module-error-handler": "1.5.1",
19
- "@tachybase/module-ui-schema": "1.5.1"
18
+ "@tachybase/module-error-handler": "1.6.0",
19
+ "@tachybase/module-ui-schema": "1.6.0"
20
20
  };
@@ -145,6 +145,7 @@
145
145
  "Extended types": "Extended types",
146
146
  "Fail and exit": "Fail and exit",
147
147
  "Failed": "Failed",
148
+ "Failed to create execution": "Failed to create execution",
148
149
  "Failed to retry execution": "Failed to retry execution",
149
150
  "False": "False",
150
151
  "Field name existed in form": "Field name existed in form",
@@ -270,6 +271,7 @@
270
271
  "Terminate the process": "Terminate the process",
271
272
  "Test": "Test",
272
273
  "Test execution ended": "Test execution ended",
274
+ "Test execution failed": "Test execution failed",
273
275
  "Test workflow": "Test workflow",
274
276
  "The Notified Person": "The Notified Person",
275
277
  "The interface of show notice detail": "The interface of show notice detail",
@@ -60,6 +60,7 @@
60
60
  "Extended types": "Tipos ampliados",
61
61
  "Fail and exit": "Falla y sale",
62
62
  "Failed": "Fallido",
63
+ "Failed to create execution": "Error al crear la ejecución",
63
64
  "Failed to retry execution": "Error al reintentar la ejecución",
64
65
  "False": "Falso",
65
66
  "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.",
@@ -111,6 +112,7 @@
111
112
  "Succeed and continue": "Éxito y continuar",
112
113
  "Succeeded": "Logrado",
113
114
  "Test execution ended": "Prueba de ejecución terminada",
115
+ "Test execution failed": "Error en la ejecución de prueba",
114
116
  "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "El resultado de este nodo ha sido referenciado por otros nodos ({{nodes}}",
115
117
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Este nodo contiene ramas, el borrado también se preformará a ellas, ¿estás seguro?",
116
118
  "Timeout config": "Tiempo de espera config",
@@ -60,6 +60,7 @@
60
60
  "Extended types": "Types étendus",
61
61
  "Fail and exit": "Échouer et quitter",
62
62
  "Failed": "Échoué",
63
+ "Failed to create execution": "Échec de la création de l'exécution",
63
64
  "Failed to retry execution": "Erreur lors du rejet de l'exécution",
64
65
  "False": "Faux",
65
66
  "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.",
@@ -111,6 +112,7 @@
111
112
  "Succeed and continue": "Réussir et continuer",
112
113
  "Succeeded": "Réussi",
113
114
  "Test execution ended": "Test d'exécution terminé",
115
+ "Test execution failed": "Échec de l'exécution du test",
114
116
  "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "Le résultat de ce nœud a été référencé par d'autres nœuds ({{nodes}}), veuillez supprimer son utilisation avant de le supprimer.",
115
117
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Ce nœud contient des branches, leur suppression sera également effectuée, êtes-vous sûr(e) ?",
116
118
  "Timeout config": "Configuration du délai d'expiration",
@@ -44,6 +44,7 @@
44
44
  "Execute successfully": "実行成功",
45
45
  "Execution history": "実行履歴",
46
46
  "Failed": "失敗",
47
+ "Failed to create execution": "実行の作成に失敗しました",
47
48
  "Failed to retry execution": "実行再試行に失敗",
48
49
  "False": "偽",
49
50
  "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.": "値が割り当てられていないフィールドはデフォルト値に設定され、デフォルト値がないフィールドは null に設定されます",
@@ -78,6 +79,7 @@
78
79
  "String operation": "文字列操作",
79
80
  "Succeeded": "成功",
80
81
  "Test execution ended": "テスト実行が終了しました",
82
+ "Test execution failed": "テスト実行に失敗しました",
81
83
  "This node contains branches, deleting will also be preformed to them, are you sure?": "ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?",
82
84
  "Trigger": "トリガー",
83
85
  "Trigger in executed workflow cannot be modified": "すでにワークフローを実行したトリガーは変更できません",
@@ -112,6 +112,7 @@
112
112
  "Extended types": "확장된 유형",
113
113
  "Fail and exit": "실패하고 종료",
114
114
  "Failed": "실패",
115
+ "Failed to create execution": "실행 생성 실패",
115
116
  "Failed to retry execution": "실행 재시도 실패",
116
117
  "Failed to satisfy node configurations.": "노드 구성을 충족하지 못했습니다.",
117
118
  "False": "거짓",
@@ -205,6 +206,7 @@
205
206
  "Task node": "작업 노드",
206
207
  "Terminate the process": "프로세스 종료",
207
208
  "Test execution ended": "테스트 실행 종료",
209
+ "Test execution failed": "테스트 실행 실패",
208
210
  "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "이 노드의 결과가 다른 노드에서 참조되었습니다({{nodes}}). 삭제 전에 참조를 제거하세요.",
209
211
  "The updated data can trigger other workflows, and the audit log will also be recorded. But it is usually only applicable to several or dozens of pieces of data, otherwise there will be performance problems.": "업데이트된 데이터는 다른 워크플로를 트리거하고 감사 로그도 기록할 수 있습니다. 그러나 일반적으로 몇 개 또는 몇 십 개의 데이터에만 적용되며, 그렇지 않으면 성능 문제가 발생할 수 있습니다.",
210
212
  "This node contains branches, deleting will also be performed on them, are you sure?": "이 노드에는 분기가 포함되어 있습니다. 삭제하면 그들에게도 적용됩니다. 계속하시겠습니까?",
@@ -60,6 +60,7 @@
60
60
  "Extended types": "Tipos estendidos",
61
61
  "Fail and exit": "Falhar e sair",
62
62
  "Failed": "Falhou",
63
+ "Failed to create execution": "Falha ao criar execução",
63
64
  "Failed to retry execution": "Falha ao reexecutar",
64
65
  "False": "Falso",
65
66
  "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ão recebem valor serão definidos como valor padrão e aqueles sem valor padrão serão definidos como nulo.",
@@ -111,6 +112,7 @@
111
112
  "Succeed and continue": "Ter sucesso e continuar",
112
113
  "Succeeded": "Sucesso",
113
114
  "Test execution ended": "Teste de execução terminado",
115
+ "Test execution failed": "Falha na execução do teste",
114
116
  "The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "O resultado deste nó foi referenciado por outros nós ({{nodes}}), por favor, remova a referência antes de excluir.",
115
117
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Este nó contém ramos, a exclusão também será realizada neles, você tem certeza?",
116
118
  "Timeout config": "Configuração de tempo limite",
@@ -44,6 +44,7 @@
44
44
  "Execute successfully": "Выполнено успешно",
45
45
  "Execution history": "История запусков",
46
46
  "Failed": "Неудачный",
47
+ "Failed to create execution": "Не удалось создать выполнение",
47
48
  "Failed to retry execution": "Не удалось повторно выполнить",
48
49
  "False": "Ложь",
49
50
  "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.": "Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.",
@@ -78,6 +79,7 @@
78
79
  "String operation": "Операция со строкой",
79
80
  "Succeeded": "Успешный",
80
81
  "Test execution ended": "Тест выполнения завершен",
82
+ "Test execution failed": "Тестовое выполнение не удалось",
81
83
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?",
82
84
  "Trigger": "Триггер",
83
85
  "Trigger in executed workflow cannot be modified": "Триггер в выполняемом рабочем процессе не может быть изменен",
@@ -44,6 +44,7 @@
44
44
  "Execute successfully": "Başarıyla yürütüldü",
45
45
  "Execution history": "Yürütme Geçmişi",
46
46
  "Failed": "Başarısız",
47
+ "Failed to create execution": "Yürütme oluşturulamadı",
47
48
  "Failed to retry execution": "Yeniden yürütme başarısız",
48
49
  "False": "Yanlış",
49
50
  "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.": "Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.",
@@ -78,6 +79,7 @@
78
79
  "String operation": "String operation",
79
80
  "Succeeded": "Başarılı",
80
81
  "Test execution ended": "Test yürütme tamamlandı",
82
+ "Test execution failed": "Test yürütmesi başarısız",
81
83
  "This node contains branches, deleting will also be preformed to them, are you sure?": "Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?",
82
84
  "Trigger": "Tetikle",
83
85
  "Trigger in executed workflow cannot be modified": "Yürütülen iş akışındaki tetikleyici değiştirilemez",
@@ -185,6 +185,7 @@
185
185
  "Extended types": "扩展类型",
186
186
  "Fail and exit": "失败并退出",
187
187
  "Failed": "失败",
188
+ "Failed to create execution": "创建执行记录失败",
188
189
  "Failed to retry execution": "重试执行失败",
189
190
  "Failed to satisfy node configurations.": "未满足节点配置造成的失败。",
190
191
  "False": "假",
@@ -350,6 +351,7 @@
350
351
  "Terminate the process": "终止流程",
351
352
  "Test": "测试",
352
353
  "Test execution ended": "测试执行结束",
354
+ "Test execution failed": "测试执行失败",
353
355
  "Test workflow": "测试工作流",
354
356
  "The Notified Person": "被通知人",
355
357
  "The approval or rejection by anyone of them is the result.": "任意一人通过或否决即为结果。",
@@ -1 +1 @@
1
- {"name":"@babel/core","version":"7.27.4","description":"Babel compiler core.","main":"./lib/index.js","author":"The Babel Team (https://babel.dev/team)","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-core"},"homepage":"https://babel.dev/docs/en/next/babel-core","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen","keywords":["6to5","babel","classes","const","es6","harmony","let","modules","transpile","transpiler","var","babel-core","compiler"],"engines":{"node":">=6.9.0"},"funding":{"type":"opencollective","url":"https://opencollective.com/babel"},"browser":{"./lib/config/files/index.js":"./lib/config/files/index-browser.js","./lib/config/resolve-targets.js":"./lib/config/resolve-targets-browser.js","./lib/transform-file.js":"./lib/transform-file-browser.js","./src/config/files/index.ts":"./src/config/files/index-browser.ts","./src/config/resolve-targets.ts":"./src/config/resolve-targets-browser.ts","./src/transform-file.ts":"./src/transform-file-browser.ts"},"dependencies":{"@ampproject/remapping":"^2.2.0","@babel/code-frame":"^7.27.1","@babel/generator":"^7.27.3","@babel/helper-compilation-targets":"^7.27.2","@babel/helper-module-transforms":"^7.27.3","@babel/helpers":"^7.27.4","@babel/parser":"^7.27.4","@babel/template":"^7.27.2","@babel/traverse":"^7.27.4","@babel/types":"^7.27.3","convert-source-map":"^2.0.0","debug":"^4.1.0","gensync":"^1.0.0-beta.2","json5":"^2.2.3","semver":"^6.3.1"},"devDependencies":{"@babel/helper-transform-fixture-test-runner":"^7.27.1","@babel/plugin-syntax-flow":"^7.27.1","@babel/plugin-transform-flow-strip-types":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/preset-env":"^7.27.2","@babel/preset-typescript":"^7.27.1","@jridgewell/trace-mapping":"^0.3.25","@types/convert-source-map":"^2.0.0","@types/debug":"^4.1.0","@types/resolve":"^1.3.2","@types/semver":"^5.4.0","rimraf":"^3.0.0","ts-node":"^11.0.0-beta.1"},"type":"commonjs","_lastModified":"2025-11-17T13:33:32.520Z"}
1
+ {"name":"@babel/core","version":"7.27.4","description":"Babel compiler core.","main":"./lib/index.js","author":"The Babel Team (https://babel.dev/team)","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-core"},"homepage":"https://babel.dev/docs/en/next/babel-core","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen","keywords":["6to5","babel","classes","const","es6","harmony","let","modules","transpile","transpiler","var","babel-core","compiler"],"engines":{"node":">=6.9.0"},"funding":{"type":"opencollective","url":"https://opencollective.com/babel"},"browser":{"./lib/config/files/index.js":"./lib/config/files/index-browser.js","./lib/config/resolve-targets.js":"./lib/config/resolve-targets-browser.js","./lib/transform-file.js":"./lib/transform-file-browser.js","./src/config/files/index.ts":"./src/config/files/index-browser.ts","./src/config/resolve-targets.ts":"./src/config/resolve-targets-browser.ts","./src/transform-file.ts":"./src/transform-file-browser.ts"},"dependencies":{"@ampproject/remapping":"^2.2.0","@babel/code-frame":"^7.27.1","@babel/generator":"^7.27.3","@babel/helper-compilation-targets":"^7.27.2","@babel/helper-module-transforms":"^7.27.3","@babel/helpers":"^7.27.4","@babel/parser":"^7.27.4","@babel/template":"^7.27.2","@babel/traverse":"^7.27.4","@babel/types":"^7.27.3","convert-source-map":"^2.0.0","debug":"^4.1.0","gensync":"^1.0.0-beta.2","json5":"^2.2.3","semver":"^6.3.1"},"devDependencies":{"@babel/helper-transform-fixture-test-runner":"^7.27.1","@babel/plugin-syntax-flow":"^7.27.1","@babel/plugin-transform-flow-strip-types":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/preset-env":"^7.27.2","@babel/preset-typescript":"^7.27.1","@jridgewell/trace-mapping":"^0.3.25","@types/convert-source-map":"^2.0.0","@types/debug":"^4.1.0","@types/resolve":"^1.3.2","@types/semver":"^5.4.0","rimraf":"^3.0.0","ts-node":"^11.0.0-beta.1"},"type":"commonjs","_lastModified":"2025-11-20T08:15:56.252Z"}
@@ -1 +1 @@
1
- {"name":"@babel/preset-env","version":"7.27.2","description":"A Babel preset for each environment.","author":"The Babel Team (https://babel.dev/team)","homepage":"https://babel.dev/docs/en/next/babel-preset-env","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20preset-env%22+is%3Aopen","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-env"},"main":"./lib/index.js","dependencies":{"@babel/compat-data":"^7.27.2","@babel/helper-compilation-targets":"^7.27.2","@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-bugfix-firefox-class-in-computed-class-key":"^7.27.1","@babel/plugin-bugfix-safari-class-field-initializer-scope":"^7.27.1","@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression":"^7.27.1","@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining":"^7.27.1","@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly":"^7.27.1","@babel/plugin-proposal-private-property-in-object":"7.21.0-placeholder-for-preset-env.2","@babel/plugin-syntax-import-assertions":"^7.27.1","@babel/plugin-syntax-import-attributes":"^7.27.1","@babel/plugin-syntax-unicode-sets-regex":"^7.18.6","@babel/plugin-transform-arrow-functions":"^7.27.1","@babel/plugin-transform-async-generator-functions":"^7.27.1","@babel/plugin-transform-async-to-generator":"^7.27.1","@babel/plugin-transform-block-scoped-functions":"^7.27.1","@babel/plugin-transform-block-scoping":"^7.27.1","@babel/plugin-transform-class-properties":"^7.27.1","@babel/plugin-transform-class-static-block":"^7.27.1","@babel/plugin-transform-classes":"^7.27.1","@babel/plugin-transform-computed-properties":"^7.27.1","@babel/plugin-transform-destructuring":"^7.27.1","@babel/plugin-transform-dotall-regex":"^7.27.1","@babel/plugin-transform-duplicate-keys":"^7.27.1","@babel/plugin-transform-duplicate-named-capturing-groups-regex":"^7.27.1","@babel/plugin-transform-dynamic-import":"^7.27.1","@babel/plugin-transform-exponentiation-operator":"^7.27.1","@babel/plugin-transform-export-namespace-from":"^7.27.1","@babel/plugin-transform-for-of":"^7.27.1","@babel/plugin-transform-function-name":"^7.27.1","@babel/plugin-transform-json-strings":"^7.27.1","@babel/plugin-transform-literals":"^7.27.1","@babel/plugin-transform-logical-assignment-operators":"^7.27.1","@babel/plugin-transform-member-expression-literals":"^7.27.1","@babel/plugin-transform-modules-amd":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/plugin-transform-modules-systemjs":"^7.27.1","@babel/plugin-transform-modules-umd":"^7.27.1","@babel/plugin-transform-named-capturing-groups-regex":"^7.27.1","@babel/plugin-transform-new-target":"^7.27.1","@babel/plugin-transform-nullish-coalescing-operator":"^7.27.1","@babel/plugin-transform-numeric-separator":"^7.27.1","@babel/plugin-transform-object-rest-spread":"^7.27.2","@babel/plugin-transform-object-super":"^7.27.1","@babel/plugin-transform-optional-catch-binding":"^7.27.1","@babel/plugin-transform-optional-chaining":"^7.27.1","@babel/plugin-transform-parameters":"^7.27.1","@babel/plugin-transform-private-methods":"^7.27.1","@babel/plugin-transform-private-property-in-object":"^7.27.1","@babel/plugin-transform-property-literals":"^7.27.1","@babel/plugin-transform-regenerator":"^7.27.1","@babel/plugin-transform-regexp-modifiers":"^7.27.1","@babel/plugin-transform-reserved-words":"^7.27.1","@babel/plugin-transform-shorthand-properties":"^7.27.1","@babel/plugin-transform-spread":"^7.27.1","@babel/plugin-transform-sticky-regex":"^7.27.1","@babel/plugin-transform-template-literals":"^7.27.1","@babel/plugin-transform-typeof-symbol":"^7.27.1","@babel/plugin-transform-unicode-escapes":"^7.27.1","@babel/plugin-transform-unicode-property-regex":"^7.27.1","@babel/plugin-transform-unicode-regex":"^7.27.1","@babel/plugin-transform-unicode-sets-regex":"^7.27.1","@babel/preset-modules":"0.1.6-no-external-plugins","babel-plugin-polyfill-corejs2":"^0.4.10","babel-plugin-polyfill-corejs3":"^0.11.0","babel-plugin-polyfill-regenerator":"^0.6.1","core-js-compat":"^3.40.0","semver":"^6.3.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/core-7.12":"npm:@babel/core@7.12.9","@babel/helper-plugin-test-runner":"^7.27.1","@babel/traverse":"^7.27.1"},"engines":{"node":">=6.9.0"},"type":"commonjs","_lastModified":"2025-11-17T13:33:37.006Z"}
1
+ {"name":"@babel/preset-env","version":"7.27.2","description":"A Babel preset for each environment.","author":"The Babel Team (https://babel.dev/team)","homepage":"https://babel.dev/docs/en/next/babel-preset-env","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20preset-env%22+is%3Aopen","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-env"},"main":"./lib/index.js","dependencies":{"@babel/compat-data":"^7.27.2","@babel/helper-compilation-targets":"^7.27.2","@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-bugfix-firefox-class-in-computed-class-key":"^7.27.1","@babel/plugin-bugfix-safari-class-field-initializer-scope":"^7.27.1","@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression":"^7.27.1","@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining":"^7.27.1","@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly":"^7.27.1","@babel/plugin-proposal-private-property-in-object":"7.21.0-placeholder-for-preset-env.2","@babel/plugin-syntax-import-assertions":"^7.27.1","@babel/plugin-syntax-import-attributes":"^7.27.1","@babel/plugin-syntax-unicode-sets-regex":"^7.18.6","@babel/plugin-transform-arrow-functions":"^7.27.1","@babel/plugin-transform-async-generator-functions":"^7.27.1","@babel/plugin-transform-async-to-generator":"^7.27.1","@babel/plugin-transform-block-scoped-functions":"^7.27.1","@babel/plugin-transform-block-scoping":"^7.27.1","@babel/plugin-transform-class-properties":"^7.27.1","@babel/plugin-transform-class-static-block":"^7.27.1","@babel/plugin-transform-classes":"^7.27.1","@babel/plugin-transform-computed-properties":"^7.27.1","@babel/plugin-transform-destructuring":"^7.27.1","@babel/plugin-transform-dotall-regex":"^7.27.1","@babel/plugin-transform-duplicate-keys":"^7.27.1","@babel/plugin-transform-duplicate-named-capturing-groups-regex":"^7.27.1","@babel/plugin-transform-dynamic-import":"^7.27.1","@babel/plugin-transform-exponentiation-operator":"^7.27.1","@babel/plugin-transform-export-namespace-from":"^7.27.1","@babel/plugin-transform-for-of":"^7.27.1","@babel/plugin-transform-function-name":"^7.27.1","@babel/plugin-transform-json-strings":"^7.27.1","@babel/plugin-transform-literals":"^7.27.1","@babel/plugin-transform-logical-assignment-operators":"^7.27.1","@babel/plugin-transform-member-expression-literals":"^7.27.1","@babel/plugin-transform-modules-amd":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/plugin-transform-modules-systemjs":"^7.27.1","@babel/plugin-transform-modules-umd":"^7.27.1","@babel/plugin-transform-named-capturing-groups-regex":"^7.27.1","@babel/plugin-transform-new-target":"^7.27.1","@babel/plugin-transform-nullish-coalescing-operator":"^7.27.1","@babel/plugin-transform-numeric-separator":"^7.27.1","@babel/plugin-transform-object-rest-spread":"^7.27.2","@babel/plugin-transform-object-super":"^7.27.1","@babel/plugin-transform-optional-catch-binding":"^7.27.1","@babel/plugin-transform-optional-chaining":"^7.27.1","@babel/plugin-transform-parameters":"^7.27.1","@babel/plugin-transform-private-methods":"^7.27.1","@babel/plugin-transform-private-property-in-object":"^7.27.1","@babel/plugin-transform-property-literals":"^7.27.1","@babel/plugin-transform-regenerator":"^7.27.1","@babel/plugin-transform-regexp-modifiers":"^7.27.1","@babel/plugin-transform-reserved-words":"^7.27.1","@babel/plugin-transform-shorthand-properties":"^7.27.1","@babel/plugin-transform-spread":"^7.27.1","@babel/plugin-transform-sticky-regex":"^7.27.1","@babel/plugin-transform-template-literals":"^7.27.1","@babel/plugin-transform-typeof-symbol":"^7.27.1","@babel/plugin-transform-unicode-escapes":"^7.27.1","@babel/plugin-transform-unicode-property-regex":"^7.27.1","@babel/plugin-transform-unicode-regex":"^7.27.1","@babel/plugin-transform-unicode-sets-regex":"^7.27.1","@babel/preset-modules":"0.1.6-no-external-plugins","babel-plugin-polyfill-corejs2":"^0.4.10","babel-plugin-polyfill-corejs3":"^0.11.0","babel-plugin-polyfill-regenerator":"^0.6.1","core-js-compat":"^3.40.0","semver":"^6.3.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/core-7.12":"npm:@babel/core@7.12.9","@babel/helper-plugin-test-runner":"^7.27.1","@babel/traverse":"^7.27.1"},"engines":{"node":">=6.9.0"},"type":"commonjs","_lastModified":"2025-11-20T08:16:01.496Z"}
@@ -1 +1 @@
1
- {"name":"@babel/preset-react","version":"7.27.1","description":"Babel preset for all React plugins.","author":"The Babel Team (https://babel.dev/team)","homepage":"https://babel.dev/docs/en/next/babel-preset-react","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22area%3A%20react%22+is%3Aopen","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-react"},"main":"./lib/index.js","dependencies":{"@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-transform-react-display-name":"^7.27.1","@babel/plugin-transform-react-jsx":"^7.27.1","@babel/plugin-transform-react-jsx-development":"^7.27.1","@babel/plugin-transform-react-pure-annotations":"^7.27.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/helper-plugin-test-runner":"^7.27.1"},"engines":{"node":">=6.9.0"},"type":"commonjs","_lastModified":"2025-11-17T13:33:39.654Z"}
1
+ {"name":"@babel/preset-react","version":"7.27.1","description":"Babel preset for all React plugins.","author":"The Babel Team (https://babel.dev/team)","homepage":"https://babel.dev/docs/en/next/babel-preset-react","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22area%3A%20react%22+is%3Aopen","license":"MIT","publishConfig":{"access":"public"},"repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-react"},"main":"./lib/index.js","dependencies":{"@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-transform-react-display-name":"^7.27.1","@babel/plugin-transform-react-jsx":"^7.27.1","@babel/plugin-transform-react-jsx-development":"^7.27.1","@babel/plugin-transform-react-pure-annotations":"^7.27.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/helper-plugin-test-runner":"^7.27.1"},"engines":{"node":">=6.9.0"},"type":"commonjs","_lastModified":"2025-11-20T08:16:04.560Z"}
@@ -1 +1 @@
1
- {"name":"@babel/preset-typescript","version":"7.27.1","description":"Babel preset for TypeScript.","repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-typescript"},"license":"MIT","publishConfig":{"access":"public"},"main":"./lib/index.js","keywords":["babel-preset","typescript"],"dependencies":{"@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-syntax-jsx":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/plugin-transform-typescript":"^7.27.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/helper-plugin-test-runner":"^7.27.1"},"homepage":"https://babel.dev/docs/en/next/babel-preset-typescript","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22area%3A%20typescript%22+is%3Aopen","engines":{"node":">=6.9.0"},"author":"The Babel Team (https://babel.dev/team)","type":"commonjs","_lastModified":"2025-11-17T13:33:42.250Z"}
1
+ {"name":"@babel/preset-typescript","version":"7.27.1","description":"Babel preset for TypeScript.","repository":{"type":"git","url":"https://github.com/babel/babel.git","directory":"packages/babel-preset-typescript"},"license":"MIT","publishConfig":{"access":"public"},"main":"./lib/index.js","keywords":["babel-preset","typescript"],"dependencies":{"@babel/helper-plugin-utils":"^7.27.1","@babel/helper-validator-option":"^7.27.1","@babel/plugin-syntax-jsx":"^7.27.1","@babel/plugin-transform-modules-commonjs":"^7.27.1","@babel/plugin-transform-typescript":"^7.27.1"},"peerDependencies":{"@babel/core":"^7.0.0-0"},"devDependencies":{"@babel/core":"^7.27.1","@babel/helper-plugin-test-runner":"^7.27.1"},"homepage":"https://babel.dev/docs/en/next/babel-preset-typescript","bugs":"https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22area%3A%20typescript%22+is%3Aopen","engines":{"node":">=6.9.0"},"author":"The Babel Team (https://babel.dev/team)","type":"commonjs","_lastModified":"2025-11-20T08:16:07.534Z"}
@@ -1 +1 @@
1
- {"name":"cron-parser","version":"4.9.0","description":"Node.js library for parsing crontab instructions","main":"lib/parser.js","types":"types/index.d.ts","typesVersions":{"<4.1":{"*":["types/ts3/*"]}},"directories":{"test":"test"},"scripts":{"test:tsd":"tsd","test:unit":"TZ=UTC tap ./test/*.js","test:cover":"TZ=UTC tap --coverage-report=html ./test/*.js","lint":"eslint .","lint:fix":"eslint --fix .","test":"npm run lint && npm run test:unit && npm run test:tsd"},"repository":{"type":"git","url":"https://github.com/harrisiirak/cron-parser.git"},"keywords":["cron","crontab","parser"],"author":"Harri Siirak","contributors":["Nicholas Clawson","Daniel Prentis <daniel@salsitasoft.com>","Renault John Lecoultre","Richard Astbury <richard.astbury@gmail.com>","Meaglin Wasabi <Meaglin.wasabi@gmail.com>","Mike Kusold <hello@mikekusold.com>","Alex Kit <alex.kit@atmajs.com>","Santiago Gimeno <santiago.gimeno@gmail.com>","Daniel <darc.tec@gmail.com>","Christian Steininger <christian.steininger.cs@gmail.com>","Mykola Piskovyi <m.piskovyi@gmail.com>","Brian Vaughn <brian.david.vaughn@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Yasuhiroki <yasuhiroki.duck@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Brendan Warkentin <faazshift@gmail.com>","Charlie Fish <fishcharlie.code@gmail.com>","Ian Graves <ian+diskimage@iangrav.es>","Andy Thompson <me@andytson.com>","Regev Brody <regevbr@gmail.com>"],"license":"MIT","dependencies":{"luxon":"^3.2.1"},"devDependencies":{"eslint":"^8.27.0","sinon":"^15.0.1","tap":"^16.3.3","tsd":"^0.26.0"},"engines":{"node":">=12.0.0"},"browser":{"fs":false},"tap":{"check-coverage":false},"tsd":{"directory":"test","compilerOptions":{"lib":["es2017","dom"]}},"files":["lib","types","LICENSE","README.md"],"_lastModified":"2025-11-17T13:33:42.480Z"}
1
+ {"name":"cron-parser","version":"4.9.0","description":"Node.js library for parsing crontab instructions","main":"lib/parser.js","types":"types/index.d.ts","typesVersions":{"<4.1":{"*":["types/ts3/*"]}},"directories":{"test":"test"},"scripts":{"test:tsd":"tsd","test:unit":"TZ=UTC tap ./test/*.js","test:cover":"TZ=UTC tap --coverage-report=html ./test/*.js","lint":"eslint .","lint:fix":"eslint --fix .","test":"npm run lint && npm run test:unit && npm run test:tsd"},"repository":{"type":"git","url":"https://github.com/harrisiirak/cron-parser.git"},"keywords":["cron","crontab","parser"],"author":"Harri Siirak","contributors":["Nicholas Clawson","Daniel Prentis <daniel@salsitasoft.com>","Renault John Lecoultre","Richard Astbury <richard.astbury@gmail.com>","Meaglin Wasabi <Meaglin.wasabi@gmail.com>","Mike Kusold <hello@mikekusold.com>","Alex Kit <alex.kit@atmajs.com>","Santiago Gimeno <santiago.gimeno@gmail.com>","Daniel <darc.tec@gmail.com>","Christian Steininger <christian.steininger.cs@gmail.com>","Mykola Piskovyi <m.piskovyi@gmail.com>","Brian Vaughn <brian.david.vaughn@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Yasuhiroki <yasuhiroki.duck@gmail.com>","Nicholas Clawson <nickclaw@gmail.com>","Brendan Warkentin <faazshift@gmail.com>","Charlie Fish <fishcharlie.code@gmail.com>","Ian Graves <ian+diskimage@iangrav.es>","Andy Thompson <me@andytson.com>","Regev Brody <regevbr@gmail.com>"],"license":"MIT","dependencies":{"luxon":"^3.2.1"},"devDependencies":{"eslint":"^8.27.0","sinon":"^15.0.1","tap":"^16.3.3","tsd":"^0.26.0"},"engines":{"node":">=12.0.0"},"browser":{"fs":false},"tap":{"check-coverage":false},"tsd":{"directory":"test","compilerOptions":{"lib":["es2017","dom"]}},"files":["lib","types","LICENSE","README.md"],"_lastModified":"2025-11-20T08:16:07.796Z"}
@@ -1 +1 @@
1
- {"author":"Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)","name":"form-data","description":"A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.","version":"4.0.4","repository":{"type":"git","url":"git://github.com/form-data/form-data.git"},"main":"./lib/form_data","browser":"./lib/browser","typings":"./index.d.ts","scripts":{"pretest":"npm run lint","pretests-only":"rimraf coverage test/tmp","tests-only":"istanbul cover test/run.js","posttests-only":"istanbul report lcov text","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","lint":"eslint --ext=js,mjs .","report":"istanbul report lcov text","ci-lint":"is-node-modern 8 && npm run lint || is-node-not-modern 8","ci-test":"npm run tests-only && npm run browser && npm run report","predebug":"rimraf coverage test/tmp","debug":"verbose=1 ./test/run.js","browser":"browserify -t browserify-istanbul test/run-browser.js | obake --coverage","check":"istanbul check-coverage coverage/coverage*.json","files":"pkgfiles --sort=name","get-version":"node -e \"console.log(require('./package.json').version)\"","update-readme":"sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md","postupdate-readme":"mv README.md.bak READ.ME.md.bak","restore-readme":"mv READ.ME.md.bak README.md","prepublish":"not-in-publish || npm run prepublishOnly","prepack":"npm run update-readme","postpack":"npm run restore-readme","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"engines":{"node":">= 6"},"dependencies":{"asynckit":"^0.4.0","combined-stream":"^1.0.8","es-set-tostringtag":"^2.1.0","hasown":"^2.0.2","mime-types":"^2.1.12"},"devDependencies":{"@ljharb/eslint-config":"^21.2.0","auto-changelog":"^2.5.0","browserify":"^13.3.0","browserify-istanbul":"^2.0.0","coveralls":"^3.1.1","cross-spawn":"^6.0.6","eslint":"=8.8.0","fake":"^0.2.2","far":"^0.0.7","formidable":"^1.2.6","in-publish":"^2.0.1","is-node-modern":"^1.0.0","istanbul":"^0.4.5","obake":"^0.1.2","pkgfiles":"^2.3.2","pre-commit":"^1.2.2","predict-v8-randomness":"^1.0.35","puppeteer":"^1.20.0","request":"~2.87.0","rimraf":"^2.7.1","semver":"^6.3.1","tape":"^5.9.0"},"license":"MIT","auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"_lastModified":"2025-11-17T13:33:28.941Z"}
1
+ {"author":"Felix Geisendörfer <felix@debuggable.com> (http://debuggable.com/)","name":"form-data","description":"A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.","version":"4.0.4","repository":{"type":"git","url":"git://github.com/form-data/form-data.git"},"main":"./lib/form_data","browser":"./lib/browser","typings":"./index.d.ts","scripts":{"pretest":"npm run lint","pretests-only":"rimraf coverage test/tmp","tests-only":"istanbul cover test/run.js","posttests-only":"istanbul report lcov text","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","lint":"eslint --ext=js,mjs .","report":"istanbul report lcov text","ci-lint":"is-node-modern 8 && npm run lint || is-node-not-modern 8","ci-test":"npm run tests-only && npm run browser && npm run report","predebug":"rimraf coverage test/tmp","debug":"verbose=1 ./test/run.js","browser":"browserify -t browserify-istanbul test/run-browser.js | obake --coverage","check":"istanbul check-coverage coverage/coverage*.json","files":"pkgfiles --sort=name","get-version":"node -e \"console.log(require('./package.json').version)\"","update-readme":"sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md","postupdate-readme":"mv README.md.bak READ.ME.md.bak","restore-readme":"mv READ.ME.md.bak README.md","prepublish":"not-in-publish || npm run prepublishOnly","prepack":"npm run update-readme","postpack":"npm run restore-readme","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"engines":{"node":">= 6"},"dependencies":{"asynckit":"^0.4.0","combined-stream":"^1.0.8","es-set-tostringtag":"^2.1.0","hasown":"^2.0.2","mime-types":"^2.1.12"},"devDependencies":{"@ljharb/eslint-config":"^21.2.0","auto-changelog":"^2.5.0","browserify":"^13.3.0","browserify-istanbul":"^2.0.0","coveralls":"^3.1.1","cross-spawn":"^6.0.6","eslint":"=8.8.0","fake":"^0.2.2","far":"^0.0.7","formidable":"^1.2.6","in-publish":"^2.0.1","is-node-modern":"^1.0.0","istanbul":"^0.4.5","obake":"^0.1.2","pkgfiles":"^2.3.2","pre-commit":"^1.2.2","predict-v8-randomness":"^1.0.35","puppeteer":"^1.20.0","request":"~2.87.0","rimraf":"^2.7.1","semver":"^6.3.1","tape":"^5.9.0"},"license":"MIT","auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"_lastModified":"2025-11-20T08:15:52.070Z"}
@@ -1 +1 @@
1
- {"name":"jsonata","version":"2.0.6","description":"JSON query and transformation language","module":"jsonata.js","main":"jsonata.js","typings":"jsonata.d.ts","homepage":"http://jsonata.org/","repository":{"type":"git","url":"https://github.com/jsonata-js/jsonata.git"},"scripts":{"pretest":"npm run lint","mocha":"nyc ./node_modules/mocha/bin/_mocha -- \"test/**/*.js\"","test":"npm run mocha","posttest":"npm run check-coverage && npm run browserify && npm run minify && npm run build-es5","build-es5":"npm run mkdir-dist && npm run regenerator && npm run browserify-es5 && npm run minify-es5","check-coverage":"nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100","browserify":"browserify src/jsonata.js --outfile jsonata.js --standalone jsonata","mkdir-dist":"mkdirp ./dist","regenerator":"babel src --out-dir dist --presets=@babel/env","browserify-es5":"regenerator --include-runtime polyfill.js > jsonata-es5.js; browserify dist/jsonata.js --standalone jsonata >> jsonata-es5.js","prepublishOnly":"npm run browserify && npm run minify && npm run build-es5","lint":"eslint src","doc":"jsdoc --configure jsdoc.json .","cover":"nyc _mocha","minify":"uglifyjs jsonata.js -o jsonata.min.js --compress --mangle","minify-es5":"uglifyjs jsonata-es5.js -o jsonata-es5.min.js --compress --mangle"},"license":"MIT","keywords":["JSON","query","transformation","transform","mapping","path"],"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","browserify":"^16.5.0","chai":"^4.2.0","chai-as-promised":"^7.1.1","eslint":"8.0.0","eslint-plugin-ideal":"^0.1.3","eslint-plugin-promise":"^6.0.0","jsdoc":"^3.6.3","mkdirp":"^1.0.3","mocha":"^7.0.1","mocha-lcov-reporter":"^1.3.0","nyc":"^15.1.0","regenerator":"^0.14.4","request":"^2.88.2","uglify-es":"^3.3.10"},"engines":{"node":">= 8"},"_lastModified":"2025-11-17T13:33:29.938Z"}
1
+ {"name":"jsonata","version":"2.0.6","description":"JSON query and transformation language","module":"jsonata.js","main":"jsonata.js","typings":"jsonata.d.ts","homepage":"http://jsonata.org/","repository":{"type":"git","url":"https://github.com/jsonata-js/jsonata.git"},"scripts":{"pretest":"npm run lint","mocha":"nyc ./node_modules/mocha/bin/_mocha -- \"test/**/*.js\"","test":"npm run mocha","posttest":"npm run check-coverage && npm run browserify && npm run minify && npm run build-es5","build-es5":"npm run mkdir-dist && npm run regenerator && npm run browserify-es5 && npm run minify-es5","check-coverage":"nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100","browserify":"browserify src/jsonata.js --outfile jsonata.js --standalone jsonata","mkdir-dist":"mkdirp ./dist","regenerator":"babel src --out-dir dist --presets=@babel/env","browserify-es5":"regenerator --include-runtime polyfill.js > jsonata-es5.js; browserify dist/jsonata.js --standalone jsonata >> jsonata-es5.js","prepublishOnly":"npm run browserify && npm run minify && npm run build-es5","lint":"eslint src","doc":"jsdoc --configure jsdoc.json .","cover":"nyc _mocha","minify":"uglifyjs jsonata.js -o jsonata.min.js --compress --mangle","minify-es5":"uglifyjs jsonata-es5.js -o jsonata-es5.min.js --compress --mangle"},"license":"MIT","keywords":["JSON","query","transformation","transform","mapping","path"],"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.8.4","@babel/preset-env":"^7.8.4","browserify":"^16.5.0","chai":"^4.2.0","chai-as-promised":"^7.1.1","eslint":"8.0.0","eslint-plugin-ideal":"^0.1.3","eslint-plugin-promise":"^6.0.0","jsdoc":"^3.6.3","mkdirp":"^1.0.3","mocha":"^7.0.1","mocha-lcov-reporter":"^1.3.0","nyc":"^15.1.0","regenerator":"^0.14.4","request":"^2.88.2","uglify-es":"^3.3.10"},"engines":{"node":">= 8"},"_lastModified":"2025-11-20T08:15:53.168Z"}
@@ -1 +1 @@
1
- {"type":"commonjs","_lastModified":"2025-11-17T13:33:28.527Z"}
1
+ {"type":"commonjs","_lastModified":"2025-11-20T08:15:51.642Z"}
@@ -1 +1 @@
1
- {"name":"mime-types","description":"The ultimate javascript content-type utility.","version":"3.0.1","contributors":["Douglas Christopher Wilson <doug@somethingdoug.com>","Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)","Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"],"license":"MIT","keywords":["mime","types"],"repository":"jshttp/mime-types","dependencies":{"mime-db":"^1.54.0"},"devDependencies":{"eslint":"8.33.0","eslint-config-standard":"14.1.1","eslint-plugin-import":"2.27.5","eslint-plugin-markdown":"3.0.0","eslint-plugin-node":"11.1.0","eslint-plugin-promise":"6.1.1","eslint-plugin-standard":"4.1.0","mocha":"10.2.0","nyc":"15.1.0"},"files":["HISTORY.md","LICENSE","index.js","mimeScore.js"],"engines":{"node":">= 0.6"},"scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_lastModified":"2025-11-17T13:33:29.106Z"}
1
+ {"name":"mime-types","description":"The ultimate javascript content-type utility.","version":"3.0.1","contributors":["Douglas Christopher Wilson <doug@somethingdoug.com>","Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)","Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)"],"license":"MIT","keywords":["mime","types"],"repository":"jshttp/mime-types","dependencies":{"mime-db":"^1.54.0"},"devDependencies":{"eslint":"8.33.0","eslint-config-standard":"14.1.1","eslint-plugin-import":"2.27.5","eslint-plugin-markdown":"3.0.0","eslint-plugin-node":"11.1.0","eslint-plugin-promise":"6.1.1","eslint-plugin-standard":"4.1.0","mocha":"10.2.0","nyc":"15.1.0"},"files":["HISTORY.md","LICENSE","index.js","mimeScore.js"],"engines":{"node":">= 0.6"},"scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_lastModified":"2025-11-20T08:15:52.252Z"}
@@ -1 +1 @@
1
- {"name":"qrcode","description":"QRCode / 2d Barcode api with both server side and client side support using canvas","version":"1.5.4","author":"Ryan Day <soldair@gmail.com>","contributors":["Vincenzo Greco <greco.vincenzo@gmail.com>","Linus Unnebäck <linus@folkdatorn.se>"],"keywords":["qr","code","canvas","qrcode"],"main":"./lib/index.js","browser":{"./lib/index.js":"./lib/browser.js","fs":false},"files":["bin","build","lib","helper"],"homepage":"http://github.com/soldair/node-qrcode","license":"MIT","scripts":{"lint":"standard","pretest":"npm run lint","test":"node --throw-deprecation test.js","build":"rollup -c","prepublish":"npm run build","browser":"node examples/clientsideserver.js"},"bin":{"qrcode":"./bin/qrcode"},"dependencies":{"dijkstrajs":"^1.0.1","pngjs":"^5.0.0","yargs":"^15.3.1"},"devDependencies":{"@babel/core":"^7.9.0","@babel/preset-env":"^7.9.5","@rollup/plugin-commonjs":"^11.1.0","@rollup/plugin-node-resolve":"^7.1.3","browserify":"^16.5.1","canvas":"^2.8.0","canvasutil":"0.0.4","colors":"^1.4.0","express":"^4.17.1","htmlparser2":"^4.1.0","rollup":"^2.6.1","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^5.3.0","sinon":"^9.0.2","standard":"^16.0.4","tap":"^16.2.0"},"repository":{"type":"git","url":"git://github.com/soldair/node-qrcode.git"},"engines":{"node":">=10.13.0"},"standard":{"ignore":["build/","examples/vendors/","lib/core/regex.js"]},"_lastModified":"2025-11-17T13:33:29.541Z"}
1
+ {"name":"qrcode","description":"QRCode / 2d Barcode api with both server side and client side support using canvas","version":"1.5.4","author":"Ryan Day <soldair@gmail.com>","contributors":["Vincenzo Greco <greco.vincenzo@gmail.com>","Linus Unnebäck <linus@folkdatorn.se>"],"keywords":["qr","code","canvas","qrcode"],"main":"./lib/index.js","browser":{"./lib/index.js":"./lib/browser.js","fs":false},"files":["bin","build","lib","helper"],"homepage":"http://github.com/soldair/node-qrcode","license":"MIT","scripts":{"lint":"standard","pretest":"npm run lint","test":"node --throw-deprecation test.js","build":"rollup -c","prepublish":"npm run build","browser":"node examples/clientsideserver.js"},"bin":{"qrcode":"./bin/qrcode"},"dependencies":{"dijkstrajs":"^1.0.1","pngjs":"^5.0.0","yargs":"^15.3.1"},"devDependencies":{"@babel/core":"^7.9.0","@babel/preset-env":"^7.9.5","@rollup/plugin-commonjs":"^11.1.0","@rollup/plugin-node-resolve":"^7.1.3","browserify":"^16.5.1","canvas":"^2.8.0","canvasutil":"0.0.4","colors":"^1.4.0","express":"^4.17.1","htmlparser2":"^4.1.0","rollup":"^2.6.1","rollup-plugin-babel":"^4.4.0","rollup-plugin-terser":"^5.3.0","sinon":"^9.0.2","standard":"^16.0.4","tap":"^16.2.0"},"repository":{"type":"git","url":"git://github.com/soldair/node-qrcode.git"},"engines":{"node":">=10.13.0"},"standard":{"ignore":["build/","examples/vendors/","lib/core/regex.js"]},"_lastModified":"2025-11-20T08:15:52.729Z"}
@@ -1,4 +1,4 @@
1
1
  import { Context, Next } from '@tego/server';
2
2
  export declare function destroy(context: Context, next: any): Promise<void>;
3
3
  export declare function cancel(context: Context, next: any): Promise<never>;
4
- export declare function retry(context: Context, next: Next): Promise<void>;
4
+ export declare function retry(context: Context, next: Next): Promise<never>;
@@ -35,6 +35,7 @@ module.exports = __toCommonJS(executions_exports);
35
35
  var import_server = require("@tego/server");
36
36
  var import_constants = require("../constants");
37
37
  var import_Plugin = __toESM(require("../Plugin"));
38
+ var import_utils = require("../utils");
38
39
  async function destroy(context, next) {
39
40
  context.action.mergeParams({
40
41
  filter: {
@@ -114,10 +115,21 @@ async function retry(context, next) {
114
115
  context.throw(404, context.t("Associated workflow not found.", { ns: "workflow" }));
115
116
  }
116
117
  try {
117
- const result = await plugin.trigger(workflow, execution.context, { httpContext: context });
118
- context.app.logger.info(result);
118
+ const newExecution = await (0, import_utils.triggerWorkflowAndGetExecution)(
119
+ plugin,
120
+ workflow,
121
+ execution.context,
122
+ { httpContext: context, transaction: context.transaction },
123
+ context.db
124
+ );
125
+ if (!newExecution) {
126
+ context.state.messages.push({
127
+ message: context.t("Failed to create execution", { ns: "workflow" })
128
+ });
129
+ return context.throw(500, context.t("Failed to create execution", { ns: "workflow" }));
130
+ }
119
131
  context.state.messages.push({ message: context.t("Execute ended", { ns: "workflow" }) });
120
- context.body = { executionId: execution.id };
132
+ context.body = newExecution;
121
133
  } catch (error) {
122
134
  context.app.logger.error(`Failed to retry execution ${execution.id}: ${error.message}`);
123
135
  context.throw(500, context.t("Failed to retry execution", { ns: "workflow" }));
@@ -1,11 +1,20 @@
1
1
  import { Context, Next } from '@tego/server';
2
+ /**
3
+ * 扩展的 list action,在返回工作流列表时附加额外字段
4
+ * - latestExecutedTime: 最新执行时间(UTC ISO 格式)
5
+ * - eventSourceName: 关联的事件源名称
6
+ * - category: 分类信息数组
7
+ *
8
+ * 使用 listExtended 作为 action 名称,避免覆盖默认的 list,便于后续扩展
9
+ */
10
+ export declare function listExtended(context: Context, next: Next): Promise<Context>;
2
11
  export declare function update(context: Context, next: any): Promise<void>;
3
12
  export declare function destroy(context: Context, next: any): Promise<void>;
4
13
  export declare function dump(context: Context, next: Next): Promise<void>;
5
14
  export declare function load(context: Context, next: Next): Promise<void>;
6
- export declare function test(context: Context, next: Next): Promise<void>;
15
+ export declare function test(context: Context, next: Next): Promise<never>;
7
16
  export declare function revision(context: Context, next: Next): Promise<void>;
8
- export declare function retry(context: Context, next: Next): Promise<void>;
17
+ export declare function retry(context: Context, next: Next): Promise<any>;
9
18
  export declare function sync(context: Context, next: any): Promise<void>;
10
19
  export declare function trigger(ctx: Context, next: Next): Promise<void>;
11
20
  export declare function moveWorkflow(ctx: Context, next: Next): Promise<void>;
@@ -0,0 +1,55 @@
1
+ import { Context } from '@tego/server';
2
+ /**
3
+ * 获取工作流的实际数据(处理 Model 和 JSON 两种格式)
4
+ */
5
+ export declare function getWorkflowData(workflow: any): {
6
+ id?: number;
7
+ key?: string;
8
+ };
9
+ /**
10
+ * 查询单个工作流的最新执行时间
11
+ * @param context 上下文对象
12
+ * @param workflowId 工作流 ID(优先使用,可利用外键索引)
13
+ * @param workflowKey 工作流 Key(备用)
14
+ * @returns UTC ISO 格式的时间字符串,如果不存在则返回 null
15
+ */
16
+ export declare function getLatestExecutedTimeForWorkflow(context: Context, workflowId?: number, workflowKey?: string): Promise<string | null>;
17
+ /**
18
+ * 为工作流对象设置最新执行时间
19
+ * 支持 Model 和普通对象两种格式
20
+ */
21
+ export declare function setLatestExecutedTime(row: any, executedTime: string | null): void;
22
+ /**
23
+ * 查询单个工作流关联的事件源名称
24
+ * @param context 上下文对象
25
+ * @param workflowKey 工作流 Key
26
+ * @returns 事件源名称,如果不存在则返回 null
27
+ */
28
+ export declare function getEventSourceNameForWorkflow(context: Context, workflowKey?: string): Promise<string | null>;
29
+ /**
30
+ * 为工作流对象设置事件源名称
31
+ * 支持 Model 和普通对象两种格式
32
+ */
33
+ export declare function setEventSourceName(row: any, eventSourceName: string | null): void;
34
+ /**
35
+ * 查询单个工作流的分类信息
36
+ * 优先从 workflow 对象中获取已加载的分类数据(通过 appends),如果不存在则查询数据库
37
+ * @param context 上下文对象
38
+ * @param workflow 工作流对象(可能包含已加载的分类数据)
39
+ * @param workflowKey 工作流 Key(用于查询数据库)
40
+ * @returns 分类信息数组,格式:{ id, name, color? }[]
41
+ */
42
+ export declare function getCategoriesForWorkflow(context: Context, workflow?: any, workflowKey?: string): Promise<Array<{
43
+ id: number;
44
+ name: string;
45
+ color?: string;
46
+ }> | null>;
47
+ /**
48
+ * 为工作流对象设置分类信息
49
+ * 支持 Model 和普通对象两种格式
50
+ */
51
+ export declare function setCategories(row: any, categories: Array<{
52
+ id: number;
53
+ name: string;
54
+ color?: string;
55
+ }> | null): void;