braid-ui 1.0.116 → 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/css/braid-ui.css +12 -4
- package/dist/css/braid-ui.min.css +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -2
- package/dist/index.d.ts +9 -2
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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
|
|
|
@@ -690,6 +693,8 @@ interface IndividualDetailViewProps {
|
|
|
690
693
|
lastName: string;
|
|
691
694
|
cipStatus: any;
|
|
692
695
|
subType?: "UBO" | "Customer";
|
|
696
|
+
associatedBusinessId?: string;
|
|
697
|
+
associatedBusinessName?: string;
|
|
693
698
|
};
|
|
694
699
|
profile: IndividualProfileEdit;
|
|
695
700
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
@@ -702,11 +707,13 @@ interface IndividualDetailViewProps {
|
|
|
702
707
|
onNavigateToCounterparty: () => void;
|
|
703
708
|
onCreateCounterparty: () => void;
|
|
704
709
|
onNavigateToTransactions: () => void;
|
|
710
|
+
onNavigateToBusiness?: (businessId: string) => void;
|
|
705
711
|
showTimeline?: boolean;
|
|
706
712
|
timeline?: IndividualTimelineEvent[];
|
|
707
713
|
profileIsEditing: boolean;
|
|
708
714
|
onToggleProfileEdit: () => void;
|
|
709
715
|
onProductIdClick?: (productId: string) => void;
|
|
716
|
+
identityVerification?: IdentityVerification;
|
|
710
717
|
externalAccounts: Array<{
|
|
711
718
|
id: string;
|
|
712
719
|
routingNumber: string;
|
|
@@ -726,7 +733,7 @@ interface IndividualDetailViewProps {
|
|
|
726
733
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
727
734
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
728
735
|
}
|
|
729
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, 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;
|
|
730
737
|
|
|
731
738
|
type CreateIndividualViewForm = {
|
|
732
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
|
|
|
@@ -690,6 +693,8 @@ interface IndividualDetailViewProps {
|
|
|
690
693
|
lastName: string;
|
|
691
694
|
cipStatus: any;
|
|
692
695
|
subType?: "UBO" | "Customer";
|
|
696
|
+
associatedBusinessId?: string;
|
|
697
|
+
associatedBusinessName?: string;
|
|
693
698
|
};
|
|
694
699
|
profile: IndividualProfileEdit;
|
|
695
700
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
@@ -702,11 +707,13 @@ interface IndividualDetailViewProps {
|
|
|
702
707
|
onNavigateToCounterparty: () => void;
|
|
703
708
|
onCreateCounterparty: () => void;
|
|
704
709
|
onNavigateToTransactions: () => void;
|
|
710
|
+
onNavigateToBusiness?: (businessId: string) => void;
|
|
705
711
|
showTimeline?: boolean;
|
|
706
712
|
timeline?: IndividualTimelineEvent[];
|
|
707
713
|
profileIsEditing: boolean;
|
|
708
714
|
onToggleProfileEdit: () => void;
|
|
709
715
|
onProductIdClick?: (productId: string) => void;
|
|
716
|
+
identityVerification?: IdentityVerification;
|
|
710
717
|
externalAccounts: Array<{
|
|
711
718
|
id: string;
|
|
712
719
|
routingNumber: string;
|
|
@@ -726,7 +733,7 @@ interface IndividualDetailViewProps {
|
|
|
726
733
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
727
734
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
728
735
|
}
|
|
729
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, 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;
|
|
730
737
|
|
|
731
738
|
type CreateIndividualViewForm = {
|
|
732
739
|
handleSubmit: (onValid: any) => (e?: any) => void;
|