add form to edit subscription
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import type { Org as Org_ } from '../_app.orgs._index/columns'
|
||||
|
||||
export type Subscription = {
|
||||
billing_day: number
|
||||
payment_method: 'BANK_SLIP' | 'MANUAL'
|
||||
}
|
||||
|
||||
export type Address = {
|
||||
address1: string
|
||||
address2: string
|
||||
}
|
||||
|
||||
export type Org = Org_ & {
|
||||
address?: Address
|
||||
subscription?: Subscription
|
||||
subscription_frozen?: boolean
|
||||
}
|
||||
Reference in New Issue
Block a user