18 lines
335 B
TypeScript
18 lines
335 B
TypeScript
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
|
|
}
|