braid-ui 1.0.141 → 1.0.143
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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +174 -13
- package/dist/index.d.ts +174 -13
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -124,6 +124,179 @@ interface MainLayoutProps {
|
|
|
124
124
|
}
|
|
125
125
|
declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
126
126
|
|
|
127
|
+
interface OFACCheck {
|
|
128
|
+
id: string;
|
|
129
|
+
created: string;
|
|
130
|
+
entityId: string;
|
|
131
|
+
entityName: string;
|
|
132
|
+
entityType: "Individual" | "Business" | "Counterparty";
|
|
133
|
+
alertId: string | null;
|
|
134
|
+
status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
|
|
135
|
+
updatedBy: string;
|
|
136
|
+
note: string | null;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
interface OFACFilters {
|
|
140
|
+
status: string;
|
|
141
|
+
entityType: string;
|
|
142
|
+
startDate?: Date;
|
|
143
|
+
endDate?: Date;
|
|
144
|
+
}
|
|
145
|
+
interface OFACOption {
|
|
146
|
+
value: string;
|
|
147
|
+
label: string;
|
|
148
|
+
}
|
|
149
|
+
interface OFACViewProps {
|
|
150
|
+
checks: OFACCheck[];
|
|
151
|
+
sortField: keyof OFACCheck;
|
|
152
|
+
sortDirection: "asc" | "desc";
|
|
153
|
+
filters: OFACFilters;
|
|
154
|
+
statusOptions: OFACOption[];
|
|
155
|
+
entityTypeOptions: OFACOption[];
|
|
156
|
+
onSort: (field: keyof OFACCheck) => void;
|
|
157
|
+
onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
|
|
158
|
+
onResetFilters: () => void;
|
|
159
|
+
onRowClick: (check: OFACCheck) => void;
|
|
160
|
+
onEntityClick: (check: OFACCheck) => void;
|
|
161
|
+
onAlertClick: (alertId: string) => void;
|
|
162
|
+
}
|
|
163
|
+
declare function OFACView({ checks, sortField, sortDirection, filters, statusOptions, entityTypeOptions, onSort, onFilterChange, onResetFilters, onRowClick, onEntityClick, onAlertClick, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
164
|
+
|
|
165
|
+
interface OFACDetailViewProps {
|
|
166
|
+
ofacCheck: OFACCheck | undefined;
|
|
167
|
+
entityUrl: string;
|
|
168
|
+
results: {
|
|
169
|
+
note: string;
|
|
170
|
+
[key: string]: unknown;
|
|
171
|
+
};
|
|
172
|
+
onBack: () => void;
|
|
173
|
+
}
|
|
174
|
+
declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
175
|
+
|
|
176
|
+
interface FileUpload314A {
|
|
177
|
+
id: string;
|
|
178
|
+
fileUploadedAt: string;
|
|
179
|
+
filename: string;
|
|
180
|
+
uploadBy: string;
|
|
181
|
+
recordUploaded: number;
|
|
182
|
+
businessChecked: number;
|
|
183
|
+
individualChecked: number;
|
|
184
|
+
alertsCreated: number;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface A314AFiltersState {
|
|
188
|
+
fromDate: Date | undefined;
|
|
189
|
+
toDate: Date | undefined;
|
|
190
|
+
}
|
|
191
|
+
interface A314AViewProps {
|
|
192
|
+
uploads: FileUpload314A[];
|
|
193
|
+
sortField: keyof FileUpload314A;
|
|
194
|
+
sortDirection: "asc" | "desc";
|
|
195
|
+
onSort: (field: keyof FileUpload314A) => void;
|
|
196
|
+
filters: A314AFiltersState;
|
|
197
|
+
onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
|
|
198
|
+
onResetFilters: () => void;
|
|
199
|
+
onApplyFilters: () => void;
|
|
200
|
+
uploadDialogOpen: boolean;
|
|
201
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
202
|
+
}
|
|
203
|
+
declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
|
|
205
|
+
interface VelocityLimit {
|
|
206
|
+
id: string;
|
|
207
|
+
created: string;
|
|
208
|
+
limitName: string;
|
|
209
|
+
limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
210
|
+
action: "DECLINE" | "FLAG" | "MONITOR";
|
|
211
|
+
status: "ACTIVE" | "INACTIVE" | "DELETED";
|
|
212
|
+
associatedEntity: "Account" | "Global" | "Program" | "Product";
|
|
213
|
+
associatedEntityId?: string;
|
|
214
|
+
transactionType?: string[];
|
|
215
|
+
transactionGroup?: string[];
|
|
216
|
+
aggregationLevel?: string;
|
|
217
|
+
timePeriod?: string;
|
|
218
|
+
maxAmount?: string;
|
|
219
|
+
maxCount?: string;
|
|
220
|
+
mismatchThreshold?: string;
|
|
221
|
+
comparisonMethod?: string;
|
|
222
|
+
amountThreshold?: string;
|
|
223
|
+
roundPattern?: string;
|
|
224
|
+
entityListName?: string;
|
|
225
|
+
entityType?: string;
|
|
226
|
+
prohibitedEntities?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
interface VelocityLimitFilters {
|
|
230
|
+
accountNumber: string;
|
|
231
|
+
counterpartyId: string;
|
|
232
|
+
productId: string;
|
|
233
|
+
programId: string;
|
|
234
|
+
limitName: string;
|
|
235
|
+
limitType: string;
|
|
236
|
+
status: string;
|
|
237
|
+
aggregationLevel: string;
|
|
238
|
+
action: string;
|
|
239
|
+
transactionType: string;
|
|
240
|
+
transactionGroup: string;
|
|
241
|
+
}
|
|
242
|
+
interface VelocityLimitsViewProps {
|
|
243
|
+
limits: VelocityLimit[];
|
|
244
|
+
sortField: keyof VelocityLimit;
|
|
245
|
+
sortDirection: "asc" | "desc";
|
|
246
|
+
onSort: (field: keyof VelocityLimit) => void;
|
|
247
|
+
filters: VelocityLimitFilters;
|
|
248
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
249
|
+
onResetFilters: () => void;
|
|
250
|
+
onCreate: () => void;
|
|
251
|
+
onRowClick: (limit: VelocityLimit) => void;
|
|
252
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
253
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
254
|
+
}
|
|
255
|
+
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
256
|
+
|
|
257
|
+
interface VelocityLimitDetailViewProps {
|
|
258
|
+
limit: VelocityLimit | undefined;
|
|
259
|
+
onBack: () => void;
|
|
260
|
+
onDeactivate: () => void;
|
|
261
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
262
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
263
|
+
}
|
|
264
|
+
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
266
|
+
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
267
|
+
interface SelectOption$7 {
|
|
268
|
+
value: string;
|
|
269
|
+
label: string;
|
|
270
|
+
}
|
|
271
|
+
interface CreateVelocityLimitFormData {
|
|
272
|
+
limitName: string;
|
|
273
|
+
action: string;
|
|
274
|
+
associatedEntityType: string;
|
|
275
|
+
associatedEntityId: string;
|
|
276
|
+
transactionFilterType: string;
|
|
277
|
+
transactionType: string;
|
|
278
|
+
transactionGroup: string;
|
|
279
|
+
aggregationLevel: string;
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
}
|
|
282
|
+
interface CreateVelocityLimitViewProps {
|
|
283
|
+
limitType: LimitType;
|
|
284
|
+
formData: CreateVelocityLimitFormData;
|
|
285
|
+
onLimitTypeChange: (value: LimitType) => void;
|
|
286
|
+
onFieldChange: (field: string, value: string) => void;
|
|
287
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
288
|
+
onCancel: () => void;
|
|
289
|
+
limitTypeOptions: SelectOption$7[];
|
|
290
|
+
actionOptions: SelectOption$7[];
|
|
291
|
+
associatedEntityTypeOptions: SelectOption$7[];
|
|
292
|
+
transactionTypeOptions: SelectOption$7[];
|
|
293
|
+
transactionGroupOptions: SelectOption$7[];
|
|
294
|
+
aggregationLevelOptions: SelectOption$7[];
|
|
295
|
+
timePeriodOptions: SelectOption$7[];
|
|
296
|
+
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
297
|
+
}
|
|
298
|
+
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
127
300
|
interface BusinessFilters$1 {
|
|
128
301
|
businessId: string;
|
|
129
302
|
name: string;
|
|
@@ -211,18 +384,6 @@ interface BusinessDocument {
|
|
|
211
384
|
url?: string;
|
|
212
385
|
}
|
|
213
386
|
|
|
214
|
-
interface OFACCheck {
|
|
215
|
-
id: string;
|
|
216
|
-
created: string;
|
|
217
|
-
entityId: string;
|
|
218
|
-
entityName: string;
|
|
219
|
-
entityType: "Individual" | "Business" | "Counterparty";
|
|
220
|
-
alertId: string | null;
|
|
221
|
-
status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
|
|
222
|
-
updatedBy: string;
|
|
223
|
-
note: string | null;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
387
|
interface IdentityVerification {
|
|
227
388
|
customerId: string;
|
|
228
389
|
isDeveloperInitiated: boolean;
|
|
@@ -2365,4 +2526,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2365
2526
|
*/
|
|
2366
2527
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2367
2528
|
|
|
2368
|
-
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 };
|
|
2529
|
+
export { type A314AFiltersState, A314AView, type A314AViewProps, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, 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$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, 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
|
@@ -124,6 +124,179 @@ interface MainLayoutProps {
|
|
|
124
124
|
}
|
|
125
125
|
declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
|
|
126
126
|
|
|
127
|
+
interface OFACCheck {
|
|
128
|
+
id: string;
|
|
129
|
+
created: string;
|
|
130
|
+
entityId: string;
|
|
131
|
+
entityName: string;
|
|
132
|
+
entityType: "Individual" | "Business" | "Counterparty";
|
|
133
|
+
alertId: string | null;
|
|
134
|
+
status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
|
|
135
|
+
updatedBy: string;
|
|
136
|
+
note: string | null;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
interface OFACFilters {
|
|
140
|
+
status: string;
|
|
141
|
+
entityType: string;
|
|
142
|
+
startDate?: Date;
|
|
143
|
+
endDate?: Date;
|
|
144
|
+
}
|
|
145
|
+
interface OFACOption {
|
|
146
|
+
value: string;
|
|
147
|
+
label: string;
|
|
148
|
+
}
|
|
149
|
+
interface OFACViewProps {
|
|
150
|
+
checks: OFACCheck[];
|
|
151
|
+
sortField: keyof OFACCheck;
|
|
152
|
+
sortDirection: "asc" | "desc";
|
|
153
|
+
filters: OFACFilters;
|
|
154
|
+
statusOptions: OFACOption[];
|
|
155
|
+
entityTypeOptions: OFACOption[];
|
|
156
|
+
onSort: (field: keyof OFACCheck) => void;
|
|
157
|
+
onFilterChange: (field: keyof OFACFilters, value: string | Date | undefined) => void;
|
|
158
|
+
onResetFilters: () => void;
|
|
159
|
+
onRowClick: (check: OFACCheck) => void;
|
|
160
|
+
onEntityClick: (check: OFACCheck) => void;
|
|
161
|
+
onAlertClick: (alertId: string) => void;
|
|
162
|
+
}
|
|
163
|
+
declare function OFACView({ checks, sortField, sortDirection, filters, statusOptions, entityTypeOptions, onSort, onFilterChange, onResetFilters, onRowClick, onEntityClick, onAlertClick, }: OFACViewProps): react_jsx_runtime.JSX.Element;
|
|
164
|
+
|
|
165
|
+
interface OFACDetailViewProps {
|
|
166
|
+
ofacCheck: OFACCheck | undefined;
|
|
167
|
+
entityUrl: string;
|
|
168
|
+
results: {
|
|
169
|
+
note: string;
|
|
170
|
+
[key: string]: unknown;
|
|
171
|
+
};
|
|
172
|
+
onBack: () => void;
|
|
173
|
+
}
|
|
174
|
+
declare function OFACDetailView({ ofacCheck, entityUrl, results, onBack }: OFACDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
175
|
+
|
|
176
|
+
interface FileUpload314A {
|
|
177
|
+
id: string;
|
|
178
|
+
fileUploadedAt: string;
|
|
179
|
+
filename: string;
|
|
180
|
+
uploadBy: string;
|
|
181
|
+
recordUploaded: number;
|
|
182
|
+
businessChecked: number;
|
|
183
|
+
individualChecked: number;
|
|
184
|
+
alertsCreated: number;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
interface A314AFiltersState {
|
|
188
|
+
fromDate: Date | undefined;
|
|
189
|
+
toDate: Date | undefined;
|
|
190
|
+
}
|
|
191
|
+
interface A314AViewProps {
|
|
192
|
+
uploads: FileUpload314A[];
|
|
193
|
+
sortField: keyof FileUpload314A;
|
|
194
|
+
sortDirection: "asc" | "desc";
|
|
195
|
+
onSort: (field: keyof FileUpload314A) => void;
|
|
196
|
+
filters: A314AFiltersState;
|
|
197
|
+
onFilterChange: (field: keyof A314AFiltersState, value: Date | undefined) => void;
|
|
198
|
+
onResetFilters: () => void;
|
|
199
|
+
onApplyFilters: () => void;
|
|
200
|
+
uploadDialogOpen: boolean;
|
|
201
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
202
|
+
}
|
|
203
|
+
declare function A314AView({ uploads, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onApplyFilters, uploadDialogOpen, onUploadDialogOpenChange, }: A314AViewProps): react_jsx_runtime.JSX.Element;
|
|
204
|
+
|
|
205
|
+
interface VelocityLimit {
|
|
206
|
+
id: string;
|
|
207
|
+
created: string;
|
|
208
|
+
limitName: string;
|
|
209
|
+
limitType: "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
210
|
+
action: "DECLINE" | "FLAG" | "MONITOR";
|
|
211
|
+
status: "ACTIVE" | "INACTIVE" | "DELETED";
|
|
212
|
+
associatedEntity: "Account" | "Global" | "Program" | "Product";
|
|
213
|
+
associatedEntityId?: string;
|
|
214
|
+
transactionType?: string[];
|
|
215
|
+
transactionGroup?: string[];
|
|
216
|
+
aggregationLevel?: string;
|
|
217
|
+
timePeriod?: string;
|
|
218
|
+
maxAmount?: string;
|
|
219
|
+
maxCount?: string;
|
|
220
|
+
mismatchThreshold?: string;
|
|
221
|
+
comparisonMethod?: string;
|
|
222
|
+
amountThreshold?: string;
|
|
223
|
+
roundPattern?: string;
|
|
224
|
+
entityListName?: string;
|
|
225
|
+
entityType?: string;
|
|
226
|
+
prohibitedEntities?: string;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
interface VelocityLimitFilters {
|
|
230
|
+
accountNumber: string;
|
|
231
|
+
counterpartyId: string;
|
|
232
|
+
productId: string;
|
|
233
|
+
programId: string;
|
|
234
|
+
limitName: string;
|
|
235
|
+
limitType: string;
|
|
236
|
+
status: string;
|
|
237
|
+
aggregationLevel: string;
|
|
238
|
+
action: string;
|
|
239
|
+
transactionType: string;
|
|
240
|
+
transactionGroup: string;
|
|
241
|
+
}
|
|
242
|
+
interface VelocityLimitsViewProps {
|
|
243
|
+
limits: VelocityLimit[];
|
|
244
|
+
sortField: keyof VelocityLimit;
|
|
245
|
+
sortDirection: "asc" | "desc";
|
|
246
|
+
onSort: (field: keyof VelocityLimit) => void;
|
|
247
|
+
filters: VelocityLimitFilters;
|
|
248
|
+
onFilterChange: (field: keyof VelocityLimitFilters, value: string | Date | undefined) => void;
|
|
249
|
+
onResetFilters: () => void;
|
|
250
|
+
onCreate: () => void;
|
|
251
|
+
onRowClick: (limit: VelocityLimit) => void;
|
|
252
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
253
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
254
|
+
}
|
|
255
|
+
declare function VelocityLimitsView({ limits, sortField, sortDirection, onSort, filters, onFilterChange, onResetFilters, onCreate, onRowClick, getStatusVariant, getActionVariant, }: VelocityLimitsViewProps): react_jsx_runtime.JSX.Element;
|
|
256
|
+
|
|
257
|
+
interface VelocityLimitDetailViewProps {
|
|
258
|
+
limit: VelocityLimit | undefined;
|
|
259
|
+
onBack: () => void;
|
|
260
|
+
onDeactivate: () => void;
|
|
261
|
+
getStatusVariant: (status: VelocityLimit["status"]) => "success" | "warning" | "destructive" | "secondary";
|
|
262
|
+
getActionVariant: (action: VelocityLimit["action"]) => "secondary";
|
|
263
|
+
}
|
|
264
|
+
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
265
|
+
|
|
266
|
+
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
267
|
+
interface SelectOption$7 {
|
|
268
|
+
value: string;
|
|
269
|
+
label: string;
|
|
270
|
+
}
|
|
271
|
+
interface CreateVelocityLimitFormData {
|
|
272
|
+
limitName: string;
|
|
273
|
+
action: string;
|
|
274
|
+
associatedEntityType: string;
|
|
275
|
+
associatedEntityId: string;
|
|
276
|
+
transactionFilterType: string;
|
|
277
|
+
transactionType: string;
|
|
278
|
+
transactionGroup: string;
|
|
279
|
+
aggregationLevel: string;
|
|
280
|
+
[key: string]: string;
|
|
281
|
+
}
|
|
282
|
+
interface CreateVelocityLimitViewProps {
|
|
283
|
+
limitType: LimitType;
|
|
284
|
+
formData: CreateVelocityLimitFormData;
|
|
285
|
+
onLimitTypeChange: (value: LimitType) => void;
|
|
286
|
+
onFieldChange: (field: string, value: string) => void;
|
|
287
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
288
|
+
onCancel: () => void;
|
|
289
|
+
limitTypeOptions: SelectOption$7[];
|
|
290
|
+
actionOptions: SelectOption$7[];
|
|
291
|
+
associatedEntityTypeOptions: SelectOption$7[];
|
|
292
|
+
transactionTypeOptions: SelectOption$7[];
|
|
293
|
+
transactionGroupOptions: SelectOption$7[];
|
|
294
|
+
aggregationLevelOptions: SelectOption$7[];
|
|
295
|
+
timePeriodOptions: SelectOption$7[];
|
|
296
|
+
prohibitedEntityTypeOptions: SelectOption$7[];
|
|
297
|
+
}
|
|
298
|
+
declare function CreateVelocityLimitView({ limitType, formData, onLimitTypeChange, onFieldChange, onSubmit, onCancel, limitTypeOptions, actionOptions, associatedEntityTypeOptions, transactionTypeOptions, transactionGroupOptions, aggregationLevelOptions, timePeriodOptions, prohibitedEntityTypeOptions, }: CreateVelocityLimitViewProps): react_jsx_runtime.JSX.Element;
|
|
299
|
+
|
|
127
300
|
interface BusinessFilters$1 {
|
|
128
301
|
businessId: string;
|
|
129
302
|
name: string;
|
|
@@ -211,18 +384,6 @@ interface BusinessDocument {
|
|
|
211
384
|
url?: string;
|
|
212
385
|
}
|
|
213
386
|
|
|
214
|
-
interface OFACCheck {
|
|
215
|
-
id: string;
|
|
216
|
-
created: string;
|
|
217
|
-
entityId: string;
|
|
218
|
-
entityName: string;
|
|
219
|
-
entityType: "Individual" | "Business" | "Counterparty";
|
|
220
|
-
alertId: string | null;
|
|
221
|
-
status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
|
|
222
|
-
updatedBy: string;
|
|
223
|
-
note: string | null;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
387
|
interface IdentityVerification {
|
|
227
388
|
customerId: string;
|
|
228
389
|
isDeveloperInitiated: boolean;
|
|
@@ -2365,4 +2526,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2365
2526
|
*/
|
|
2366
2527
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2367
2528
|
|
|
2368
|
-
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 };
|
|
2529
|
+
export { type A314AFiltersState, A314AView, type A314AViewProps, 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, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, 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, type LimitType, ListPage, MainLayout, MetricCard, NewTransaction, type NewTransactionFormValues, NewTransactionView, NotFound, OFACAlertView, type OFACAlertViewProps, OFACDetailView, type OFACDetailViewProps, type OFACFilters, type OFACOption, OFACView, type OFACViewProps, 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$7 as 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, VelocityLimitDetailView, type VelocityLimitDetailViewProps, type VelocityLimitFilters, VelocityLimits, VelocityLimitsView, type VelocityLimitsViewProps, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|