@acmekit/dashboard 2.13.33 → 2.13.35

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 (87) hide show
  1. package/dist/{api-key-management-create-4AG76FJV.mjs → api-key-management-create-U37VC624.mjs} +3 -3
  2. package/dist/{api-key-management-detail-T2TB4KST.mjs → api-key-management-detail-ZYKL4ATI.mjs} +10 -10
  3. package/dist/{api-key-management-edit-R44OHS7B.mjs → api-key-management-edit-TSZGMIBL.mjs} +3 -3
  4. package/dist/{api-key-management-list-QK4Q7Y5I.mjs → api-key-management-list-HCJFJWWB.mjs} +3 -3
  5. package/dist/app.css +31 -0
  6. package/dist/app.js +3726 -1386
  7. package/dist/app.mjs +240 -38
  8. package/dist/{chunk-GBFVWROS.mjs → chunk-5IEHCYJO.mjs} +1 -1
  9. package/dist/{chunk-DQCEH3X2.mjs → chunk-7F3CWXUH.mjs} +1 -1
  10. package/dist/chunk-A7ULKHDE.mjs +126 -0
  11. package/dist/{chunk-DN3MIYQH.mjs → chunk-FKTMBR44.mjs} +1 -1
  12. package/dist/chunk-GBPAZAJK.mjs +34 -0
  13. package/dist/{chunk-YRWSG3YM.mjs → chunk-HHPPTD3B.mjs} +1 -1
  14. package/dist/chunk-LP6CPB7N.mjs +213 -0
  15. package/dist/{chunk-EFRMWHRX.mjs → chunk-PFZQYK7R.mjs} +1 -1
  16. package/dist/{chunk-XIM7X4FB.mjs → chunk-SYACY6AL.mjs} +1 -1
  17. package/dist/{chunk-2U3RK3JG.mjs → chunk-VEI6HW6L.mjs} +3 -5
  18. package/dist/{chunk-ST2YB7JN.mjs → chunk-WLRJXEKL.mjs} +1 -1
  19. package/dist/{chunk-ULSPL3DR.mjs → chunk-XIP35KXF.mjs} +1 -1
  20. package/dist/{chunk-DTY37DDZ.mjs → chunk-YKIWIMJX.mjs} +1 -0
  21. package/dist/en.json +132 -3
  22. package/dist/{invite-XGPZZBUP.mjs → invite-3JSNOA2B.mjs} +3 -3
  23. package/dist/{login-GNP3QIPI.mjs → login-BEJ5EFGE.mjs} +9 -9
  24. package/dist/{profile-detail-YX27F7N6.mjs → profile-detail-QVTJC4JC.mjs} +3 -3
  25. package/dist/{profile-edit-2VRDU75O.mjs → profile-edit-MIO62TWH.mjs} +3 -3
  26. package/dist/{reset-password-TWRNZO6Z.mjs → reset-password-BN4KAJQL.mjs} +2 -2
  27. package/dist/{settings-3XWLL5LG.mjs → settings-GH5IWXHE.mjs} +3 -3
  28. package/dist/{translation-list-CCEQJNED.mjs → translation-list-JA22BUKN.mjs} +10 -10
  29. package/dist/{translations-edit-E57GVUFV.mjs → translations-edit-STTMANVT.mjs} +11 -11
  30. package/dist/{user-detail-KUSRRVNX.mjs → user-detail-WCXBFRGS.mjs} +3 -3
  31. package/dist/{user-edit-HTN3ZGCL.mjs → user-edit-XDVMJOS4.mjs} +3 -3
  32. package/dist/{user-invite-E3FAAU3V.mjs → user-invite-73ZDSDFC.mjs} +3 -3
  33. package/dist/{user-list-KNJ5S3IM.mjs → user-list-MPJXE3CA.mjs} +5 -5
  34. package/dist/{user-metadata-5GQK75DT.mjs → user-metadata-ADNTL3LT.mjs} +10 -10
  35. package/dist/workflow-analytics-4WCI4ODQ.mjs +152 -0
  36. package/dist/workflow-definition-detail-GI6CFBMG.mjs +94 -0
  37. package/dist/workflow-definition-list-GF3XAEPS.mjs +142 -0
  38. package/dist/workflow-execution-complete-step-WSRLO572.mjs +245 -0
  39. package/dist/workflow-execution-detail-3RH6EQSS.mjs +1411 -0
  40. package/dist/workflow-execution-list-AQEGAME4.mjs +596 -0
  41. package/dist/workflow-execution-rerun-WCYLYL3Q.mjs +138 -0
  42. package/dist/workflow-execution-run-MWN5KWNY.mjs +135 -0
  43. package/dist/workflow-scheduled-list-ZPXR7CZM.mjs +174 -0
  44. package/package.json +9 -9
  45. package/src/components/layout/main-layout/main-layout.tsx +28 -1
  46. package/src/dashboard-app/routes/get-route.map.tsx +71 -0
  47. package/src/hooks/api/workflow-definitions.tsx +79 -0
  48. package/src/hooks/api/workflow-executions.tsx +145 -1
  49. package/src/hooks/api/workflow-metrics.tsx +48 -0
  50. package/src/hooks/use-workflow-sse.tsx +78 -0
  51. package/src/i18n/translations/$schema.json +534 -4
  52. package/src/i18n/translations/en.json +132 -3
  53. package/src/routes/workflow-analytics/workflow-analytics.tsx +167 -0
  54. package/src/routes/workflow-definitions/workflow-definition-detail/workflow-definition-detail.tsx +98 -0
  55. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/use-workflow-definition-table-columns.tsx +78 -0
  56. package/src/routes/workflow-definitions/workflow-definition-list/components/workflow-definition-list-table/workflow-definition-list-table.tsx +65 -0
  57. package/src/routes/workflow-definitions/workflow-definition-list/workflow-definition-list.tsx +15 -0
  58. package/src/routes/workflow-executions/constants.ts +16 -0
  59. package/src/routes/workflow-executions/utils.ts +170 -14
  60. package/src/routes/workflow-executions/workflow-execution-complete-step/workflow-execution-complete-step.tsx +270 -0
  61. package/src/routes/workflow-executions/workflow-execution-detail/breadcrumb.tsx +7 -1
  62. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/index.ts +1 -0
  63. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-action-bar/workflow-execution-action-bar.tsx +212 -0
  64. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/index.ts +1 -0
  65. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-error-card/workflow-execution-error-card.tsx +59 -0
  66. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-history-section/workflow-execution-history-section.tsx +157 -6
  67. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-payload-section/workflow-execution-payload-section.tsx +122 -6
  68. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-timeline-section/workflow-execution-timeline-section.tsx +7 -1
  69. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/index.ts +1 -0
  70. package/src/routes/workflow-executions/workflow-execution-detail/components/workflow-execution-waiting-banner/workflow-execution-waiting-banner.tsx +63 -0
  71. package/src/routes/workflow-executions/workflow-execution-detail/workflow-detail.tsx +46 -1
  72. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-columns.tsx +7 -0
  73. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-filters.tsx +7 -1
  74. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/use-workflow-execution-table-query.tsx +4 -2
  75. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-auto-refresh.tsx +73 -0
  76. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-list-table.tsx +17 -1
  77. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-row-actions.tsx +116 -0
  78. package/src/routes/workflow-executions/workflow-execution-list/components/workflow-execution-list-table/workflow-execution-saved-views.tsx +84 -0
  79. package/src/routes/workflow-executions/workflow-execution-list/workflow-execution-list.tsx +1 -1
  80. package/src/routes/workflow-executions/workflow-execution-rerun/workflow-execution-rerun.tsx +159 -0
  81. package/src/routes/workflow-executions/workflow-execution-run/workflow-execution-run.tsx +139 -0
  82. package/src/routes/workflow-scheduled/workflow-scheduled-list.tsx +269 -0
  83. package/dist/chunk-LKWTBYYC.mjs +0 -35
  84. package/dist/chunk-RPAL6FHW.mjs +0 -73
  85. package/dist/workflow-execution-detail-5O5VCXL3.mjs +0 -870
  86. package/dist/workflow-execution-list-DETG4MRT.mjs +0 -347
  87. /package/dist/{chunk-22YYMH6M.mjs → chunk-RISX76YT.mjs} +0 -0
@@ -0,0 +1,213 @@
1
+ // src/routes/workflow-executions/constants.ts
2
+ var STEP_IN_PROGRESS_STATES = [
3
+ "compensating" /* COMPENSATING */,
4
+ "invoking" /* INVOKING */
5
+ ];
6
+ var STEP_SKIPPED_STATES = [
7
+ "skipped" /* SKIPPED */,
8
+ "skipped_failure" /* SKIPPED_FAILURE */
9
+ ];
10
+ var STEP_OK_STATES = [
11
+ "done" /* DONE */
12
+ ];
13
+ var STEP_ERROR_STATES = [
14
+ "failed" /* FAILED */,
15
+ "reverted" /* REVERTED */,
16
+ "timeout" /* TIMEOUT */,
17
+ "dormant" /* DORMANT */
18
+ ];
19
+ var STEP_INACTIVE_STATES = [
20
+ "not_started" /* NOT_STARTED */
21
+ ];
22
+ var TRANSACTION_OK_STATES = [
23
+ "done" /* DONE */
24
+ ];
25
+ var TRANSACTION_ERROR_STATES = [
26
+ "failed" /* FAILED */,
27
+ "reverted" /* REVERTED */
28
+ ];
29
+ var TRANSACTION_IN_PROGRESS_STATES = [
30
+ "invoking" /* INVOKING */,
31
+ "waiting_to_compensate" /* WAITING_TO_COMPENSATE */,
32
+ "compensating" /* COMPENSATING */
33
+ ];
34
+ var TRANSACTION_TERMINAL_STATES = [
35
+ "done" /* DONE */,
36
+ "failed" /* FAILED */,
37
+ "reverted" /* REVERTED */
38
+ ];
39
+ var TRANSACTION_ACTIVE_STATES = [
40
+ "invoking" /* INVOKING */,
41
+ "compensating" /* COMPENSATING */,
42
+ "waiting_to_compensate" /* WAITING_TO_COMPENSATE */
43
+ ];
44
+ var STEP_WAITING_STATES = [
45
+ "invoking" /* INVOKING */
46
+ // waiting_response comes through as invoking state in the step
47
+ ];
48
+
49
+ // src/routes/workflow-executions/utils.ts
50
+ var getTransactionStateColor = (state) => {
51
+ switch (state) {
52
+ case "done" /* DONE */:
53
+ return "green";
54
+ case "failed" /* FAILED */:
55
+ case "reverted" /* REVERTED */:
56
+ return "red";
57
+ case "invoking" /* INVOKING */:
58
+ return "blue";
59
+ case "compensating" /* COMPENSATING */:
60
+ case "waiting_to_compensate" /* WAITING_TO_COMPENSATE */:
61
+ return "orange";
62
+ case "not_started" /* NOT_STARTED */:
63
+ return "grey";
64
+ default:
65
+ return "grey";
66
+ }
67
+ };
68
+ var getTransactionState = (t, state) => {
69
+ switch (state) {
70
+ case "done" /* DONE */:
71
+ return t("workflowExecutions.state.done");
72
+ case "failed" /* FAILED */:
73
+ return t("workflowExecutions.state.failed");
74
+ case "reverted" /* REVERTED */:
75
+ return t("workflowExecutions.state.reverted");
76
+ case "invoking" /* INVOKING */:
77
+ return t("workflowExecutions.state.invoking");
78
+ case "waiting_to_compensate" /* WAITING_TO_COMPENSATE */:
79
+ return t("workflowExecutions.transaction.state.waitingToCompensate");
80
+ case "compensating" /* COMPENSATING */:
81
+ return t("workflowExecutions.state.compensating");
82
+ case "not_started" /* NOT_STARTED */:
83
+ return t("workflowExecutions.state.notStarted");
84
+ }
85
+ };
86
+ var isTerminalState = (state) => {
87
+ return [
88
+ "done" /* DONE */,
89
+ "failed" /* FAILED */,
90
+ "reverted" /* REVERTED */
91
+ ].includes(state);
92
+ };
93
+ var getFailedSteps = (execution) => {
94
+ const steps = execution?.execution?.steps || {};
95
+ const errors = execution?.context?.errors || [];
96
+ const failed = [];
97
+ for (const [stepId, step] of Object.entries(steps)) {
98
+ if (stepId === "_root") continue;
99
+ const invokeStatus = step?.invoke?.status;
100
+ if (invokeStatus === "permanent_failure" /* PERMANENT_FAILURE */) {
101
+ const stepError = errors.find((e) => e.action === stepId);
102
+ failed.push({ stepId, error: stepError });
103
+ }
104
+ }
105
+ return failed;
106
+ };
107
+ var getWaitingSteps = (execution) => {
108
+ const steps = execution?.execution?.steps || {};
109
+ const waiting = [];
110
+ for (const [stepId, step] of Object.entries(steps)) {
111
+ if (stepId === "_root") continue;
112
+ const invokeStatus = step?.invoke?.status;
113
+ if (invokeStatus === "waiting_response" /* WAITING */) {
114
+ waiting.push({ stepId });
115
+ }
116
+ }
117
+ return waiting;
118
+ };
119
+ var formatStepDuration = (startedAt, endedAt) => {
120
+ if (!startedAt || !endedAt) return "";
121
+ const ms = endedAt - startedAt;
122
+ if (ms < 1e3) return `${ms}ms`;
123
+ if (ms < 6e4) return `${(ms / 1e3).toFixed(1)}s`;
124
+ const minutes = Math.floor(ms / 6e4);
125
+ const seconds = Math.round(ms % 6e4 / 1e3);
126
+ return `${minutes}m ${seconds}s`;
127
+ };
128
+ var computeIdempotencyKey = (workflowId, transactionId, stepId, action = "invoke") => {
129
+ return `${workflowId}:${transactionId}:${stepId}:${action}`;
130
+ };
131
+ var mergeStepEvent = (current, event) => {
132
+ if (!current) return current;
133
+ const updated = JSON.parse(
134
+ JSON.stringify(current)
135
+ );
136
+ const execution = updated.workflow_execution;
137
+ if (!execution?.execution?.steps) return updated;
138
+ const stepId = event.step?.id;
139
+ if (!stepId) return updated;
140
+ const step = execution.execution.steps[stepId];
141
+ if (!step) return updated;
142
+ const eventType = event.event_type;
143
+ switch (eventType) {
144
+ case "onStepBegin":
145
+ if (step.invoke) step.invoke.state = "invoking" /* INVOKING */;
146
+ break;
147
+ case "onStepSuccess":
148
+ if (step.invoke) {
149
+ step.invoke.state = "done" /* DONE */;
150
+ step.invoke.status = "ok" /* OK */;
151
+ }
152
+ break;
153
+ case "onStepFailure":
154
+ if (step.invoke) {
155
+ step.invoke.state = "failed" /* FAILED */;
156
+ step.invoke.status = "permanent_failure" /* PERMANENT_FAILURE */;
157
+ }
158
+ break;
159
+ case "onStepAwaiting":
160
+ if (step.invoke) {
161
+ step.invoke.status = "waiting_response" /* WAITING */;
162
+ }
163
+ break;
164
+ case "onCompensateBegin":
165
+ if (step.compensate) {
166
+ step.compensate.state = "compensating" /* COMPENSATING */;
167
+ }
168
+ break;
169
+ case "onCompensateStepSuccess":
170
+ if (step.compensate) {
171
+ step.compensate.state = "reverted" /* REVERTED */;
172
+ }
173
+ break;
174
+ case "onCompensateStepFailure":
175
+ if (step.compensate) {
176
+ step.compensate.state = "failed" /* FAILED */;
177
+ }
178
+ break;
179
+ case "onStepSkipped":
180
+ if (step.invoke) {
181
+ step.invoke.state = "skipped" /* SKIPPED */;
182
+ }
183
+ break;
184
+ case "onFinish":
185
+ execution.state = "done" /* DONE */;
186
+ break;
187
+ case "onTimeout":
188
+ if (step.invoke) {
189
+ step.invoke.state = "timeout" /* TIMEOUT */;
190
+ }
191
+ break;
192
+ }
193
+ return updated;
194
+ };
195
+
196
+ export {
197
+ STEP_IN_PROGRESS_STATES,
198
+ STEP_SKIPPED_STATES,
199
+ STEP_OK_STATES,
200
+ STEP_ERROR_STATES,
201
+ STEP_INACTIVE_STATES,
202
+ TRANSACTION_ERROR_STATES,
203
+ TRANSACTION_IN_PROGRESS_STATES,
204
+ TRANSACTION_ACTIVE_STATES,
205
+ getTransactionStateColor,
206
+ getTransactionState,
207
+ isTerminalState,
208
+ getFailedSteps,
209
+ getWaitingSteps,
210
+ formatStepDuration,
211
+ computeIdempotencyKey,
212
+ mergeStepEvent
213
+ };
@@ -6,7 +6,7 @@ import {
6
6
  } from "./chunk-774WSTCC.mjs";
7
7
  import {
8
8
  sdk
9
- } from "./chunk-DTY37DDZ.mjs";
9
+ } from "./chunk-YKIWIMJX.mjs";
10
10
 
11
11
  // src/hooks/api/api-keys.tsx
12
12
  import {
@@ -6,7 +6,7 @@ import {
6
6
  } from "./chunk-774WSTCC.mjs";
7
7
  import {
8
8
  sdk
9
- } from "./chunk-DTY37DDZ.mjs";
9
+ } from "./chunk-YKIWIMJX.mjs";
10
10
 
11
11
  // src/hooks/api/invites.tsx
12
12
  import {
@@ -243,11 +243,6 @@ var RouteDrawer = Object.assign(Root, {
243
243
  Form: Form2
244
244
  });
245
245
 
246
- // src/components/modals/route-focus-modal/route-focus-modal.tsx
247
- import { FocusModal, clx as clx2 } from "@acmekit/ui";
248
- import { useEffect as useEffect2, useState as useState4 } from "react";
249
- import { useNavigate as useNavigate3 } from "react-router-dom";
250
-
251
246
  // src/components/modals/route-modal-provider/use-route-modal.tsx
252
247
  import { useContext as useContext2 } from "react";
253
248
  var useRouteModal = () => {
@@ -259,6 +254,9 @@ var useRouteModal = () => {
259
254
  };
260
255
 
261
256
  // src/components/modals/route-focus-modal/route-focus-modal.tsx
257
+ import { FocusModal, clx as clx2 } from "@acmekit/ui";
258
+ import { useEffect as useEffect2, useState as useState4 } from "react";
259
+ import { useNavigate as useNavigate3 } from "react-router-dom";
262
260
  import { jsx as jsx5 } from "react/jsx-runtime";
263
261
  var Root2 = ({ prev = "..", children }) => {
264
262
  const navigate = useNavigate3();
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-774WSTCC.mjs";
4
4
  import {
5
5
  sdk
6
- } from "./chunk-DTY37DDZ.mjs";
6
+ } from "./chunk-YKIWIMJX.mjs";
7
7
 
8
8
  // src/hooks/api/locales.tsx
9
9
  import { useQuery } from "@tanstack/react-query";
@@ -6,7 +6,7 @@ import {
6
6
  } from "./chunk-774WSTCC.mjs";
7
7
  import {
8
8
  sdk
9
- } from "./chunk-DTY37DDZ.mjs";
9
+ } from "./chunk-YKIWIMJX.mjs";
10
10
 
11
11
  // src/hooks/api/translations.tsx
12
12
  import {
@@ -16,5 +16,6 @@ if (typeof window !== "undefined") {
16
16
  }
17
17
 
18
18
  export {
19
+ backendUrl,
19
20
  sdk
20
21
  };
package/dist/en.json CHANGED
@@ -2975,7 +2975,10 @@
2975
2975
  "stepsCompletedLabel_one": "{{completed}} of {{count}} step",
2976
2976
  "stepsCompletedLabel_other": "{{completed}} of {{count}} steps",
2977
2977
  "list": {
2978
- "noRecordsMessage": "No workflows have been executed, yet."
2978
+ "noRecordsMessage": "No workflows have been executed, yet.",
2979
+ "noFilterResults": "No executions match your current filters.",
2980
+ "clearFilters": "Clear filters",
2981
+ "viewAll": "View all executions"
2979
2982
  },
2980
2983
  "history": {
2981
2984
  "sectionTitle": "History",
@@ -2988,7 +2991,11 @@
2988
2991
  "outputLabel": "Output",
2989
2992
  "compensateInputLabel": "Compensate input",
2990
2993
  "revertedLabel": "Reverted",
2991
- "errorLabel": "Error"
2994
+ "errorLabel": "Error",
2995
+ "idempotencyKeyLabel": "Idempotency key",
2996
+ "showCompensation": "Show compensation",
2997
+ "showInvoke": "Show invoke",
2998
+ "retryFromStep": "Retry from this step"
2992
2999
  },
2993
3000
  "state": {
2994
3001
  "done": "Done",
@@ -2996,7 +3003,8 @@
2996
3003
  "reverted": "Reverted",
2997
3004
  "invoking": "Invoking",
2998
3005
  "compensating": "Compensating",
2999
- "notStarted": "Not started"
3006
+ "notStarted": "Not started",
3007
+ "waitingResponse": "Waiting for response"
3000
3008
  },
3001
3009
  "transaction": {
3002
3010
  "state": {
@@ -3010,6 +3018,127 @@
3010
3018
  "dormant": "Dormant",
3011
3019
  "timeout": "Timeout"
3012
3020
  }
3021
+ },
3022
+ "actions": {
3023
+ "retry": "Retry",
3024
+ "retryWithSameInput": "Retry with same input",
3025
+ "retryWithNewInput": "Retry with new input...",
3026
+ "cancel": "Cancel execution",
3027
+ "cancelConfirmTitle": "Cancel workflow execution?",
3028
+ "cancelConfirmDescription": "This will stop {{workflow_id}} and run compensation for all completed steps.",
3029
+ "cancelReasonLabel": "Reason (optional)",
3030
+ "cancelSuccess": "Workflow execution cancelled successfully",
3031
+ "retrySuccess": "Workflow re-run started successfully",
3032
+ "retryStepSuccess": "Step retry initiated successfully",
3033
+ "runWorkflow": "Run workflow",
3034
+ "exportJson": "Export as JSON",
3035
+ "exportCsv": "Export as CSV",
3036
+ "completeStep": "Complete step",
3037
+ "markAsSuccessful": "Mark as successful",
3038
+ "markAsFailed": "Mark as failed",
3039
+ "viewDetails": "View details"
3040
+ },
3041
+ "rerun": {
3042
+ "title": "Re-run workflow",
3043
+ "inputLabel": "Input (JSON)",
3044
+ "transactionIdLabel": "Transaction ID (optional)",
3045
+ "submit": "Run workflow",
3046
+ "autoGenerated": "auto-generated",
3047
+ "success": "Workflow re-run started successfully"
3048
+ },
3049
+ "error": {
3050
+ "failureAtStep": "Failure at step: {{step}}",
3051
+ "jumpToStep": "Jump to step",
3052
+ "attemptInfo": "Attempt {{attempt}} of {{maxAttempts}}",
3053
+ "failedAt": "Failed at {{time}}"
3054
+ },
3055
+ "filters": {
3056
+ "savedViews": "Saved views",
3057
+ "saveCurrentFilter": "Save current filter",
3058
+ "savedViewName": "View name",
3059
+ "autoRefresh": "Auto-refresh",
3060
+ "refreshNow": "Refresh now",
3061
+ "everyNSeconds": "Every {{n}}s",
3062
+ "off": "Off",
3063
+ "hasErrors": "Has errors",
3064
+ "all": "All",
3065
+ "allExecutions": "All executions",
3066
+ "running": "Running",
3067
+ "failedToday": "Failed today"
3068
+ },
3069
+ "definitions": {
3070
+ "domain": "Definitions",
3071
+ "subtitle": "Browse all registered workflow definitions.",
3072
+ "name": "Name",
3073
+ "steps": "Steps",
3074
+ "stepCount": "Steps",
3075
+ "handlers": "Handlers",
3076
+ "lastRun": "Last run",
3077
+ "nextRun": "Next run",
3078
+ "scheduled": "Scheduled",
3079
+ "runThisWorkflow": "Run this workflow",
3080
+ "noRecordsMessage": "No workflow definitions found."
3081
+ },
3082
+ "scheduled": {
3083
+ "domain": "Scheduled",
3084
+ "subtitle": "View and manage scheduled workflow executions.",
3085
+ "schedule": "Schedule",
3086
+ "nextRun": "Next run",
3087
+ "lastRun": "Last run",
3088
+ "pause": "Pause",
3089
+ "resume": "Resume",
3090
+ "runNow": "Run now",
3091
+ "noRecordsMessage": "No scheduled workflows found."
3092
+ },
3093
+ "analytics": {
3094
+ "domain": "Analytics",
3095
+ "subtitle": "Workflow execution metrics and trends.",
3096
+ "executions24h": "Executions (24h)",
3097
+ "successRate": "Success rate",
3098
+ "avgDuration": "Avg duration",
3099
+ "runningNow": "Running now",
3100
+ "executionsOverTime": "Executions over time",
3101
+ "perWorkflowBreakdown": "Per-workflow breakdown",
3102
+ "slowestSteps": "Slowest steps",
3103
+ "noDataMessage": "No metrics data available yet."
3104
+ },
3105
+ "asyncStep": {
3106
+ "waitingBanner": "Waiting for external response",
3107
+ "waitingDescription": "Step {{step}} is awaiting a webhook callback.",
3108
+ "idempotencyKey": "Idempotency key",
3109
+ "completeTitle": "Complete step: {{step}}",
3110
+ "responsePayload": "Response payload (JSON)",
3111
+ "expiresIn": "Expires in {{time}}",
3112
+ "stepLabel": "Step",
3113
+ "outcomeLabel": "Outcome",
3114
+ "success": "Success",
3115
+ "failure": "Failure",
3116
+ "markSuccess": "Mark as success",
3117
+ "markFailure": "Mark as failure",
3118
+ "completedSuccess": "Step completed successfully"
3119
+ },
3120
+ "tabs": {
3121
+ "executions": "Executions",
3122
+ "definitions": "Definitions",
3123
+ "scheduled": "Scheduled",
3124
+ "analytics": "Analytics"
3125
+ },
3126
+ "payload": {
3127
+ "inputPayload": "Input payload",
3128
+ "fullCheckpoint": "Full checkpoint",
3129
+ "stepOutputs": "Step outputs",
3130
+ "errors": "Errors",
3131
+ "copyAll": "Copy all",
3132
+ "downloadJson": "Download as JSON"
3133
+ },
3134
+ "codeSnippet": {
3135
+ "curl": "cURL",
3136
+ "sdk": "SDK",
3137
+ "replicateCall": "Replicate this call"
3138
+ },
3139
+ "compare": {
3140
+ "title": "Compare executions",
3141
+ "selectExecution": "Select execution to compare"
3013
3142
  }
3014
3143
  },
3015
3144
  "shippingOptionTypes": {
@@ -7,16 +7,16 @@ import {
7
7
  } from "./chunk-TCNCAWYD.mjs";
8
8
  import {
9
9
  useSignUpWithEmailPass
10
- } from "./chunk-GBFVWROS.mjs";
10
+ } from "./chunk-5IEHCYJO.mjs";
11
11
  import {
12
12
  useAcceptInvite
13
- } from "./chunk-XIM7X4FB.mjs";
13
+ } from "./chunk-SYACY6AL.mjs";
14
14
  import {
15
15
  Form
16
16
  } from "./chunk-ND3ODI36.mjs";
17
17
  import "./chunk-FXYH54JP.mjs";
18
18
  import "./chunk-774WSTCC.mjs";
19
- import "./chunk-DTY37DDZ.mjs";
19
+ import "./chunk-YKIWIMJX.mjs";
20
20
  import "./chunk-QZ7TP4HQ.mjs";
21
21
 
22
22
  // src/routes/invite/invite.tsx
@@ -11,24 +11,24 @@ import {
11
11
  import {
12
12
  useCloudAuthEnabled,
13
13
  useCreateCloudAuthUser
14
- } from "./chunk-ST2YB7JN.mjs";
14
+ } from "./chunk-WLRJXEKL.mjs";
15
15
  import {
16
16
  useSignInWithEmailPass
17
- } from "./chunk-GBFVWROS.mjs";
18
- import "./chunk-EFRMWHRX.mjs";
19
- import "./chunk-LKWTBYYC.mjs";
20
- import "./chunk-ULSPL3DR.mjs";
21
- import "./chunk-DN3MIYQH.mjs";
22
- import "./chunk-XIM7X4FB.mjs";
17
+ } from "./chunk-5IEHCYJO.mjs";
18
+ import "./chunk-XIP35KXF.mjs";
19
+ import "./chunk-PFZQYK7R.mjs";
20
+ import "./chunk-A7ULKHDE.mjs";
21
+ import "./chunk-FKTMBR44.mjs";
22
+ import "./chunk-SYACY6AL.mjs";
23
23
  import {
24
24
  Form
25
25
  } from "./chunk-ND3ODI36.mjs";
26
- import "./chunk-YRWSG3YM.mjs";
26
+ import "./chunk-HHPPTD3B.mjs";
27
27
  import "./chunk-FXYH54JP.mjs";
28
28
  import "./chunk-774WSTCC.mjs";
29
29
  import {
30
30
  sdk
31
- } from "./chunk-DTY37DDZ.mjs";
31
+ } from "./chunk-YKIWIMJX.mjs";
32
32
  import "./chunk-QZ7TP4HQ.mjs";
33
33
 
34
34
  // src/routes/login/login.tsx
@@ -3,7 +3,7 @@ import {
3
3
  } from "./chunk-535OVBXR.mjs";
4
4
  import {
5
5
  SingleColumnPage
6
- } from "./chunk-22YYMH6M.mjs";
6
+ } from "./chunk-RISX76YT.mjs";
7
7
  import {
8
8
  useExtension
9
9
  } from "./chunk-C5P5PL3E.mjs";
@@ -17,10 +17,10 @@ import "./chunk-OAHCJFG3.mjs";
17
17
  import "./chunk-S4DMV3ZT.mjs";
18
18
  import {
19
19
  useMe
20
- } from "./chunk-YRWSG3YM.mjs";
20
+ } from "./chunk-HHPPTD3B.mjs";
21
21
  import "./chunk-FXYH54JP.mjs";
22
22
  import "./chunk-774WSTCC.mjs";
23
- import "./chunk-DTY37DDZ.mjs";
23
+ import "./chunk-YKIWIMJX.mjs";
24
24
  import "./chunk-QZ7TP4HQ.mjs";
25
25
 
26
26
  // src/routes/profile/profile-detail/components/profile-general-section/profile-general-section.tsx
@@ -9,17 +9,17 @@ import {
9
9
  KeyboundForm,
10
10
  RouteDrawer,
11
11
  useRouteModal
12
- } from "./chunk-2U3RK3JG.mjs";
12
+ } from "./chunk-VEI6HW6L.mjs";
13
13
  import {
14
14
  Form
15
15
  } from "./chunk-ND3ODI36.mjs";
16
16
  import {
17
17
  useMe,
18
18
  useUpdateUser
19
- } from "./chunk-YRWSG3YM.mjs";
19
+ } from "./chunk-HHPPTD3B.mjs";
20
20
  import "./chunk-FXYH54JP.mjs";
21
21
  import "./chunk-774WSTCC.mjs";
22
- import "./chunk-DTY37DDZ.mjs";
22
+ import "./chunk-YKIWIMJX.mjs";
23
23
  import "./chunk-QZ7TP4HQ.mjs";
24
24
 
25
25
  // src/routes/profile/profile-edit/profile-edit.tsx
@@ -7,11 +7,11 @@ import "./chunk-C5P5PL3E.mjs";
7
7
  import {
8
8
  useResetPasswordForEmailPass,
9
9
  useUpdateProviderForEmailPass
10
- } from "./chunk-GBFVWROS.mjs";
10
+ } from "./chunk-5IEHCYJO.mjs";
11
11
  import {
12
12
  Form
13
13
  } from "./chunk-ND3ODI36.mjs";
14
- import "./chunk-DTY37DDZ.mjs";
14
+ import "./chunk-YKIWIMJX.mjs";
15
15
  import "./chunk-QZ7TP4HQ.mjs";
16
16
 
17
17
  // src/routes/reset-password/reset-password.tsx
@@ -1,17 +1,17 @@
1
1
  import {
2
2
  useBatchTranslationSettings,
3
3
  useTranslationSettings
4
- } from "./chunk-ULSPL3DR.mjs";
4
+ } from "./chunk-XIP35KXF.mjs";
5
5
  import "./chunk-IUCDCPJU.mjs";
6
6
  import {
7
7
  KeyboundForm,
8
8
  RouteDrawer,
9
9
  useRouteModal
10
- } from "./chunk-2U3RK3JG.mjs";
10
+ } from "./chunk-VEI6HW6L.mjs";
11
11
  import "./chunk-ND3ODI36.mjs";
12
12
  import "./chunk-FXYH54JP.mjs";
13
13
  import "./chunk-774WSTCC.mjs";
14
- import "./chunk-DTY37DDZ.mjs";
14
+ import "./chunk-YKIWIMJX.mjs";
15
15
  import "./chunk-QZ7TP4HQ.mjs";
16
16
 
17
17
  // src/routes/translations/settings/settings.tsx
@@ -3,26 +3,26 @@ import {
3
3
  } from "./chunk-G2VJOHHV.mjs";
4
4
  import {
5
5
  TwoColumnPage
6
- } from "./chunk-22YYMH6M.mjs";
6
+ } from "./chunk-RISX76YT.mjs";
7
7
  import {
8
8
  useLocales
9
- } from "./chunk-ST2YB7JN.mjs";
10
- import "./chunk-GBFVWROS.mjs";
11
- import "./chunk-EFRMWHRX.mjs";
12
- import "./chunk-LKWTBYYC.mjs";
9
+ } from "./chunk-WLRJXEKL.mjs";
10
+ import "./chunk-5IEHCYJO.mjs";
13
11
  import {
14
12
  useTranslationSettings,
15
13
  useTranslationStatistics
16
- } from "./chunk-ULSPL3DR.mjs";
17
- import "./chunk-DN3MIYQH.mjs";
18
- import "./chunk-XIM7X4FB.mjs";
14
+ } from "./chunk-XIP35KXF.mjs";
15
+ import "./chunk-PFZQYK7R.mjs";
16
+ import "./chunk-A7ULKHDE.mjs";
17
+ import "./chunk-FKTMBR44.mjs";
18
+ import "./chunk-SYACY6AL.mjs";
19
19
  import {
20
20
  TwoColumnPageSkeleton
21
21
  } from "./chunk-ITNQKZQQ.mjs";
22
- import "./chunk-YRWSG3YM.mjs";
22
+ import "./chunk-HHPPTD3B.mjs";
23
23
  import "./chunk-FXYH54JP.mjs";
24
24
  import "./chunk-774WSTCC.mjs";
25
- import "./chunk-DTY37DDZ.mjs";
25
+ import "./chunk-YKIWIMJX.mjs";
26
26
  import "./chunk-QZ7TP4HQ.mjs";
27
27
 
28
28
  // src/routes/translations/translation-list/translation-list.tsx
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  useFeatureFlag
3
- } from "./chunk-DQCEH3X2.mjs";
3
+ } from "./chunk-7F3CWXUH.mjs";
4
4
  import {
5
5
  useLocales
6
- } from "./chunk-ST2YB7JN.mjs";
7
- import "./chunk-GBFVWROS.mjs";
8
- import "./chunk-EFRMWHRX.mjs";
9
- import "./chunk-LKWTBYYC.mjs";
6
+ } from "./chunk-WLRJXEKL.mjs";
7
+ import "./chunk-5IEHCYJO.mjs";
10
8
  import {
11
9
  useBatchTranslations,
12
10
  useReferenceTranslations,
13
11
  useTranslationSettings
14
- } from "./chunk-ULSPL3DR.mjs";
15
- import "./chunk-DN3MIYQH.mjs";
16
- import "./chunk-XIM7X4FB.mjs";
12
+ } from "./chunk-XIP35KXF.mjs";
13
+ import "./chunk-PFZQYK7R.mjs";
14
+ import "./chunk-A7ULKHDE.mjs";
15
+ import "./chunk-FKTMBR44.mjs";
16
+ import "./chunk-SYACY6AL.mjs";
17
17
  import {
18
18
  Skeleton
19
19
  } from "./chunk-ITNQKZQQ.mjs";
@@ -28,12 +28,12 @@ import {
28
28
  KeyboundForm,
29
29
  RouteFocusModal,
30
30
  useRouteModal
31
- } from "./chunk-2U3RK3JG.mjs";
31
+ } from "./chunk-VEI6HW6L.mjs";
32
32
  import "./chunk-ND3ODI36.mjs";
33
- import "./chunk-YRWSG3YM.mjs";
33
+ import "./chunk-HHPPTD3B.mjs";
34
34
  import "./chunk-FXYH54JP.mjs";
35
35
  import "./chunk-774WSTCC.mjs";
36
- import "./chunk-DTY37DDZ.mjs";
36
+ import "./chunk-YKIWIMJX.mjs";
37
37
  import {
38
38
  __publicField
39
39
  } from "./chunk-QZ7TP4HQ.mjs";