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

Commit

Permalink
feat: Update Flow interface (#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
petro97 authored May 11, 2023
1 parent 9a61686 commit a4dd5f7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/types/flow.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,18 @@ export interface FlowBase {
enabled: boolean
}

export interface Flow extends Identifiable, FlowBase { }
export interface Flow extends Identifiable, FlowBase {
links: {
self: string
}
meta: {
timestamps: {
created_at: string
updated_at: string
}
owner?: 'organization' | 'store'
}
}

export interface FlowFilter {
eq?: {
Expand Down

0 comments on commit a4dd5f7

Please sign in to comment.