braid-ui 1.0.117 → 1.0.118

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -377,6 +377,8 @@ interface PaymentMethodCardProps {
377
377
  beneficiaryBankName?: string;
378
378
  beneficiaryFiIdType?: string;
379
379
  correspondentBankId?: string;
380
+ correspondentFiId?: string;
381
+ correspondentFiName?: string;
380
382
  intermediaryBankId?: string;
381
383
  wireType?: "DOMESTIC" | "INTERNATIONAL";
382
384
  direction?: "INBOUND" | "OUTBOUND";
@@ -647,11 +649,11 @@ declare const IndividualsView: ({ title, filters, statusOptions, isLoading, onFi
647
649
 
648
650
  declare const individualProfileEditSchema: z.ZodObject<{
649
651
  firstName: z.ZodOptional<z.ZodString>;
652
+ middleName: z.ZodOptional<z.ZodString>;
650
653
  lastName: z.ZodOptional<z.ZodString>;
651
654
  dateOfBirth: z.ZodOptional<z.ZodString>;
652
655
  idType: z.ZodOptional<z.ZodString>;
653
656
  idNumber: z.ZodOptional<z.ZodString>;
654
- ssn: z.ZodOptional<z.ZodString>;
655
657
  email: z.ZodOptional<z.ZodString>;
656
658
  mobilePhone: z.ZodOptional<z.ZodString>;
657
659
  streetAddress: z.ZodOptional<z.ZodString>;
@@ -662,6 +664,7 @@ declare const individualProfileEditSchema: z.ZodObject<{
662
664
  country: z.ZodOptional<z.ZodString>;
663
665
  externalId: z.ZodOptional<z.ZodCoercedString<unknown>>;
664
666
  productId: z.ZodOptional<z.ZodCoercedString<unknown>>;
667
+ achCompanyId: z.ZodOptional<z.ZodCoercedString<unknown>>;
665
668
  }, z.core.$strip>;
666
669
  type IndividualProfileEdit = z.infer<typeof individualProfileEditSchema>;
667
670
 
@@ -710,6 +713,7 @@ interface IndividualDetailViewProps {
710
713
  profileIsEditing: boolean;
711
714
  onToggleProfileEdit: () => void;
712
715
  onProductIdClick?: (productId: string) => void;
716
+ identityVerification?: IdentityVerification;
713
717
  externalAccounts: Array<{
714
718
  id: string;
715
719
  routingNumber: string;
@@ -729,7 +733,7 @@ interface IndividualDetailViewProps {
729
733
  onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
730
734
  renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
731
735
  }
732
- declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
736
+ declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
733
737
 
734
738
  type CreateIndividualViewForm = {
735
739
  handleSubmit: (onValid: any) => (e?: any) => void;
package/dist/index.d.ts CHANGED
@@ -377,6 +377,8 @@ interface PaymentMethodCardProps {
377
377
  beneficiaryBankName?: string;
378
378
  beneficiaryFiIdType?: string;
379
379
  correspondentBankId?: string;
380
+ correspondentFiId?: string;
381
+ correspondentFiName?: string;
380
382
  intermediaryBankId?: string;
381
383
  wireType?: "DOMESTIC" | "INTERNATIONAL";
382
384
  direction?: "INBOUND" | "OUTBOUND";
@@ -647,11 +649,11 @@ declare const IndividualsView: ({ title, filters, statusOptions, isLoading, onFi
647
649
 
648
650
  declare const individualProfileEditSchema: z.ZodObject<{
649
651
  firstName: z.ZodOptional<z.ZodString>;
652
+ middleName: z.ZodOptional<z.ZodString>;
650
653
  lastName: z.ZodOptional<z.ZodString>;
651
654
  dateOfBirth: z.ZodOptional<z.ZodString>;
652
655
  idType: z.ZodOptional<z.ZodString>;
653
656
  idNumber: z.ZodOptional<z.ZodString>;
654
- ssn: z.ZodOptional<z.ZodString>;
655
657
  email: z.ZodOptional<z.ZodString>;
656
658
  mobilePhone: z.ZodOptional<z.ZodString>;
657
659
  streetAddress: z.ZodOptional<z.ZodString>;
@@ -662,6 +664,7 @@ declare const individualProfileEditSchema: z.ZodObject<{
662
664
  country: z.ZodOptional<z.ZodString>;
663
665
  externalId: z.ZodOptional<z.ZodCoercedString<unknown>>;
664
666
  productId: z.ZodOptional<z.ZodCoercedString<unknown>>;
667
+ achCompanyId: z.ZodOptional<z.ZodCoercedString<unknown>>;
665
668
  }, z.core.$strip>;
666
669
  type IndividualProfileEdit = z.infer<typeof individualProfileEditSchema>;
667
670
 
@@ -710,6 +713,7 @@ interface IndividualDetailViewProps {
710
713
  profileIsEditing: boolean;
711
714
  onToggleProfileEdit: () => void;
712
715
  onProductIdClick?: (productId: string) => void;
716
+ identityVerification?: IdentityVerification;
713
717
  externalAccounts: Array<{
714
718
  id: string;
715
719
  routingNumber: string;
@@ -729,7 +733,7 @@ interface IndividualDetailViewProps {
729
733
  onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
730
734
  renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
731
735
  }
732
- declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
736
+ declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onNavigateToBusiness, showTimeline, timeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, identityVerification, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
733
737
 
734
738
  type CreateIndividualViewForm = {
735
739
  handleSubmit: (onValid: any) => (e?: any) => void;