add form to edit subscription

This commit is contained in:
2026-01-19 13:52:35 -03:00
parent 3fd7c77469
commit 1c7d4de74a
4 changed files with 36 additions and 27 deletions

View File

@@ -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
}