@open-mercato/core 0.6.5-develop.4498.1.55dc06a57c → 0.6.5-develop.4534.1.b459babe6d

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 (105) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/dist/generated/entities/step_instance/index.js +2 -0
  3. package/dist/generated/entities/step_instance/index.js.map +2 -2
  4. package/dist/generated/entities/user_task/index.js +2 -0
  5. package/dist/generated/entities/user_task/index.js.map +2 -2
  6. package/dist/generated/entities/workflow_branch_instance/index.js +39 -0
  7. package/dist/generated/entities/workflow_branch_instance/index.js.map +7 -0
  8. package/dist/generated/entities/workflow_event/index.js +2 -0
  9. package/dist/generated/entities/workflow_event/index.js.map +2 -2
  10. package/dist/generated/entities/workflow_instance/index.js +2 -0
  11. package/dist/generated/entities/workflow_instance/index.js.map +2 -2
  12. package/dist/generated/entities.ids.generated.js +1 -0
  13. package/dist/generated/entities.ids.generated.js.map +2 -2
  14. package/dist/generated/entity-fields-registry.js +24 -0
  15. package/dist/generated/entity-fields-registry.js.map +2 -2
  16. package/dist/helpers/integration/currenciesFixtures.js +51 -1
  17. package/dist/helpers/integration/currenciesFixtures.js.map +2 -2
  18. package/dist/modules/progress/api/jobs/[id]/route.js +7 -1
  19. package/dist/modules/progress/api/jobs/[id]/route.js.map +2 -2
  20. package/dist/modules/shipping_carriers/api/cancel/route.js +2 -2
  21. package/dist/modules/shipping_carriers/api/cancel/route.js.map +2 -2
  22. package/dist/modules/shipping_carriers/lib/status-sync.js +8 -1
  23. package/dist/modules/shipping_carriers/lib/status-sync.js.map +2 -2
  24. package/dist/modules/workflows/components/NodeEditDialog.js +3 -1
  25. package/dist/modules/workflows/components/NodeEditDialog.js.map +2 -2
  26. package/dist/modules/workflows/components/WorkflowGraphImpl.js +4 -2
  27. package/dist/modules/workflows/components/WorkflowGraphImpl.js.map +2 -2
  28. package/dist/modules/workflows/components/nodes/ParallelForkNode.js +49 -0
  29. package/dist/modules/workflows/components/nodes/ParallelForkNode.js.map +7 -0
  30. package/dist/modules/workflows/components/nodes/ParallelJoinNode.js +49 -0
  31. package/dist/modules/workflows/components/nodes/ParallelJoinNode.js.map +7 -0
  32. package/dist/modules/workflows/components/nodes/index.js +4 -0
  33. package/dist/modules/workflows/components/nodes/index.js.map +2 -2
  34. package/dist/modules/workflows/data/entities.js +81 -0
  35. package/dist/modules/workflows/data/entities.js.map +2 -2
  36. package/dist/modules/workflows/data/validators.js +146 -1
  37. package/dist/modules/workflows/data/validators.js.map +2 -2
  38. package/dist/modules/workflows/events.js +7 -1
  39. package/dist/modules/workflows/events.js.map +2 -2
  40. package/dist/modules/workflows/lib/activity-executor.js +4 -2
  41. package/dist/modules/workflows/lib/activity-executor.js.map +2 -2
  42. package/dist/modules/workflows/lib/activity-queue-types.js.map +2 -2
  43. package/dist/modules/workflows/lib/event-logger.js +2 -0
  44. package/dist/modules/workflows/lib/event-logger.js.map +2 -2
  45. package/dist/modules/workflows/lib/execution-token.js +98 -0
  46. package/dist/modules/workflows/lib/execution-token.js.map +7 -0
  47. package/dist/modules/workflows/lib/node-type-icons.js +14 -5
  48. package/dist/modules/workflows/lib/node-type-icons.js.map +2 -2
  49. package/dist/modules/workflows/lib/parallel-handler.js +364 -0
  50. package/dist/modules/workflows/lib/parallel-handler.js.map +7 -0
  51. package/dist/modules/workflows/lib/signal-handler.js +63 -1
  52. package/dist/modules/workflows/lib/signal-handler.js.map +2 -2
  53. package/dist/modules/workflows/lib/step-handler.js +74 -30
  54. package/dist/modules/workflows/lib/step-handler.js.map +2 -2
  55. package/dist/modules/workflows/lib/task-handler.js +26 -0
  56. package/dist/modules/workflows/lib/task-handler.js.map +2 -2
  57. package/dist/modules/workflows/lib/timer-handler.js +26 -1
  58. package/dist/modules/workflows/lib/timer-handler.js.map +2 -2
  59. package/dist/modules/workflows/lib/transition-handler.js +33 -21
  60. package/dist/modules/workflows/lib/transition-handler.js.map +2 -2
  61. package/dist/modules/workflows/lib/workflow-executor.js +39 -1
  62. package/dist/modules/workflows/lib/workflow-executor.js.map +2 -2
  63. package/dist/modules/workflows/migrations/Migration20260602120000.js +24 -0
  64. package/dist/modules/workflows/migrations/Migration20260602120000.js.map +7 -0
  65. package/dist/modules/workflows/workers/workflow-activities.worker.js +8 -4
  66. package/dist/modules/workflows/workers/workflow-activities.worker.js.map +2 -2
  67. package/generated/entities/step_instance/index.ts +1 -0
  68. package/generated/entities/user_task/index.ts +1 -0
  69. package/generated/entities/workflow_branch_instance/index.ts +18 -0
  70. package/generated/entities/workflow_event/index.ts +1 -0
  71. package/generated/entities/workflow_instance/index.ts +1 -0
  72. package/generated/entities.ids.generated.ts +1 -0
  73. package/generated/entity-fields-registry.ts +24 -0
  74. package/package.json +7 -7
  75. package/src/helpers/integration/currenciesFixtures.ts +59 -0
  76. package/src/modules/progress/api/jobs/[id]/route.ts +7 -0
  77. package/src/modules/shipping_carriers/api/cancel/route.ts +2 -2
  78. package/src/modules/shipping_carriers/lib/status-sync.ts +19 -0
  79. package/src/modules/workflows/components/NodeEditDialog.tsx +2 -0
  80. package/src/modules/workflows/components/WorkflowGraphImpl.tsx +3 -1
  81. package/src/modules/workflows/components/nodes/ParallelForkNode.tsx +66 -0
  82. package/src/modules/workflows/components/nodes/ParallelJoinNode.tsx +66 -0
  83. package/src/modules/workflows/components/nodes/index.ts +6 -0
  84. package/src/modules/workflows/data/entities.ts +109 -0
  85. package/src/modules/workflows/data/validators.ts +223 -0
  86. package/src/modules/workflows/events.ts +7 -0
  87. package/src/modules/workflows/i18n/de.json +12 -0
  88. package/src/modules/workflows/i18n/en.json +12 -0
  89. package/src/modules/workflows/i18n/es.json +12 -0
  90. package/src/modules/workflows/i18n/pl.json +12 -0
  91. package/src/modules/workflows/lib/activity-executor.ts +8 -2
  92. package/src/modules/workflows/lib/activity-queue-types.ts +3 -0
  93. package/src/modules/workflows/lib/event-logger.ts +3 -0
  94. package/src/modules/workflows/lib/execution-token.ts +166 -0
  95. package/src/modules/workflows/lib/node-type-icons.ts +11 -2
  96. package/src/modules/workflows/lib/parallel-handler.ts +575 -0
  97. package/src/modules/workflows/lib/signal-handler.ts +72 -1
  98. package/src/modules/workflows/lib/step-handler.ts +94 -34
  99. package/src/modules/workflows/lib/task-handler.ts +32 -0
  100. package/src/modules/workflows/lib/timer-handler.ts +30 -1
  101. package/src/modules/workflows/lib/transition-handler.ts +56 -24
  102. package/src/modules/workflows/lib/workflow-executor.ts +53 -1
  103. package/src/modules/workflows/migrations/.snapshot-open-mercato.json +263 -0
  104. package/src/modules/workflows/migrations/Migration20260602120000.ts +25 -0
  105. package/src/modules/workflows/workers/workflow-activities.worker.ts +9 -4
@@ -1,4 +1,4 @@
1
- [build:core] found 2943 entry points
1
+ [build:core] found 2994 entry points
2
2
  [build:core] built successfully
3
- [build:core:generated] found 184 entry points
3
+ [build:core:generated] found 185 entry points
4
4
  [build:core:generated] built successfully
@@ -1,5 +1,6 @@
1
1
  const id = "id";
2
2
  const workflow_instance_id = "workflow_instance_id";
3
+ const branch_instance_id = "branch_instance_id";
3
4
  const step_id = "step_id";
4
5
  const step_name = "step_name";
5
6
  const step_type = "step_type";
@@ -16,6 +17,7 @@ const organization_id = "organization_id";
16
17
  const created_at = "created_at";
17
18
  const updated_at = "updated_at";
18
19
  export {
20
+ branch_instance_id,
19
21
  created_at,
20
22
  entered_at,
21
23
  error_data,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../generated/entities/step_instance/index.ts"],
4
- "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const step_id = \"step_id\";\nexport const step_name = \"step_name\";\nexport const step_type = \"step_type\";\nexport const status = \"status\";\nexport const input_data = \"input_data\";\nexport const output_data = \"output_data\";\nexport const error_data = \"error_data\";\nexport const entered_at = \"entered_at\";\nexport const exited_at = \"exited_at\";\nexport const execution_time_ms = \"execution_time_ms\";\nexport const retry_count = \"retry_count\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\n"],
5
- "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,UAAU;AAChB,MAAM,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,SAAS;AACf,MAAM,aAAa;AACnB,MAAM,cAAc;AACpB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,YAAY;AAClB,MAAM,oBAAoB;AAC1B,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;",
4
+ "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const branch_instance_id = \"branch_instance_id\";\nexport const step_id = \"step_id\";\nexport const step_name = \"step_name\";\nexport const step_type = \"step_type\";\nexport const status = \"status\";\nexport const input_data = \"input_data\";\nexport const output_data = \"output_data\";\nexport const error_data = \"error_data\";\nexport const entered_at = \"entered_at\";\nexport const exited_at = \"exited_at\";\nexport const execution_time_ms = \"execution_time_ms\";\nexport const retry_count = \"retry_count\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\n"],
5
+ "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,qBAAqB;AAC3B,MAAM,UAAU;AAChB,MAAM,YAAY;AAClB,MAAM,YAAY;AAClB,MAAM,SAAS;AACf,MAAM,aAAa;AACnB,MAAM,cAAc;AACpB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,YAAY;AAClB,MAAM,oBAAoB;AAC1B,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
@@ -1,6 +1,7 @@
1
1
  const id = "id";
2
2
  const workflow_instance_id = "workflow_instance_id";
3
3
  const step_instance_id = "step_instance_id";
4
+ const branch_instance_id = "branch_instance_id";
4
5
  const task_name = "task_name";
5
6
  const description = "description";
6
7
  const status = "status";
@@ -23,6 +24,7 @@ const updated_at = "updated_at";
23
24
  export {
24
25
  assigned_to,
25
26
  assigned_to_roles,
27
+ branch_instance_id,
26
28
  claimed_at,
27
29
  claimed_by,
28
30
  comments,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../generated/entities/user_task/index.ts"],
4
- "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const step_instance_id = \"step_instance_id\";\nexport const task_name = \"task_name\";\nexport const description = \"description\";\nexport const status = \"status\";\nexport const form_schema = \"form_schema\";\nexport const form_data = \"form_data\";\nexport const assigned_to = \"assigned_to\";\nexport const assigned_to_roles = \"assigned_to_roles\";\nexport const claimed_by = \"claimed_by\";\nexport const claimed_at = \"claimed_at\";\nexport const due_date = \"due_date\";\nexport const escalated_at = \"escalated_at\";\nexport const escalated_to = \"escalated_to\";\nexport const completed_by = \"completed_by\";\nexport const completed_at = \"completed_at\";\nexport const comments = \"comments\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\n"],
5
- "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,mBAAmB;AACzB,MAAM,YAAY;AAClB,MAAM,cAAc;AACpB,MAAM,SAAS;AACf,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,cAAc;AACpB,MAAM,oBAAoB;AAC1B,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,WAAW;AACjB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,WAAW;AACjB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;",
4
+ "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const step_instance_id = \"step_instance_id\";\nexport const branch_instance_id = \"branch_instance_id\";\nexport const task_name = \"task_name\";\nexport const description = \"description\";\nexport const status = \"status\";\nexport const form_schema = \"form_schema\";\nexport const form_data = \"form_data\";\nexport const assigned_to = \"assigned_to\";\nexport const assigned_to_roles = \"assigned_to_roles\";\nexport const claimed_by = \"claimed_by\";\nexport const claimed_at = \"claimed_at\";\nexport const due_date = \"due_date\";\nexport const escalated_at = \"escalated_at\";\nexport const escalated_to = \"escalated_to\";\nexport const completed_by = \"completed_by\";\nexport const completed_at = \"completed_at\";\nexport const comments = \"comments\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\n"],
5
+ "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,mBAAmB;AACzB,MAAM,qBAAqB;AAC3B,MAAM,YAAY;AAClB,MAAM,cAAc;AACpB,MAAM,SAAS;AACf,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,cAAc;AACpB,MAAM,oBAAoB;AAC1B,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,WAAW;AACjB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,WAAW;AACjB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
@@ -0,0 +1,39 @@
1
+ const id = "id";
2
+ const workflow_instance_id = "workflow_instance_id";
3
+ const fork_step_id = "fork_step_id";
4
+ const join_step_id = "join_step_id";
5
+ const branch_key = "branch_key";
6
+ const parent_branch_id = "parent_branch_id";
7
+ const current_step_id = "current_step_id";
8
+ const status = "status";
9
+ const context_namespace = "context_namespace";
10
+ const pending_transition = "pending_transition";
11
+ const error_message = "error_message";
12
+ const error_details = "error_details";
13
+ const started_at = "started_at";
14
+ const completed_at = "completed_at";
15
+ const tenant_id = "tenant_id";
16
+ const organization_id = "organization_id";
17
+ const created_at = "created_at";
18
+ const updated_at = "updated_at";
19
+ export {
20
+ branch_key,
21
+ completed_at,
22
+ context_namespace,
23
+ created_at,
24
+ current_step_id,
25
+ error_details,
26
+ error_message,
27
+ fork_step_id,
28
+ id,
29
+ join_step_id,
30
+ organization_id,
31
+ parent_branch_id,
32
+ pending_transition,
33
+ started_at,
34
+ status,
35
+ tenant_id,
36
+ updated_at,
37
+ workflow_instance_id
38
+ };
39
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../../generated/entities/workflow_branch_instance/index.ts"],
4
+ "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const fork_step_id = \"fork_step_id\";\nexport const join_step_id = \"join_step_id\";\nexport const branch_key = \"branch_key\";\nexport const parent_branch_id = \"parent_branch_id\";\nexport const current_step_id = \"current_step_id\";\nexport const status = \"status\";\nexport const context_namespace = \"context_namespace\";\nexport const pending_transition = \"pending_transition\";\nexport const error_message = \"error_message\";\nexport const error_details = \"error_details\";\nexport const started_at = \"started_at\";\nexport const completed_at = \"completed_at\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\n"],
5
+ "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,eAAe;AACrB,MAAM,eAAe;AACrB,MAAM,aAAa;AACnB,MAAM,mBAAmB;AACzB,MAAM,kBAAkB;AACxB,MAAM,SAAS;AACf,MAAM,oBAAoB;AAC1B,MAAM,qBAAqB;AAC3B,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,aAAa;AACnB,MAAM,eAAe;AACrB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;",
6
+ "names": []
7
+ }
@@ -1,6 +1,7 @@
1
1
  const id = "id";
2
2
  const workflow_instance_id = "workflow_instance_id";
3
3
  const step_instance_id = "step_instance_id";
4
+ const branch_instance_id = "branch_instance_id";
4
5
  const event_type = "event_type";
5
6
  const event_data = "event_data";
6
7
  const occurred_at = "occurred_at";
@@ -8,6 +9,7 @@ const user_id = "user_id";
8
9
  const tenant_id = "tenant_id";
9
10
  const organization_id = "organization_id";
10
11
  export {
12
+ branch_instance_id,
11
13
  event_data,
12
14
  event_type,
13
15
  id,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../generated/entities/workflow_event/index.ts"],
4
- "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const step_instance_id = \"step_instance_id\";\nexport const event_type = \"event_type\";\nexport const event_data = \"event_data\";\nexport const occurred_at = \"occurred_at\";\nexport const user_id = \"user_id\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\n"],
5
- "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,mBAAmB;AACzB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,cAAc;AACpB,MAAM,UAAU;AAChB,MAAM,YAAY;AAClB,MAAM,kBAAkB;",
4
+ "sourcesContent": ["export const id = \"id\";\nexport const workflow_instance_id = \"workflow_instance_id\";\nexport const step_instance_id = \"step_instance_id\";\nexport const branch_instance_id = \"branch_instance_id\";\nexport const event_type = \"event_type\";\nexport const event_data = \"event_data\";\nexport const occurred_at = \"occurred_at\";\nexport const user_id = \"user_id\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\n"],
5
+ "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,uBAAuB;AAC7B,MAAM,mBAAmB;AACzB,MAAM,qBAAqB;AAC3B,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,cAAc;AACpB,MAAM,UAAU;AAChB,MAAM,YAAY;AAClB,MAAM,kBAAkB;",
6
6
  "names": []
7
7
  }
@@ -14,6 +14,7 @@ const cancelled_at = "cancelled_at";
14
14
  const error_message = "error_message";
15
15
  const error_details = "error_details";
16
16
  const pending_transition = "pending_transition";
17
+ const active_fork_step_id = "active_fork_step_id";
17
18
  const retry_count = "retry_count";
18
19
  const tenant_id = "tenant_id";
19
20
  const organization_id = "organization_id";
@@ -21,6 +22,7 @@ const created_at = "created_at";
21
22
  const updated_at = "updated_at";
22
23
  const deleted_at = "deleted_at";
23
24
  export {
25
+ active_fork_step_id,
24
26
  cancelled_at,
25
27
  completed_at,
26
28
  context,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../generated/entities/workflow_instance/index.ts"],
4
- "sourcesContent": ["export const id = \"id\";\nexport const definition_id = \"definition_id\";\nexport const workflow_id = \"workflow_id\";\nexport const version = \"version\";\nexport const status = \"status\";\nexport const current_step_id = \"current_step_id\";\nexport const context = \"context\";\nexport const correlation_key = \"correlation_key\";\nexport const metadata = \"metadata\";\nexport const started_at = \"started_at\";\nexport const completed_at = \"completed_at\";\nexport const paused_at = \"paused_at\";\nexport const cancelled_at = \"cancelled_at\";\nexport const error_message = \"error_message\";\nexport const error_details = \"error_details\";\nexport const pending_transition = \"pending_transition\";\nexport const retry_count = \"retry_count\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\nexport const deleted_at = \"deleted_at\";\n"],
5
- "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,gBAAgB;AACtB,MAAM,cAAc;AACpB,MAAM,UAAU;AAChB,MAAM,SAAS;AACf,MAAM,kBAAkB;AACxB,MAAM,UAAU;AAChB,MAAM,kBAAkB;AACxB,MAAM,WAAW;AACjB,MAAM,aAAa;AACnB,MAAM,eAAe;AACrB,MAAM,YAAY;AAClB,MAAM,eAAe;AACrB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,qBAAqB;AAC3B,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,aAAa;",
4
+ "sourcesContent": ["export const id = \"id\";\nexport const definition_id = \"definition_id\";\nexport const workflow_id = \"workflow_id\";\nexport const version = \"version\";\nexport const status = \"status\";\nexport const current_step_id = \"current_step_id\";\nexport const context = \"context\";\nexport const correlation_key = \"correlation_key\";\nexport const metadata = \"metadata\";\nexport const started_at = \"started_at\";\nexport const completed_at = \"completed_at\";\nexport const paused_at = \"paused_at\";\nexport const cancelled_at = \"cancelled_at\";\nexport const error_message = \"error_message\";\nexport const error_details = \"error_details\";\nexport const pending_transition = \"pending_transition\";\nexport const active_fork_step_id = \"active_fork_step_id\";\nexport const retry_count = \"retry_count\";\nexport const tenant_id = \"tenant_id\";\nexport const organization_id = \"organization_id\";\nexport const created_at = \"created_at\";\nexport const updated_at = \"updated_at\";\nexport const deleted_at = \"deleted_at\";\n"],
5
+ "mappings": "AAAO,MAAM,KAAK;AACX,MAAM,gBAAgB;AACtB,MAAM,cAAc;AACpB,MAAM,UAAU;AAChB,MAAM,SAAS;AACf,MAAM,kBAAkB;AACxB,MAAM,UAAU;AAChB,MAAM,kBAAkB;AACxB,MAAM,WAAW;AACjB,MAAM,aAAa;AACnB,MAAM,eAAe;AACrB,MAAM,YAAY;AAClB,MAAM,eAAe;AACrB,MAAM,gBAAgB;AACtB,MAAM,gBAAgB;AACtB,MAAM,qBAAqB;AAC3B,MAAM,sBAAsB;AAC5B,MAAM,cAAc;AACpB,MAAM,YAAY;AAClB,MAAM,kBAAkB;AACxB,MAAM,aAAa;AACnB,MAAM,aAAa;AACnB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
@@ -179,6 +179,7 @@ const M = {
179
179
  "workflows": {
180
180
  "workflow_definition": "workflows:workflow_definition",
181
181
  "workflow_instance": "workflows:workflow_instance",
182
+ "workflow_branch_instance": "workflows:workflow_branch_instance",
182
183
  "step_instance": "workflows:step_instance",
183
184
  "user_task": "workflows:user_task",
184
185
  "workflow_event": "workflows:workflow_event",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../generated/entities.ids.generated.ts"],
4
- "sourcesContent": ["// AUTO-GENERATED by mercato generate entity-ids\nexport const M = {\n \"dashboards\": \"dashboards\",\n \"auth\": \"auth\",\n \"directory\": \"directory\",\n \"customers\": \"customers\",\n \"perspectives\": \"perspectives\",\n \"entities\": \"entities\",\n \"configs\": \"configs\",\n \"query_index\": \"query_index\",\n \"audit_logs\": \"audit_logs\",\n \"attachments\": \"attachments\",\n \"catalog\": \"catalog\",\n \"sales\": \"sales\",\n \"api_keys\": \"api_keys\",\n \"dictionaries\": \"dictionaries\",\n \"api_docs\": \"api_docs\",\n \"business_rules\": \"business_rules\",\n \"feature_toggles\": \"feature_toggles\",\n \"workflows\": \"workflows\",\n \"currencies\": \"currencies\",\n \"planner\": \"planner\",\n \"resources\": \"resources\",\n \"staff\": \"staff\",\n \"notifications\": \"notifications\",\n \"progress\": \"progress\",\n \"integrations\": \"integrations\",\n \"data_sync\": \"data_sync\",\n \"sync_excel\": \"sync_excel\",\n \"messages\": \"messages\",\n \"communication_channels\": \"communication_channels\",\n \"translations\": \"translations\",\n \"inbox_ops\": \"inbox_ops\",\n \"payment_gateways\": \"payment_gateways\",\n \"shipping_carriers\": \"shipping_carriers\",\n \"customer_accounts\": \"customer_accounts\",\n \"portal\": \"portal\"\n } as const, E = {\n \"dashboards\": {\n \"dashboard_layout\": \"dashboards:dashboard_layout\",\n \"dashboard_role_widgets\": \"dashboards:dashboard_role_widgets\",\n \"dashboard_user_widgets\": \"dashboards:dashboard_user_widgets\"\n },\n \"auth\": {\n \"user\": \"auth:user\",\n \"role\": \"auth:role\",\n \"user_sidebar_preference\": \"auth:user_sidebar_preference\",\n \"role_sidebar_preference\": \"auth:role_sidebar_preference\",\n \"sidebar_variant\": \"auth:sidebar_variant\",\n \"user_role\": \"auth:user_role\",\n \"session\": \"auth:session\",\n \"password_reset\": \"auth:password_reset\",\n \"role_acl\": \"auth:role_acl\",\n \"user_acl\": \"auth:user_acl\",\n \"user_consent\": \"auth:user_consent\"\n },\n \"directory\": {\n \"tenant\": \"directory:tenant\",\n \"organization\": \"directory:organization\"\n },\n \"customers\": {\n \"customer_entity\": \"customers:customer_entity\",\n \"customer_person_profile\": \"customers:customer_person_profile\",\n \"customer_person_company_link\": \"customers:customer_person_company_link\",\n \"customer_company_profile\": \"customers:customer_company_profile\",\n \"customer_deal\": \"customers:customer_deal\",\n \"customer_deal_stage_transition\": \"customers:customer_deal_stage_transition\",\n \"customer_deal_person_link\": \"customers:customer_deal_person_link\",\n \"customer_deal_company_link\": \"customers:customer_deal_company_link\",\n \"customer_activity\": \"customers:customer_activity\",\n \"customer_interaction\": \"customers:customer_interaction\",\n \"customer_comment\": \"customers:customer_comment\",\n \"customer_address\": \"customers:customer_address\",\n \"customer_settings\": \"customers:customer_settings\",\n \"customer_tag\": \"customers:customer_tag\",\n \"customer_tag_assignment\": \"customers:customer_tag_assignment\",\n \"customer_dictionary_entry\": \"customers:customer_dictionary_entry\",\n \"customer_pipeline\": \"customers:customer_pipeline\",\n \"customer_pipeline_stage\": \"customers:customer_pipeline_stage\",\n \"customer_todo_link\": \"customers:customer_todo_link\",\n \"customer_entity_role\": \"customers:customer_entity_role\",\n \"customer_dictionary_kind_setting\": \"customers:customer_dictionary_kind_setting\",\n \"customer_label\": \"customers:customer_label\",\n \"customer_label_assignment\": \"customers:customer_label_assignment\",\n \"customer_company_billing\": \"customers:customer_company_billing\",\n \"customer_person_company_role\": \"customers:customer_person_company_role\"\n },\n \"perspectives\": {\n \"perspective\": \"perspectives:perspective\",\n \"role_perspective\": \"perspectives:role_perspective\"\n },\n \"entities\": {\n \"custom_field_def\": \"entities:custom_field_def\",\n \"custom_field_entity_config\": \"entities:custom_field_entity_config\",\n \"custom_entity\": \"entities:custom_entity\",\n \"custom_entity_storage\": \"entities:custom_entity_storage\",\n \"custom_field_value\": \"entities:custom_field_value\",\n \"encryption_map\": \"entities:encryption_map\"\n },\n \"configs\": {\n \"module_config\": \"configs:module_config\",\n \"upgrade_action_run\": \"configs:upgrade_action_run\"\n },\n \"query_index\": {\n \"entity_index_row\": \"query_index:entity_index_row\",\n \"entity_index_job\": \"query_index:entity_index_job\",\n \"entity_index_coverage\": \"query_index:entity_index_coverage\",\n \"indexer_error_log\": \"query_index:indexer_error_log\",\n \"indexer_status_log\": \"query_index:indexer_status_log\",\n \"search_token\": \"query_index:search_token\"\n },\n \"audit_logs\": {\n \"action_log\": \"audit_logs:action_log\",\n \"access_log\": \"audit_logs:access_log\"\n },\n \"attachments\": {\n \"attachment_partition\": \"attachments:attachment_partition\",\n \"attachment\": \"attachments:attachment\"\n },\n \"catalog\": {\n \"catalog_option_schema_template\": \"catalog:catalog_option_schema_template\",\n \"catalog_product\": \"catalog:catalog_product\",\n \"catalog_product_unit_conversion\": \"catalog:catalog_product_unit_conversion\",\n \"catalog_product_category\": \"catalog:catalog_product_category\",\n \"catalog_product_category_assignment\": \"catalog:catalog_product_category_assignment\",\n \"catalog_product_tag\": \"catalog:catalog_product_tag\",\n \"catalog_product_tag_assignment\": \"catalog:catalog_product_tag_assignment\",\n \"catalog_offer\": \"catalog:catalog_offer\",\n \"catalog_product_variant\": \"catalog:catalog_product_variant\",\n \"catalog_product_variant_relation\": \"catalog:catalog_product_variant_relation\",\n \"catalog_price_kind\": \"catalog:catalog_price_kind\",\n \"catalog_product_price\": \"catalog:catalog_product_price\"\n },\n \"sales\": {\n \"sales_channel\": \"sales:sales_channel\",\n \"sales_shipping_method\": \"sales:sales_shipping_method\",\n \"sales_delivery_window\": \"sales:sales_delivery_window\",\n \"sales_payment_method\": \"sales:sales_payment_method\",\n \"sales_tax_rate\": \"sales:sales_tax_rate\",\n \"sales_order\": \"sales:sales_order\",\n \"sales_order_line\": \"sales:sales_order_line\",\n \"sales_order_adjustment\": \"sales:sales_order_adjustment\",\n \"sales_settings\": \"sales:sales_settings\",\n \"sales_document_sequence\": \"sales:sales_document_sequence\",\n \"sales_quote\": \"sales:sales_quote\",\n \"sales_quote_line\": \"sales:sales_quote_line\",\n \"sales_quote_adjustment\": \"sales:sales_quote_adjustment\",\n \"sales_shipment\": \"sales:sales_shipment\",\n \"sales_shipment_item\": \"sales:sales_shipment_item\",\n \"sales_return\": \"sales:sales_return\",\n \"sales_return_line\": \"sales:sales_return_line\",\n \"sales_invoice\": \"sales:sales_invoice\",\n \"sales_invoice_line\": \"sales:sales_invoice_line\",\n \"sales_credit_memo\": \"sales:sales_credit_memo\",\n \"sales_credit_memo_line\": \"sales:sales_credit_memo_line\",\n \"sales_payment\": \"sales:sales_payment\",\n \"sales_payment_allocation\": \"sales:sales_payment_allocation\",\n \"sales_note\": \"sales:sales_note\",\n \"sales_document_address\": \"sales:sales_document_address\",\n \"sales_document_tag\": \"sales:sales_document_tag\",\n \"sales_document_tag_assignment\": \"sales:sales_document_tag_assignment\"\n },\n \"api_keys\": {\n \"api_key\": \"api_keys:api_key\"\n },\n \"dictionaries\": {\n \"dictionary\": \"dictionaries:dictionary\",\n \"dictionary_entry\": \"dictionaries:dictionary_entry\"\n },\n \"business_rules\": {\n \"business_rule\": \"business_rules:business_rule\",\n \"rule_execution_log\": \"business_rules:rule_execution_log\",\n \"rule_set\": \"business_rules:rule_set\",\n \"rule_set_member\": \"business_rules:rule_set_member\"\n },\n \"feature_toggles\": {\n \"feature_toggle\": \"feature_toggles:feature_toggle\",\n \"feature_toggle_override\": \"feature_toggles:feature_toggle_override\"\n },\n \"workflows\": {\n \"workflow_definition\": \"workflows:workflow_definition\",\n \"workflow_instance\": \"workflows:workflow_instance\",\n \"step_instance\": \"workflows:step_instance\",\n \"user_task\": \"workflows:user_task\",\n \"workflow_event\": \"workflows:workflow_event\",\n \"workflow_event_trigger\": \"workflows:workflow_event_trigger\"\n },\n \"currencies\": {\n \"currency\": \"currencies:currency\",\n \"exchange_rate\": \"currencies:exchange_rate\",\n \"currency_fetch_config\": \"currencies:currency_fetch_config\"\n },\n \"planner\": {\n \"planner_availability_rule_set\": \"planner:planner_availability_rule_set\",\n \"planner_availability_rule\": \"planner:planner_availability_rule\"\n },\n \"resources\": {\n \"resources_resource_type\": \"resources:resources_resource_type\",\n \"resources_resource\": \"resources:resources_resource\",\n \"resources_resource_comment\": \"resources:resources_resource_comment\",\n \"resources_resource_activity\": \"resources:resources_resource_activity\",\n \"resources_resource_tag\": \"resources:resources_resource_tag\",\n \"resources_resource_tag_assignment\": \"resources:resources_resource_tag_assignment\"\n },\n \"staff\": {\n \"staff_team\": \"staff:staff_team\",\n \"staff_team_role\": \"staff:staff_team_role\",\n \"staff_team_member\": \"staff:staff_team_member\",\n \"staff_leave_request\": \"staff:staff_leave_request\",\n \"staff_team_member_comment\": \"staff:staff_team_member_comment\",\n \"staff_team_member_activity\": \"staff:staff_team_member_activity\",\n \"staff_team_member_job_history\": \"staff:staff_team_member_job_history\",\n \"staff_team_member_address\": \"staff:staff_team_member_address\",\n \"staff_time_entry\": \"staff:staff_time_entry\",\n \"staff_time_entry_segment\": \"staff:staff_time_entry_segment\",\n \"staff_time_project\": \"staff:staff_time_project\",\n \"staff_time_project_member\": \"staff:staff_time_project_member\"\n },\n \"notifications\": {\n \"notification\": \"notifications:notification\"\n },\n \"progress\": {\n \"progress_job\": \"progress:progress_job\"\n },\n \"integrations\": {\n \"sync_external_id_mapping\": \"integrations:sync_external_id_mapping\",\n \"integration_credentials\": \"integrations:integration_credentials\",\n \"integration_state\": \"integrations:integration_state\",\n \"integration_log\": \"integrations:integration_log\"\n },\n \"data_sync\": {\n \"sync_run\": \"data_sync:sync_run\",\n \"sync_cursor\": \"data_sync:sync_cursor\",\n \"sync_mapping\": \"data_sync:sync_mapping\",\n \"sync_schedule\": \"data_sync:sync_schedule\"\n },\n \"sync_excel\": {\n \"sync_excel_upload\": \"sync_excel:sync_excel_upload\"\n },\n \"messages\": {\n \"message\": \"messages:message\",\n \"message_recipient\": \"messages:message_recipient\",\n \"message_object\": \"messages:message_object\",\n \"message_access_token\": \"messages:message_access_token\",\n \"message_confirmation\": \"messages:message_confirmation\"\n },\n \"communication_channels\": {\n \"communication_channel\": \"communication_channels:communication_channel\",\n \"external_conversation\": \"communication_channels:external_conversation\",\n \"external_message\": \"communication_channels:external_message\",\n \"message_channel_link\": \"communication_channels:message_channel_link\",\n \"channel_thread_mapping\": \"communication_channels:channel_thread_mapping\",\n \"message_reaction\": \"communication_channels:message_reaction\",\n \"channel_thread_token\": \"communication_channels:channel_thread_token\",\n \"channel_ingest_dead_letter\": \"communication_channels:channel_ingest_dead_letter\"\n },\n \"translations\": {\n \"entity_translation\": \"translations:entity_translation\"\n },\n \"inbox_ops\": {\n \"inbox_settings\": \"inbox_ops:inbox_settings\",\n \"inbox_email\": \"inbox_ops:inbox_email\",\n \"inbox_proposal\": \"inbox_ops:inbox_proposal\",\n \"inbox_proposal_action\": \"inbox_ops:inbox_proposal_action\",\n \"inbox_discrepancy\": \"inbox_ops:inbox_discrepancy\"\n },\n \"payment_gateways\": {\n \"gateway_transaction\": \"payment_gateways:gateway_transaction\",\n \"webhook_processed_event\": \"payment_gateways:webhook_processed_event\"\n },\n \"shipping_carriers\": {\n \"carrier_shipment\": \"shipping_carriers:carrier_shipment\",\n \"carrier_webhook_processed_event\": \"shipping_carriers:carrier_webhook_processed_event\"\n },\n \"customer_accounts\": {\n \"customer_user\": \"customer_accounts:customer_user\",\n \"customer_role\": \"customer_accounts:customer_role\",\n \"customer_role_acl\": \"customer_accounts:customer_role_acl\",\n \"customer_user_role\": \"customer_accounts:customer_user_role\",\n \"customer_user_acl\": \"customer_accounts:customer_user_acl\",\n \"customer_user_session\": \"customer_accounts:customer_user_session\",\n \"customer_user_email_verification\": \"customer_accounts:customer_user_email_verification\",\n \"customer_user_password_reset\": \"customer_accounts:customer_user_password_reset\",\n \"customer_user_invitation\": \"customer_accounts:customer_user_invitation\",\n \"domain_mapping\": \"customer_accounts:domain_mapping\"\n }\n } as const;\n\nexport type KnownModuleId = keyof typeof M;\nexport type KnownEntities = typeof E;\n"],
5
- "mappings": "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",
4
+ "sourcesContent": ["// AUTO-GENERATED by mercato generate entity-ids\nexport const M = {\n \"dashboards\": \"dashboards\",\n \"auth\": \"auth\",\n \"directory\": \"directory\",\n \"customers\": \"customers\",\n \"perspectives\": \"perspectives\",\n \"entities\": \"entities\",\n \"configs\": \"configs\",\n \"query_index\": \"query_index\",\n \"audit_logs\": \"audit_logs\",\n \"attachments\": \"attachments\",\n \"catalog\": \"catalog\",\n \"sales\": \"sales\",\n \"api_keys\": \"api_keys\",\n \"dictionaries\": \"dictionaries\",\n \"api_docs\": \"api_docs\",\n \"business_rules\": \"business_rules\",\n \"feature_toggles\": \"feature_toggles\",\n \"workflows\": \"workflows\",\n \"currencies\": \"currencies\",\n \"planner\": \"planner\",\n \"resources\": \"resources\",\n \"staff\": \"staff\",\n \"notifications\": \"notifications\",\n \"progress\": \"progress\",\n \"integrations\": \"integrations\",\n \"data_sync\": \"data_sync\",\n \"sync_excel\": \"sync_excel\",\n \"messages\": \"messages\",\n \"communication_channels\": \"communication_channels\",\n \"translations\": \"translations\",\n \"inbox_ops\": \"inbox_ops\",\n \"payment_gateways\": \"payment_gateways\",\n \"shipping_carriers\": \"shipping_carriers\",\n \"customer_accounts\": \"customer_accounts\",\n \"portal\": \"portal\"\n } as const, E = {\n \"dashboards\": {\n \"dashboard_layout\": \"dashboards:dashboard_layout\",\n \"dashboard_role_widgets\": \"dashboards:dashboard_role_widgets\",\n \"dashboard_user_widgets\": \"dashboards:dashboard_user_widgets\"\n },\n \"auth\": {\n \"user\": \"auth:user\",\n \"role\": \"auth:role\",\n \"user_sidebar_preference\": \"auth:user_sidebar_preference\",\n \"role_sidebar_preference\": \"auth:role_sidebar_preference\",\n \"sidebar_variant\": \"auth:sidebar_variant\",\n \"user_role\": \"auth:user_role\",\n \"session\": \"auth:session\",\n \"password_reset\": \"auth:password_reset\",\n \"role_acl\": \"auth:role_acl\",\n \"user_acl\": \"auth:user_acl\",\n \"user_consent\": \"auth:user_consent\"\n },\n \"directory\": {\n \"tenant\": \"directory:tenant\",\n \"organization\": \"directory:organization\"\n },\n \"customers\": {\n \"customer_entity\": \"customers:customer_entity\",\n \"customer_person_profile\": \"customers:customer_person_profile\",\n \"customer_person_company_link\": \"customers:customer_person_company_link\",\n \"customer_company_profile\": \"customers:customer_company_profile\",\n \"customer_deal\": \"customers:customer_deal\",\n \"customer_deal_stage_transition\": \"customers:customer_deal_stage_transition\",\n \"customer_deal_person_link\": \"customers:customer_deal_person_link\",\n \"customer_deal_company_link\": \"customers:customer_deal_company_link\",\n \"customer_activity\": \"customers:customer_activity\",\n \"customer_interaction\": \"customers:customer_interaction\",\n \"customer_comment\": \"customers:customer_comment\",\n \"customer_address\": \"customers:customer_address\",\n \"customer_settings\": \"customers:customer_settings\",\n \"customer_tag\": \"customers:customer_tag\",\n \"customer_tag_assignment\": \"customers:customer_tag_assignment\",\n \"customer_dictionary_entry\": \"customers:customer_dictionary_entry\",\n \"customer_pipeline\": \"customers:customer_pipeline\",\n \"customer_pipeline_stage\": \"customers:customer_pipeline_stage\",\n \"customer_todo_link\": \"customers:customer_todo_link\",\n \"customer_entity_role\": \"customers:customer_entity_role\",\n \"customer_dictionary_kind_setting\": \"customers:customer_dictionary_kind_setting\",\n \"customer_label\": \"customers:customer_label\",\n \"customer_label_assignment\": \"customers:customer_label_assignment\",\n \"customer_company_billing\": \"customers:customer_company_billing\",\n \"customer_person_company_role\": \"customers:customer_person_company_role\"\n },\n \"perspectives\": {\n \"perspective\": \"perspectives:perspective\",\n \"role_perspective\": \"perspectives:role_perspective\"\n },\n \"entities\": {\n \"custom_field_def\": \"entities:custom_field_def\",\n \"custom_field_entity_config\": \"entities:custom_field_entity_config\",\n \"custom_entity\": \"entities:custom_entity\",\n \"custom_entity_storage\": \"entities:custom_entity_storage\",\n \"custom_field_value\": \"entities:custom_field_value\",\n \"encryption_map\": \"entities:encryption_map\"\n },\n \"configs\": {\n \"module_config\": \"configs:module_config\",\n \"upgrade_action_run\": \"configs:upgrade_action_run\"\n },\n \"query_index\": {\n \"entity_index_row\": \"query_index:entity_index_row\",\n \"entity_index_job\": \"query_index:entity_index_job\",\n \"entity_index_coverage\": \"query_index:entity_index_coverage\",\n \"indexer_error_log\": \"query_index:indexer_error_log\",\n \"indexer_status_log\": \"query_index:indexer_status_log\",\n \"search_token\": \"query_index:search_token\"\n },\n \"audit_logs\": {\n \"action_log\": \"audit_logs:action_log\",\n \"access_log\": \"audit_logs:access_log\"\n },\n \"attachments\": {\n \"attachment_partition\": \"attachments:attachment_partition\",\n \"attachment\": \"attachments:attachment\"\n },\n \"catalog\": {\n \"catalog_option_schema_template\": \"catalog:catalog_option_schema_template\",\n \"catalog_product\": \"catalog:catalog_product\",\n \"catalog_product_unit_conversion\": \"catalog:catalog_product_unit_conversion\",\n \"catalog_product_category\": \"catalog:catalog_product_category\",\n \"catalog_product_category_assignment\": \"catalog:catalog_product_category_assignment\",\n \"catalog_product_tag\": \"catalog:catalog_product_tag\",\n \"catalog_product_tag_assignment\": \"catalog:catalog_product_tag_assignment\",\n \"catalog_offer\": \"catalog:catalog_offer\",\n \"catalog_product_variant\": \"catalog:catalog_product_variant\",\n \"catalog_product_variant_relation\": \"catalog:catalog_product_variant_relation\",\n \"catalog_price_kind\": \"catalog:catalog_price_kind\",\n \"catalog_product_price\": \"catalog:catalog_product_price\"\n },\n \"sales\": {\n \"sales_channel\": \"sales:sales_channel\",\n \"sales_shipping_method\": \"sales:sales_shipping_method\",\n \"sales_delivery_window\": \"sales:sales_delivery_window\",\n \"sales_payment_method\": \"sales:sales_payment_method\",\n \"sales_tax_rate\": \"sales:sales_tax_rate\",\n \"sales_order\": \"sales:sales_order\",\n \"sales_order_line\": \"sales:sales_order_line\",\n \"sales_order_adjustment\": \"sales:sales_order_adjustment\",\n \"sales_settings\": \"sales:sales_settings\",\n \"sales_document_sequence\": \"sales:sales_document_sequence\",\n \"sales_quote\": \"sales:sales_quote\",\n \"sales_quote_line\": \"sales:sales_quote_line\",\n \"sales_quote_adjustment\": \"sales:sales_quote_adjustment\",\n \"sales_shipment\": \"sales:sales_shipment\",\n \"sales_shipment_item\": \"sales:sales_shipment_item\",\n \"sales_return\": \"sales:sales_return\",\n \"sales_return_line\": \"sales:sales_return_line\",\n \"sales_invoice\": \"sales:sales_invoice\",\n \"sales_invoice_line\": \"sales:sales_invoice_line\",\n \"sales_credit_memo\": \"sales:sales_credit_memo\",\n \"sales_credit_memo_line\": \"sales:sales_credit_memo_line\",\n \"sales_payment\": \"sales:sales_payment\",\n \"sales_payment_allocation\": \"sales:sales_payment_allocation\",\n \"sales_note\": \"sales:sales_note\",\n \"sales_document_address\": \"sales:sales_document_address\",\n \"sales_document_tag\": \"sales:sales_document_tag\",\n \"sales_document_tag_assignment\": \"sales:sales_document_tag_assignment\"\n },\n \"api_keys\": {\n \"api_key\": \"api_keys:api_key\"\n },\n \"dictionaries\": {\n \"dictionary\": \"dictionaries:dictionary\",\n \"dictionary_entry\": \"dictionaries:dictionary_entry\"\n },\n \"business_rules\": {\n \"business_rule\": \"business_rules:business_rule\",\n \"rule_execution_log\": \"business_rules:rule_execution_log\",\n \"rule_set\": \"business_rules:rule_set\",\n \"rule_set_member\": \"business_rules:rule_set_member\"\n },\n \"feature_toggles\": {\n \"feature_toggle\": \"feature_toggles:feature_toggle\",\n \"feature_toggle_override\": \"feature_toggles:feature_toggle_override\"\n },\n \"workflows\": {\n \"workflow_definition\": \"workflows:workflow_definition\",\n \"workflow_instance\": \"workflows:workflow_instance\",\n \"workflow_branch_instance\": \"workflows:workflow_branch_instance\",\n \"step_instance\": \"workflows:step_instance\",\n \"user_task\": \"workflows:user_task\",\n \"workflow_event\": \"workflows:workflow_event\",\n \"workflow_event_trigger\": \"workflows:workflow_event_trigger\"\n },\n \"currencies\": {\n \"currency\": \"currencies:currency\",\n \"exchange_rate\": \"currencies:exchange_rate\",\n \"currency_fetch_config\": \"currencies:currency_fetch_config\"\n },\n \"planner\": {\n \"planner_availability_rule_set\": \"planner:planner_availability_rule_set\",\n \"planner_availability_rule\": \"planner:planner_availability_rule\"\n },\n \"resources\": {\n \"resources_resource_type\": \"resources:resources_resource_type\",\n \"resources_resource\": \"resources:resources_resource\",\n \"resources_resource_comment\": \"resources:resources_resource_comment\",\n \"resources_resource_activity\": \"resources:resources_resource_activity\",\n \"resources_resource_tag\": \"resources:resources_resource_tag\",\n \"resources_resource_tag_assignment\": \"resources:resources_resource_tag_assignment\"\n },\n \"staff\": {\n \"staff_team\": \"staff:staff_team\",\n \"staff_team_role\": \"staff:staff_team_role\",\n \"staff_team_member\": \"staff:staff_team_member\",\n \"staff_leave_request\": \"staff:staff_leave_request\",\n \"staff_team_member_comment\": \"staff:staff_team_member_comment\",\n \"staff_team_member_activity\": \"staff:staff_team_member_activity\",\n \"staff_team_member_job_history\": \"staff:staff_team_member_job_history\",\n \"staff_team_member_address\": \"staff:staff_team_member_address\",\n \"staff_time_entry\": \"staff:staff_time_entry\",\n \"staff_time_entry_segment\": \"staff:staff_time_entry_segment\",\n \"staff_time_project\": \"staff:staff_time_project\",\n \"staff_time_project_member\": \"staff:staff_time_project_member\"\n },\n \"notifications\": {\n \"notification\": \"notifications:notification\"\n },\n \"progress\": {\n \"progress_job\": \"progress:progress_job\"\n },\n \"integrations\": {\n \"sync_external_id_mapping\": \"integrations:sync_external_id_mapping\",\n \"integration_credentials\": \"integrations:integration_credentials\",\n \"integration_state\": \"integrations:integration_state\",\n \"integration_log\": \"integrations:integration_log\"\n },\n \"data_sync\": {\n \"sync_run\": \"data_sync:sync_run\",\n \"sync_cursor\": \"data_sync:sync_cursor\",\n \"sync_mapping\": \"data_sync:sync_mapping\",\n \"sync_schedule\": \"data_sync:sync_schedule\"\n },\n \"sync_excel\": {\n \"sync_excel_upload\": \"sync_excel:sync_excel_upload\"\n },\n \"messages\": {\n \"message\": \"messages:message\",\n \"message_recipient\": \"messages:message_recipient\",\n \"message_object\": \"messages:message_object\",\n \"message_access_token\": \"messages:message_access_token\",\n \"message_confirmation\": \"messages:message_confirmation\"\n },\n \"communication_channels\": {\n \"communication_channel\": \"communication_channels:communication_channel\",\n \"external_conversation\": \"communication_channels:external_conversation\",\n \"external_message\": \"communication_channels:external_message\",\n \"message_channel_link\": \"communication_channels:message_channel_link\",\n \"channel_thread_mapping\": \"communication_channels:channel_thread_mapping\",\n \"message_reaction\": \"communication_channels:message_reaction\",\n \"channel_thread_token\": \"communication_channels:channel_thread_token\",\n \"channel_ingest_dead_letter\": \"communication_channels:channel_ingest_dead_letter\"\n },\n \"translations\": {\n \"entity_translation\": \"translations:entity_translation\"\n },\n \"inbox_ops\": {\n \"inbox_settings\": \"inbox_ops:inbox_settings\",\n \"inbox_email\": \"inbox_ops:inbox_email\",\n \"inbox_proposal\": \"inbox_ops:inbox_proposal\",\n \"inbox_proposal_action\": \"inbox_ops:inbox_proposal_action\",\n \"inbox_discrepancy\": \"inbox_ops:inbox_discrepancy\"\n },\n \"payment_gateways\": {\n \"gateway_transaction\": \"payment_gateways:gateway_transaction\",\n \"webhook_processed_event\": \"payment_gateways:webhook_processed_event\"\n },\n \"shipping_carriers\": {\n \"carrier_shipment\": \"shipping_carriers:carrier_shipment\",\n \"carrier_webhook_processed_event\": \"shipping_carriers:carrier_webhook_processed_event\"\n },\n \"customer_accounts\": {\n \"customer_user\": \"customer_accounts:customer_user\",\n \"customer_role\": \"customer_accounts:customer_role\",\n \"customer_role_acl\": \"customer_accounts:customer_role_acl\",\n \"customer_user_role\": \"customer_accounts:customer_user_role\",\n \"customer_user_acl\": \"customer_accounts:customer_user_acl\",\n \"customer_user_session\": \"customer_accounts:customer_user_session\",\n \"customer_user_email_verification\": \"customer_accounts:customer_user_email_verification\",\n \"customer_user_password_reset\": \"customer_accounts:customer_user_password_reset\",\n \"customer_user_invitation\": \"customer_accounts:customer_user_invitation\",\n \"domain_mapping\": \"customer_accounts:domain_mapping\"\n }\n } as const;\n\nexport type KnownModuleId = keyof typeof M;\nexport type KnownEntities = typeof E;\n"],
5
+ "mappings": "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",
6
6
  "names": []
7
7
  }
@@ -2664,6 +2664,7 @@ const entityFieldsRegistry = {
2664
2664
  "step_instance": {
2665
2665
  "id": "id",
2666
2666
  "workflow_instance_id": "workflow_instance_id",
2667
+ "branch_instance_id": "branch_instance_id",
2667
2668
  "step_id": "step_id",
2668
2669
  "step_name": "step_name",
2669
2670
  "step_type": "step_type",
@@ -2854,6 +2855,7 @@ const entityFieldsRegistry = {
2854
2855
  "id": "id",
2855
2856
  "workflow_instance_id": "workflow_instance_id",
2856
2857
  "step_instance_id": "step_instance_id",
2858
+ "branch_instance_id": "branch_instance_id",
2857
2859
  "task_name": "task_name",
2858
2860
  "description": "description",
2859
2861
  "status": "status",
@@ -2883,6 +2885,26 @@ const entityFieldsRegistry = {
2883
2885
  "tenant_id": "tenant_id",
2884
2886
  "processed_at": "processed_at"
2885
2887
  },
2888
+ "workflow_branch_instance": {
2889
+ "id": "id",
2890
+ "workflow_instance_id": "workflow_instance_id",
2891
+ "fork_step_id": "fork_step_id",
2892
+ "join_step_id": "join_step_id",
2893
+ "branch_key": "branch_key",
2894
+ "parent_branch_id": "parent_branch_id",
2895
+ "current_step_id": "current_step_id",
2896
+ "status": "status",
2897
+ "context_namespace": "context_namespace",
2898
+ "pending_transition": "pending_transition",
2899
+ "error_message": "error_message",
2900
+ "error_details": "error_details",
2901
+ "started_at": "started_at",
2902
+ "completed_at": "completed_at",
2903
+ "tenant_id": "tenant_id",
2904
+ "organization_id": "organization_id",
2905
+ "created_at": "created_at",
2906
+ "updated_at": "updated_at"
2907
+ },
2886
2908
  "workflow_definition": {
2887
2909
  "id": "id",
2888
2910
  "workflow_id": "workflow_id",
@@ -2907,6 +2929,7 @@ const entityFieldsRegistry = {
2907
2929
  "id": "id",
2908
2930
  "workflow_instance_id": "workflow_instance_id",
2909
2931
  "step_instance_id": "step_instance_id",
2932
+ "branch_instance_id": "branch_instance_id",
2910
2933
  "event_type": "event_type",
2911
2934
  "event_data": "event_data",
2912
2935
  "occurred_at": "occurred_at",
@@ -2948,6 +2971,7 @@ const entityFieldsRegistry = {
2948
2971
  "error_message": "error_message",
2949
2972
  "error_details": "error_details",
2950
2973
  "pending_transition": "pending_transition",
2974
+ "active_fork_step_id": "active_fork_step_id",
2951
2975
  "retry_count": "retry_count",
2952
2976
  "tenant_id": "tenant_id",
2953
2977
  "organization_id": "organization_id",