Skip to content

Commit 34f0382

Browse files
authored
feat: remove operations references in workflows (#14)
1 parent df5fa73 commit 34f0382

File tree

2 files changed

+0
-12
lines changed

2 files changed

+0
-12
lines changed

src/__tests__/fixtures.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,6 @@ export const mockAPIWorkflowResponse: APIWorkflowItem[] = [{
127127
description: 'Test workflow description',
128128
isEnabled: true,
129129
isRequiredAdditionalData: false,
130-
operations: null,
131130
schema: null
132131
}]
133132

src/types.ts

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,6 @@ export interface APIBulkImportOperationItem {
150150
schema: string;
151151
}
152152

153-
/**
154-
* Workflow Operation Schema
155-
* @TODO: Move or reuse with bulk-import endpoint is created.
156-
*/
157-
interface WorkflowOperationItem {
158-
id: string;
159-
description: string;
160-
schema: string;
161-
}
162-
163153
/**
164154
* Workflow Schema
165155
*/
@@ -169,7 +159,6 @@ export interface APIWorkflowItem {
169159
isEnabled: boolean;
170160
isRequiredAdditionalData: boolean;
171161
schema: string | null;
172-
operations: WorkflowOperationItem[] | null;
173162
}
174163

175164
/**

0 commit comments

Comments
 (0)