import type { BillingInfo } from "./customerVault";
export type AddBilling = {
userId: string;
billingId: string;
org?: string;
token: string;
billingInfo: BillingInfo;
};
export type ChangePriority = {
userId: string;
org?: string;
billingId: string;
priority: number;
};