braid-ui 1.0.131 → 1.0.133

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
@@ -208,7 +208,7 @@ interface IdentityVerification {
208
208
 
209
209
  declare const businessProfileSchema: z.ZodObject<{
210
210
  name: z.ZodOptional<z.ZodString>;
211
- productId: z.ZodOptional<z.ZodNumber>;
211
+ productId: z.ZodOptional<z.ZodString>;
212
212
  businessIdType: z.ZodOptional<z.ZodString>;
213
213
  idNumber: z.ZodOptional<z.ZodString>;
214
214
  dba: z.ZodOptional<z.ZodString>;
@@ -274,7 +274,7 @@ interface BusinessAccount$1 {
274
274
  bankName: string;
275
275
  bankAccountType: string;
276
276
  }
277
- interface SelectOption$5 {
277
+ interface SelectOption$6 {
278
278
  value: string;
279
279
  label: string;
280
280
  }
@@ -291,8 +291,8 @@ interface BusinessDetailViewProps {
291
291
  businessAccounts: BusinessAccount$1[];
292
292
  currentStatus: string;
293
293
  isEditingProfile: boolean;
294
- statusOptions: SelectOption$5[];
295
- businessEntityTypeOptions: SelectOption$5[];
294
+ statusOptions: SelectOption$6[];
295
+ businessEntityTypeOptions: SelectOption$6[];
296
296
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
297
297
  onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
298
298
  onToggleProfileEdit: () => void;
@@ -318,7 +318,7 @@ interface BusinessDetailViewProps {
318
318
  onToggleIdNumberVisibility?: () => void;
319
319
  isLoadingIdNumber?: boolean;
320
320
  revealedIdNumber?: string | null;
321
- onProductIdClick?: (productId: number) => void;
321
+ onProductIdClick?: (productId: string) => void;
322
322
  }
323
323
  declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
324
324
 
@@ -344,8 +344,12 @@ interface CreateBusinessViewProps {
344
344
  onSubmit: (data: BusinessProfile) => void;
345
345
  onCancel: () => void;
346
346
  isSubmitting?: boolean;
347
+ productOptions: {
348
+ value: string;
349
+ label: string;
350
+ }[];
347
351
  }
348
- declare const CreateBusinessView: ({ form, businessType, onBusinessTypeChange, onSubmit, onCancel, isSubmitting }: CreateBusinessViewProps) => react_jsx_runtime.JSX.Element;
352
+ declare const CreateBusinessView: ({ form, businessType, onBusinessTypeChange, onSubmit, onCancel, isSubmitting, productOptions }: CreateBusinessViewProps) => react_jsx_runtime.JSX.Element;
349
353
 
350
354
  interface CounterpartiesViewProps {
351
355
  table: React.ReactNode;
@@ -565,7 +569,7 @@ interface AccountFormValues {
565
569
  fundingAccountNumber?: string;
566
570
  sweepAccountNumber?: string;
567
571
  }
568
- interface SelectOption$4 {
572
+ interface SelectOption$5 {
569
573
  value: string;
570
574
  label: string;
571
575
  }
@@ -573,8 +577,8 @@ interface AccountDetailViewProps {
573
577
  account: BusinessAccount;
574
578
  currentStatus: string;
575
579
  onStatusChange: (status: string) => void;
576
- statusOptions: SelectOption$4[];
577
- canAcceptSweepOptions: SelectOption$4[];
580
+ statusOptions: SelectOption$5[];
581
+ canAcceptSweepOptions: SelectOption$5[];
578
582
  form: UseFormReturn<AccountFormValues> & {
579
583
  isEditing: boolean;
580
584
  handleToggleEdit: () => void;
@@ -685,7 +689,7 @@ declare const externalAccountSchema: z.ZodObject<{
685
689
  }, z.core.$strip>;
686
690
  type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
687
691
 
688
- interface SelectOption$3 {
692
+ interface SelectOption$4 {
689
693
  value: string;
690
694
  label: string;
691
695
  }
@@ -702,7 +706,7 @@ interface IndividualDetailViewProps {
702
706
  profile: IndividualProfileEdit;
703
707
  onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
704
708
  status: string;
705
- statusOptions: SelectOption$3[];
709
+ statusOptions: SelectOption$4[];
706
710
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
707
711
  latestOFAC?: OFACCheck;
708
712
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
@@ -738,6 +742,10 @@ interface IndividualDetailViewProps {
738
742
  }
739
743
  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;
740
744
 
745
+ type SelectOption$3 = {
746
+ value: string;
747
+ label: string;
748
+ };
741
749
  type CreateIndividualViewForm = {
742
750
  handleSubmit: (onValid: any) => (e?: any) => void;
743
751
  handleSave: (data?: any) => Promise<void> | void;
@@ -749,8 +757,10 @@ interface CreateIndividualViewProps {
749
757
  onCancel: () => void;
750
758
  onSubmit: () => void;
751
759
  isSubmitting?: boolean;
760
+ idTypeOptions: SelectOption$3[];
761
+ productOptions: SelectOption$3[];
752
762
  }
753
- declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
763
+ declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
754
764
 
755
765
  interface ACHBankCardProps {
756
766
  data?: Partial<ACHTransfer>;
@@ -838,7 +848,7 @@ interface BusinessProfileCardProps {
838
848
  onToggleEdit?: () => void;
839
849
  className?: string;
840
850
  hideActions?: boolean;
841
- onProductIdClick?: (productId: number) => void;
851
+ onProductIdClick?: (productId: string) => void;
842
852
  onRevealIdNumber?: () => Promise<string>;
843
853
  isIdNumberRevealed?: boolean;
844
854
  onToggleIdNumberVisibility?: () => void;
@@ -1212,6 +1222,13 @@ interface NewTransactionFormValues {
1212
1222
  adjustmentDirection?: string;
1213
1223
  adjustmentType?: string;
1214
1224
  receiverAccountNumber?: string;
1225
+ feeType?: string;
1226
+ settlementAccountNumber?: string;
1227
+ internalNote?: string;
1228
+ }
1229
+ interface FeeTypeOption {
1230
+ value: string;
1231
+ label: string;
1215
1232
  }
1216
1233
  interface TransactionTypeOption$1 {
1217
1234
  value: string;
@@ -1268,10 +1285,11 @@ interface NewTransactionViewProps {
1268
1285
  isReviewReady: boolean;
1269
1286
  adjustmentTypeOptions: AdjustmentTypeOption[];
1270
1287
  transactionTypeOptions: TransactionTypeOption$1[];
1288
+ feeTypeOptions: FeeTypeOption[];
1271
1289
  showSuccessInfoBox?: boolean;
1272
1290
  successInfoMessage?: string;
1273
1291
  }
1274
- declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onConfirmationClose, onConfirmationOpenChange, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, counterpartyHasMore, counterpartyTotalResults, isLoadingMoreCounterparties, onLoadMoreCounterparties, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, adjustmentTypeOptions, transactionTypeOptions, showSuccessInfoBox, successInfoMessage, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
1292
+ declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onConfirmationClose, onConfirmationOpenChange, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, counterpartyHasMore, counterpartyTotalResults, isLoadingMoreCounterparties, onLoadMoreCounterparties, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, adjustmentTypeOptions, transactionTypeOptions, feeTypeOptions, showSuccessInfoBox, successInfoMessage, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
1275
1293
 
1276
1294
  interface TransactionHistoryFilters {
1277
1295
  originalFileName?: string;
@@ -2287,4 +2305,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2287
2305
  */
2288
2306
  declare function downloadCSV(content: string, filename: string): void;
2289
2307
 
2290
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2308
+ export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
package/dist/index.d.ts CHANGED
@@ -208,7 +208,7 @@ interface IdentityVerification {
208
208
 
209
209
  declare const businessProfileSchema: z.ZodObject<{
210
210
  name: z.ZodOptional<z.ZodString>;
211
- productId: z.ZodOptional<z.ZodNumber>;
211
+ productId: z.ZodOptional<z.ZodString>;
212
212
  businessIdType: z.ZodOptional<z.ZodString>;
213
213
  idNumber: z.ZodOptional<z.ZodString>;
214
214
  dba: z.ZodOptional<z.ZodString>;
@@ -274,7 +274,7 @@ interface BusinessAccount$1 {
274
274
  bankName: string;
275
275
  bankAccountType: string;
276
276
  }
277
- interface SelectOption$5 {
277
+ interface SelectOption$6 {
278
278
  value: string;
279
279
  label: string;
280
280
  }
@@ -291,8 +291,8 @@ interface BusinessDetailViewProps {
291
291
  businessAccounts: BusinessAccount$1[];
292
292
  currentStatus: string;
293
293
  isEditingProfile: boolean;
294
- statusOptions: SelectOption$5[];
295
- businessEntityTypeOptions: SelectOption$5[];
294
+ statusOptions: SelectOption$6[];
295
+ businessEntityTypeOptions: SelectOption$6[];
296
296
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
297
297
  onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
298
298
  onToggleProfileEdit: () => void;
@@ -318,7 +318,7 @@ interface BusinessDetailViewProps {
318
318
  onToggleIdNumberVisibility?: () => void;
319
319
  isLoadingIdNumber?: boolean;
320
320
  revealedIdNumber?: string | null;
321
- onProductIdClick?: (productId: number) => void;
321
+ onProductIdClick?: (productId: string) => void;
322
322
  }
323
323
  declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, timeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onAddExternalAccount, onDeleteExternalAccount, onAddAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
324
324
 
@@ -344,8 +344,12 @@ interface CreateBusinessViewProps {
344
344
  onSubmit: (data: BusinessProfile) => void;
345
345
  onCancel: () => void;
346
346
  isSubmitting?: boolean;
347
+ productOptions: {
348
+ value: string;
349
+ label: string;
350
+ }[];
347
351
  }
348
- declare const CreateBusinessView: ({ form, businessType, onBusinessTypeChange, onSubmit, onCancel, isSubmitting }: CreateBusinessViewProps) => react_jsx_runtime.JSX.Element;
352
+ declare const CreateBusinessView: ({ form, businessType, onBusinessTypeChange, onSubmit, onCancel, isSubmitting, productOptions }: CreateBusinessViewProps) => react_jsx_runtime.JSX.Element;
349
353
 
350
354
  interface CounterpartiesViewProps {
351
355
  table: React.ReactNode;
@@ -565,7 +569,7 @@ interface AccountFormValues {
565
569
  fundingAccountNumber?: string;
566
570
  sweepAccountNumber?: string;
567
571
  }
568
- interface SelectOption$4 {
572
+ interface SelectOption$5 {
569
573
  value: string;
570
574
  label: string;
571
575
  }
@@ -573,8 +577,8 @@ interface AccountDetailViewProps {
573
577
  account: BusinessAccount;
574
578
  currentStatus: string;
575
579
  onStatusChange: (status: string) => void;
576
- statusOptions: SelectOption$4[];
577
- canAcceptSweepOptions: SelectOption$4[];
580
+ statusOptions: SelectOption$5[];
581
+ canAcceptSweepOptions: SelectOption$5[];
578
582
  form: UseFormReturn<AccountFormValues> & {
579
583
  isEditing: boolean;
580
584
  handleToggleEdit: () => void;
@@ -685,7 +689,7 @@ declare const externalAccountSchema: z.ZodObject<{
685
689
  }, z.core.$strip>;
686
690
  type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
687
691
 
688
- interface SelectOption$3 {
692
+ interface SelectOption$4 {
689
693
  value: string;
690
694
  label: string;
691
695
  }
@@ -702,7 +706,7 @@ interface IndividualDetailViewProps {
702
706
  profile: IndividualProfileEdit;
703
707
  onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
704
708
  status: string;
705
- statusOptions: SelectOption$3[];
709
+ statusOptions: SelectOption$4[];
706
710
  onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
707
711
  latestOFAC?: OFACCheck;
708
712
  onNavigateToOFAC?: (ofacCheckId?: string) => void;
@@ -738,6 +742,10 @@ interface IndividualDetailViewProps {
738
742
  }
739
743
  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;
740
744
 
745
+ type SelectOption$3 = {
746
+ value: string;
747
+ label: string;
748
+ };
741
749
  type CreateIndividualViewForm = {
742
750
  handleSubmit: (onValid: any) => (e?: any) => void;
743
751
  handleSave: (data?: any) => Promise<void> | void;
@@ -749,8 +757,10 @@ interface CreateIndividualViewProps {
749
757
  onCancel: () => void;
750
758
  onSubmit: () => void;
751
759
  isSubmitting?: boolean;
760
+ idTypeOptions: SelectOption$3[];
761
+ productOptions: SelectOption$3[];
752
762
  }
753
- declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
763
+ declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
754
764
 
755
765
  interface ACHBankCardProps {
756
766
  data?: Partial<ACHTransfer>;
@@ -838,7 +848,7 @@ interface BusinessProfileCardProps {
838
848
  onToggleEdit?: () => void;
839
849
  className?: string;
840
850
  hideActions?: boolean;
841
- onProductIdClick?: (productId: number) => void;
851
+ onProductIdClick?: (productId: string) => void;
842
852
  onRevealIdNumber?: () => Promise<string>;
843
853
  isIdNumberRevealed?: boolean;
844
854
  onToggleIdNumberVisibility?: () => void;
@@ -1212,6 +1222,13 @@ interface NewTransactionFormValues {
1212
1222
  adjustmentDirection?: string;
1213
1223
  adjustmentType?: string;
1214
1224
  receiverAccountNumber?: string;
1225
+ feeType?: string;
1226
+ settlementAccountNumber?: string;
1227
+ internalNote?: string;
1228
+ }
1229
+ interface FeeTypeOption {
1230
+ value: string;
1231
+ label: string;
1215
1232
  }
1216
1233
  interface TransactionTypeOption$1 {
1217
1234
  value: string;
@@ -1268,10 +1285,11 @@ interface NewTransactionViewProps {
1268
1285
  isReviewReady: boolean;
1269
1286
  adjustmentTypeOptions: AdjustmentTypeOption[];
1270
1287
  transactionTypeOptions: TransactionTypeOption$1[];
1288
+ feeTypeOptions: FeeTypeOption[];
1271
1289
  showSuccessInfoBox?: boolean;
1272
1290
  successInfoMessage?: string;
1273
1291
  }
1274
- declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onConfirmationClose, onConfirmationOpenChange, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, counterpartyHasMore, counterpartyTotalResults, isLoadingMoreCounterparties, onLoadMoreCounterparties, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, adjustmentTypeOptions, transactionTypeOptions, showSuccessInfoBox, successInfoMessage, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
1292
+ declare const NewTransactionView: ({ form, accountLookedUp, accountData, counterpartyLookedUp, counterpartyData, confirmationOpen, submissionStatus, errorMessage, transactionId, isAccountLoading, isCounterpartyLoading, isSubmitting, counterpartySearchResults, isCounterpartySearching, showCounterpartyDropdown, onAccountLookup, onEditAccount, onEditCounterparty, onTransactionTypeChange, onSubmit, onConfirmationClose, onConfirmationOpenChange, onNewTransaction, onCounterpartySearchChange, onCounterpartySelect, onCounterpartyDropdownClose, counterpartyHasMore, counterpartyTotalResults, isLoadingMoreCounterparties, onLoadMoreCounterparties, receiverAccountLookedUp, receiverAccountData, isReceiverAccountLoading, onReceiverAccountLookup, onEditReceiverAccount, isReviewReady, adjustmentTypeOptions, transactionTypeOptions, feeTypeOptions, showSuccessInfoBox, successInfoMessage, }: NewTransactionViewProps) => react_jsx_runtime.JSX.Element;
1275
1293
 
1276
1294
  interface TransactionHistoryFilters {
1277
1295
  originalFileName?: string;
@@ -2287,4 +2305,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
2287
2305
  */
2288
2306
  declare function downloadCSV(content: string, filename: string): void;
2289
2307
 
2290
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
2308
+ export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, type AddressData, AddressForm, type AdjustmentTypeOption, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessTimelineCard, BusinessTypeBadge, Businesses, BusinessesView, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, CancelTransactionDialog, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartiesView, CounterpartyBasicInfo, type CounterpartyData, CounterpartyDetail, CounterpartyDetailView, CounterpartyProfileCard, CounterpartyRecordsCard, type CounterpartySearchResult, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateCounterpartyView, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, CreateVelocityLimit, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, IndividualDetailView, Individuals, IndividualsView, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, type TimelineEvent, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionDetailView, type TransactionDetailViewProps, TransactionHistory, type TransactionHistoryFilters, TransactionHistoryFiltersSheet, TransactionHistoryView, TransactionTypeBadge, type TransactionTypeOption$1 as TransactionTypeOption, UIKit, UIKitShowcase, type UseAlertDetailReturn, VelocityLimitDetail, VelocityLimits, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };