@transai/connector-runner-file-copy 0.29.0 → 0.30.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.29.0 (2026-04-08)
2
+
3
+ This was a version bump only for connector-runner-file-copy to align it with other projects, there were no code changes.
4
+
1
5
  ## 0.28.0 (2026-04-08)
2
6
 
3
7
  This was a version bump only for connector-runner-file-copy to align it with other projects, there were no code changes.
@@ -1,5 +1,5 @@
1
1
  import { ChartInterface } from '../chart.interface';
2
- import { ConditionalTypes, NodeTypes, TriggerType } from './enums';
2
+ import { ConditionalTypes, NodeTypes, TriggerType, WorkflowRunStatusStatus } from './enums';
3
3
  import { ConditionMapper, ValidationMapper } from './parameter-mapper.interface';
4
4
  export interface Conditional {
5
5
  type: ConditionalTypes;
@@ -97,6 +97,12 @@ export interface WorkflowDrawing extends CreateWorkflowDrawingInterface {
97
97
  updatedAt: Date;
98
98
  version: number;
99
99
  triggerChart?: WorkflowDrawingChartSubInterface;
100
+ lastRun?: WorkflowDrawingLastRunInterface;
101
+ }
102
+ export interface WorkflowDrawingLastRunInterface {
103
+ id: string;
104
+ status: WorkflowRunStatusStatus;
105
+ createdAt: Date;
100
106
  }
101
107
  export interface WorkflowDrawingWithPayload extends WorkflowDrawing {
102
108
  payload: WorkflowDrawingPayload;
@@ -54,4 +54,5 @@ export interface WorkflowRunInterface {
54
54
  updatedAt: Date;
55
55
  testRun?: boolean;
56
56
  restartOf?: string;
57
+ workflowIdentifier?: string;
57
58
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@transai/connector-runner-file-copy",
3
- "version": "0.29.0",
3
+ "version": "0.30.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },