Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit a4dd5f7

Browse files
authored
feat: Update Flow interface (#805)
1 parent 9a61686 commit a4dd5f7

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/types/flow.d.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,18 @@ export interface FlowBase {
1818
enabled: boolean
1919
}
2020

21-
export interface Flow extends Identifiable, FlowBase { }
21+
export interface Flow extends Identifiable, FlowBase {
22+
links: {
23+
self: string
24+
}
25+
meta: {
26+
timestamps: {
27+
created_at: string
28+
updated_at: string
29+
}
30+
owner?: 'organization' | 'store'
31+
}
32+
}
2233

2334
export interface FlowFilter {
2435
eq?: {

0 commit comments

Comments
 (0)