All files / src/types data.types.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153                                                                                                                                                                                                                                                                                                                 
import { TagType } from "@common/Tag";
export default interface IData {
  id: string;
  name: string;
  description: string;
}
 
export interface MenuListItem {
  name: string;
  path: string;
  icon: JSX.Element;
  index?: number;
  text?: string;
  isPreBuildFormsBuilder?: boolean;
  itemCount?: number;
}
 
export interface MenuList {
  menu: MenuListItem[];
  footer?: MenuListItem[];
  floor?: React.ReactNode;
}
export interface SettingsMenuListItem {
  name: string;
  path: string;
  icon?: JSX.Element;
}
export interface SettingsMenuList {
  menu: SettingsMenuListItem[];
}
 
export interface MenuListItemV2 {
  name: string;
  path: string;
  icon?: JSX.Element;
}
 
export interface Options {
  value: string;
  label: string;
}
export interface IForm {
  name: string;
  accountType: string;
  accountNumber: string;
  routingNumber: string;
  notes: string;
  ReccurrenceOption: string;
  PaymentNumber: string;
}
 
export type FundraisersData = {
  id: string | number;
  date?: string;
  time?: string;
  title: string;
  typeName?: string;
  amount?: number;
  conversion?: string;
  average?: number;
  transactions?: number;
  visitors?: number;
  status?: string;
  name?: string;
  imageURL?: string;
  createdAt: number;
  sumTransactions: number;
  conversionRate: number;
  averageTransactions: number;
  totalTransactions: number;
  Visitors: number;
};
 
export type AccountData = {
  total: number;
  data: {
    merchType: string;
    img: any;
    id: number | null;
    userAccID: number | null;
    userRole: string;
    type: string;
    name: string;
    createdAt: number;
    updatedAt: number;
    userEmail?: string;
    accountType?: string;
  }[];
};
 
export type BankAccountData = {
  id: string;
  name: string;
  bank: string;
  status: TagType;
  statusDescription?: string;
  plaid?: boolean;
  nickname?: string;
  isDefault?: boolean;
  isLocal?: boolean;
  files?: File[];
  statements?: [];
  authPlaidInfo?: string;
  createdWithPlaid?: boolean;
  details: {
    created: string;
    accountType?: string;
    routingNumber: string;
    notes: string;
    accountName: string;
    accountNumber: string;
    bankName: string;
    approvedAt?: number;
    approvedByName?: string;
    approvedByEmail?: string;
    declinedAt?: number;
    declinedByName?: string;
    declinedByEmail?: string;
  };
};
 
export type User = {
  accID: number;
  email: string;
  firstName: string;
  lastName: string;
  emailStatus: string;
  emailIsVerified: boolean;
  phoneNumber: string;
  phoneIsVerified: boolean;
  imageURL: string;
  ssnLast4: string;
  username: string;
  displayName: string;
  occupation: string;
  employer: string;
  maidenName: string;
  birthDate: Date | null;
  gender: string;
  websiteURL: string;
  linkedinURL: string;
  TwitterURL: string;
  facebookURL: string;
  shippingAddress: any | null;
  billingAddress: any | null;
  timezone: string;
  language: string;
  currency: string;
  createdAt: number;
  updatedAt: number;
  deletedAt: Date | null;
};