Files
saladeaula.digital/apps/insights.saladeaula.digital/app/routes/_app.orgs.$id/data.ts

23 lines
400 B
TypeScript

import type { Org as Org_ } from '../_app.orgs._index/columns'
export type Subscription = {
billing_day: number
}
export type Billing = {
due_days: number
payment_methot: 'BANK_SLIP' | 'MANUAL'
}
export type Address = {
address1: string
address2: string
}
export type Org = Org_ & {
address?: Address
subscription?: Subscription
subscription_frozen?: boolean
billing: Billing
}