We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a596f3 commit 36624a4Copy full SHA for 36624a4
src/types/subscriptions.ts
@@ -27,6 +27,7 @@ export interface Subscription {
27
tokenID?: string
28
token?: string
29
isActive?: string
30
+ flowVersion?: number
31
}
32
33
export interface JsonSpec {
src/writeData/subscriptions/utils/form.ts
@@ -131,6 +131,7 @@ export const sanitizeUpdateForm = (form: Subscription): Subscription => {
131
delete form.tokenID
132
delete form.isActive
133
delete form.status
134
+ delete form.flowVersion
135
return form
136
137
0 commit comments