@cfxlabsinc/b2b-services
    Preparing search index...
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • args: { customerId: string; id: string }

      Returns Promise<
          {
              ok: true;
              value: | {
                  accountNumber: string;
                  achDepositInstructions: AchDepositInstructions;
                  createdAt: Date;
                  deletedAt: Date
                  | null;
                  id: string;
                  name: string | null;
                  provider: "VICTOR" | "BIVO" | "ROUTE_FUSION";
                  referenceId: string | null;
                  routingNumber: string;
                  rtpDepositInstructions: RtpDepositInstructions;
                  status: "PENDING" | "ACTIVE";
                  type: "US_DEPOSIT" | "US_DDA";
                  updatedAt: Date;
                  wireDepositInstructions: UsWireDepositInstructions;
              } & { customerId: string; entityId: string; ledgerAccountId: string }
              | null;
          },
      >

    • Parameters

      • args: {
            customerId: string;
            ids?: string[];
            ledgerAccountIds?: string[];
            page?: number;
            pageSize?: number;
        }

      Returns Promise<
          {
              ok: true;
              value: {
                  hasNext: boolean;
                  items: (
                      {
                          accountNumber: string;
                          achDepositInstructions: AchDepositInstructions;
                          createdAt: Date;
                          deletedAt: Date
                          | null;
                          id: string;
                          name: string | null;
                          provider: "VICTOR" | "BIVO" | "ROUTE_FUSION";
                          referenceId: string | null;
                          routingNumber: string;
                          rtpDepositInstructions: RtpDepositInstructions;
                          status: "PENDING" | "ACTIVE";
                          type: "US_DEPOSIT" | "US_DDA";
                          updatedAt: Date;
                          wireDepositInstructions: UsWireDepositInstructions;
                      } & { customerId: string; entityId: string; ledgerAccountId: string }
                  )[];
              };
          },
      >