braid-ui 1.0.98 → 1.0.100
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 +234 -16
- 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 +99 -501
- package/dist/index.d.ts +99 -501
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -101,32 +101,12 @@ interface OFACAlertViewProps {
|
|
|
101
101
|
}
|
|
102
102
|
declare const OFACAlertView: ({ alert }: OFACAlertViewProps) => react_jsx_runtime.JSX.Element;
|
|
103
103
|
|
|
104
|
-
declare const resolveAlertSchema: z.
|
|
105
|
-
action: z.
|
|
104
|
+
declare const resolveAlertSchema: z.ZodObject<{
|
|
105
|
+
action: z.ZodString;
|
|
106
106
|
changeToAccount: z.ZodOptional<z.ZodString>;
|
|
107
107
|
note: z.ZodString;
|
|
108
108
|
returnCode: z.ZodOptional<z.ZodString>;
|
|
109
|
-
},
|
|
110
|
-
note?: string;
|
|
111
|
-
action?: string;
|
|
112
|
-
changeToAccount?: string;
|
|
113
|
-
returnCode?: string;
|
|
114
|
-
}, {
|
|
115
|
-
note?: string;
|
|
116
|
-
action?: string;
|
|
117
|
-
changeToAccount?: string;
|
|
118
|
-
returnCode?: string;
|
|
119
|
-
}>, {
|
|
120
|
-
note?: string;
|
|
121
|
-
action?: string;
|
|
122
|
-
changeToAccount?: string;
|
|
123
|
-
returnCode?: string;
|
|
124
|
-
}, {
|
|
125
|
-
note?: string;
|
|
126
|
-
action?: string;
|
|
127
|
-
changeToAccount?: string;
|
|
128
|
-
returnCode?: string;
|
|
129
|
-
}>;
|
|
109
|
+
}, z.core.$strip>;
|
|
130
110
|
type ResolveAlertFormData = z.infer<typeof resolveAlertSchema>;
|
|
131
111
|
|
|
132
112
|
interface ResolveAlertDialogProps {
|
|
@@ -171,6 +151,8 @@ interface OFACCheck {
|
|
|
171
151
|
entityType: "Individual" | "Business" | "Counterparty";
|
|
172
152
|
alertId: string | null;
|
|
173
153
|
status: "NO MATCH" | "REVIEW" | "CLEARED" | "CONFIRMED";
|
|
154
|
+
updatedBy: string;
|
|
155
|
+
note: string | null;
|
|
174
156
|
}
|
|
175
157
|
|
|
176
158
|
interface IdentityVerification {
|
|
@@ -206,106 +188,14 @@ declare const businessProfileSchema: z.ZodObject<{
|
|
|
206
188
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
207
189
|
countryCode: z.ZodString;
|
|
208
190
|
type: z.ZodOptional<z.ZodString>;
|
|
209
|
-
},
|
|
210
|
-
type?: string;
|
|
211
|
-
state?: string;
|
|
212
|
-
line1?: string;
|
|
213
|
-
line2?: string;
|
|
214
|
-
city?: string;
|
|
215
|
-
postalCode?: string;
|
|
216
|
-
countryCode?: string;
|
|
217
|
-
}, {
|
|
218
|
-
type?: string;
|
|
219
|
-
state?: string;
|
|
220
|
-
line1?: string;
|
|
221
|
-
line2?: string;
|
|
222
|
-
city?: string;
|
|
223
|
-
postalCode?: string;
|
|
224
|
-
countryCode?: string;
|
|
225
|
-
}>>;
|
|
191
|
+
}, z.core.$strip>>;
|
|
226
192
|
submittedBy: z.ZodOptional<z.ZodObject<{
|
|
227
193
|
contactPersonEmail: z.ZodOptional<z.ZodString>;
|
|
228
194
|
contactPersonFirstName: z.ZodOptional<z.ZodString>;
|
|
229
195
|
contactPersonLastName: z.ZodOptional<z.ZodString>;
|
|
230
196
|
contactPersonPhone: z.ZodOptional<z.ZodString>;
|
|
231
|
-
},
|
|
232
|
-
|
|
233
|
-
contactPersonLastName?: string;
|
|
234
|
-
contactPersonEmail?: string;
|
|
235
|
-
contactPersonPhone?: string;
|
|
236
|
-
}, {
|
|
237
|
-
contactPersonFirstName?: string;
|
|
238
|
-
contactPersonLastName?: string;
|
|
239
|
-
contactPersonEmail?: string;
|
|
240
|
-
contactPersonPhone?: string;
|
|
241
|
-
}>>;
|
|
242
|
-
}, "strip", z.ZodTypeAny, {
|
|
243
|
-
name?: string;
|
|
244
|
-
address?: {
|
|
245
|
-
type?: string;
|
|
246
|
-
state?: string;
|
|
247
|
-
line1?: string;
|
|
248
|
-
line2?: string;
|
|
249
|
-
city?: string;
|
|
250
|
-
postalCode?: string;
|
|
251
|
-
countryCode?: string;
|
|
252
|
-
};
|
|
253
|
-
idNumber?: string;
|
|
254
|
-
website?: string;
|
|
255
|
-
productId?: number;
|
|
256
|
-
businessIdType?: string;
|
|
257
|
-
dba?: string;
|
|
258
|
-
businessEntityType?: string;
|
|
259
|
-
incorporationState?: string;
|
|
260
|
-
formationDate?: string;
|
|
261
|
-
achCompanyId?: string;
|
|
262
|
-
mcc?: string;
|
|
263
|
-
naics?: string;
|
|
264
|
-
mobilePhone?: string;
|
|
265
|
-
contactPersonFirstName?: string;
|
|
266
|
-
contactPersonLastName?: string;
|
|
267
|
-
contactPersonEmail?: string;
|
|
268
|
-
contactPersonPhone?: string;
|
|
269
|
-
submittedBy?: {
|
|
270
|
-
contactPersonFirstName?: string;
|
|
271
|
-
contactPersonLastName?: string;
|
|
272
|
-
contactPersonEmail?: string;
|
|
273
|
-
contactPersonPhone?: string;
|
|
274
|
-
};
|
|
275
|
-
}, {
|
|
276
|
-
name?: string;
|
|
277
|
-
address?: {
|
|
278
|
-
type?: string;
|
|
279
|
-
state?: string;
|
|
280
|
-
line1?: string;
|
|
281
|
-
line2?: string;
|
|
282
|
-
city?: string;
|
|
283
|
-
postalCode?: string;
|
|
284
|
-
countryCode?: string;
|
|
285
|
-
};
|
|
286
|
-
idNumber?: string;
|
|
287
|
-
website?: string;
|
|
288
|
-
productId?: number;
|
|
289
|
-
businessIdType?: string;
|
|
290
|
-
dba?: string;
|
|
291
|
-
businessEntityType?: string;
|
|
292
|
-
incorporationState?: string;
|
|
293
|
-
formationDate?: string;
|
|
294
|
-
achCompanyId?: string;
|
|
295
|
-
mcc?: string;
|
|
296
|
-
naics?: string;
|
|
297
|
-
mobilePhone?: string;
|
|
298
|
-
contactPersonFirstName?: string;
|
|
299
|
-
contactPersonLastName?: string;
|
|
300
|
-
contactPersonEmail?: string;
|
|
301
|
-
contactPersonPhone?: string;
|
|
302
|
-
submittedBy?: {
|
|
303
|
-
contactPersonFirstName?: string;
|
|
304
|
-
contactPersonLastName?: string;
|
|
305
|
-
contactPersonEmail?: string;
|
|
306
|
-
contactPersonPhone?: string;
|
|
307
|
-
};
|
|
308
|
-
}>;
|
|
197
|
+
}, z.core.$strip>>;
|
|
198
|
+
}, z.core.$strip>;
|
|
309
199
|
type BusinessProfile = z.infer<typeof businessProfileSchema>;
|
|
310
200
|
|
|
311
201
|
declare const uboSchema: z.ZodObject<{
|
|
@@ -322,53 +212,14 @@ declare const uboSchema: z.ZodObject<{
|
|
|
322
212
|
city: z.ZodOptional<z.ZodString>;
|
|
323
213
|
state: z.ZodOptional<z.ZodString>;
|
|
324
214
|
country: z.ZodOptional<z.ZodString>;
|
|
325
|
-
},
|
|
326
|
-
title?: string;
|
|
327
|
-
email?: string;
|
|
328
|
-
state?: string;
|
|
329
|
-
country?: string;
|
|
330
|
-
city?: string;
|
|
331
|
-
dateOfBirth?: Date;
|
|
332
|
-
idNumber?: string;
|
|
333
|
-
legalFirstName?: string;
|
|
334
|
-
legalLastName?: string;
|
|
335
|
-
ownershipPercentage?: number;
|
|
336
|
-
ssn?: string;
|
|
337
|
-
street?: string;
|
|
338
|
-
apartment?: string;
|
|
339
|
-
}, {
|
|
340
|
-
title?: string;
|
|
341
|
-
email?: string;
|
|
342
|
-
state?: string;
|
|
343
|
-
country?: string;
|
|
344
|
-
city?: string;
|
|
345
|
-
dateOfBirth?: Date;
|
|
346
|
-
idNumber?: string;
|
|
347
|
-
legalFirstName?: string;
|
|
348
|
-
legalLastName?: string;
|
|
349
|
-
ownershipPercentage?: number;
|
|
350
|
-
ssn?: string;
|
|
351
|
-
street?: string;
|
|
352
|
-
apartment?: string;
|
|
353
|
-
}>;
|
|
215
|
+
}, z.core.$strip>;
|
|
354
216
|
type UBOFormData = z.infer<typeof uboSchema>;
|
|
355
217
|
|
|
356
218
|
declare const accountSchema: z.ZodObject<{
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
}, "strip", z.ZodTypeAny, {
|
|
362
|
-
accountType?: string;
|
|
363
|
-
accountName?: string;
|
|
364
|
-
fundingFromAccount?: string;
|
|
365
|
-
sweepToAccount?: string;
|
|
366
|
-
}, {
|
|
367
|
-
accountType?: string;
|
|
368
|
-
accountName?: string;
|
|
369
|
-
fundingFromAccount?: string;
|
|
370
|
-
sweepToAccount?: string;
|
|
371
|
-
}>;
|
|
219
|
+
routingNumber: z.ZodOptional<z.ZodString>;
|
|
220
|
+
accountNumber: z.ZodOptional<z.ZodString>;
|
|
221
|
+
accountType: z.ZodOptional<z.ZodString>;
|
|
222
|
+
}, z.core.$strip>;
|
|
372
223
|
type AccountFormData = z.infer<typeof accountSchema>;
|
|
373
224
|
|
|
374
225
|
interface Business {
|
|
@@ -409,6 +260,8 @@ interface BusinessDetailViewProps {
|
|
|
409
260
|
onToggleProfileEdit: () => void;
|
|
410
261
|
onNavigateToAccounts: () => void;
|
|
411
262
|
onNavigateToCounterparty: () => void;
|
|
263
|
+
onCreateCounterparty?: () => void;
|
|
264
|
+
onNavigateToTransactions?: () => void;
|
|
412
265
|
onAddAccount?: (data: AccountFormData) => Promise<void | boolean> | void | boolean;
|
|
413
266
|
onDeleteAccount?: (accountId: string) => Promise<void | boolean> | void | boolean;
|
|
414
267
|
onUBOClick: (customerId: string) => void;
|
|
@@ -428,9 +281,10 @@ interface BusinessDetailViewProps {
|
|
|
428
281
|
revealedIdNumber?: string | null;
|
|
429
282
|
onProductIdClick?: (productId: number) => void;
|
|
430
283
|
}
|
|
431
|
-
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount, onDeleteAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
284
|
+
declare const BusinessDetailView: ({ business, businessProfile, identityVerification, latestOFAC, onNavigateToOFAC, showTimeline, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, statusOptions, businessEntityTypeOptions, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, onAddAccount, onDeleteAccount, onUBOClick, onAddUBO, onRemoveUBO, onDocumentUpload, onDocumentDelete, renderDocumentViewer, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, onProductIdClick, }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
432
285
|
|
|
433
286
|
interface BusinessFilters {
|
|
287
|
+
businessId: string;
|
|
434
288
|
name: string;
|
|
435
289
|
productName: string;
|
|
436
290
|
status: string;
|
|
@@ -457,27 +311,32 @@ interface CounterpartiesViewProps {
|
|
|
457
311
|
table: React.ReactNode;
|
|
458
312
|
filters: {
|
|
459
313
|
name: string;
|
|
460
|
-
type: string;
|
|
461
314
|
status: string;
|
|
462
|
-
|
|
463
|
-
|
|
315
|
+
productId: string;
|
|
316
|
+
businessId: string;
|
|
317
|
+
individualId: string;
|
|
318
|
+
accountId: string;
|
|
464
319
|
};
|
|
465
|
-
onFilterChange: (field: string, value: string
|
|
320
|
+
onFilterChange: (field: string, value: string) => void;
|
|
466
321
|
onResetFilters: () => void;
|
|
467
322
|
onCreateCounterparty: () => void;
|
|
468
323
|
}
|
|
469
324
|
declare const CounterpartiesView: ({ table, filters, onFilterChange, onResetFilters, onCreateCounterparty }: CounterpartiesViewProps) => react_jsx_runtime.JSX.Element;
|
|
470
325
|
|
|
471
326
|
interface PaymentMethodCardProps {
|
|
472
|
-
type: "ACH" | "
|
|
327
|
+
type: "ACH" | "Wire";
|
|
473
328
|
fiId: string;
|
|
474
329
|
accountNumber: string;
|
|
475
330
|
bankName?: string;
|
|
476
331
|
accountType?: string;
|
|
477
332
|
beneficiaryBankName?: string;
|
|
333
|
+
beneficiaryFiIdType?: string;
|
|
478
334
|
correspondentBankId?: string;
|
|
479
335
|
intermediaryBankId?: string;
|
|
336
|
+
wireType?: "DOMESTIC" | "INTERNATIONAL";
|
|
337
|
+
direction?: "INBOUND" | "OUTBOUND";
|
|
480
338
|
className?: string;
|
|
339
|
+
onDelete?: () => void;
|
|
481
340
|
}
|
|
482
341
|
|
|
483
342
|
declare const addressSchema: z.ZodObject<{
|
|
@@ -488,28 +347,13 @@ declare const addressSchema: z.ZodObject<{
|
|
|
488
347
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
489
348
|
countryCode: z.ZodString;
|
|
490
349
|
type: z.ZodOptional<z.ZodString>;
|
|
491
|
-
},
|
|
492
|
-
type?: string;
|
|
493
|
-
state?: string;
|
|
494
|
-
line1?: string;
|
|
495
|
-
line2?: string;
|
|
496
|
-
city?: string;
|
|
497
|
-
postalCode?: string;
|
|
498
|
-
countryCode?: string;
|
|
499
|
-
}, {
|
|
500
|
-
type?: string;
|
|
501
|
-
state?: string;
|
|
502
|
-
line1?: string;
|
|
503
|
-
line2?: string;
|
|
504
|
-
city?: string;
|
|
505
|
-
postalCode?: string;
|
|
506
|
-
countryCode?: string;
|
|
507
|
-
}>;
|
|
350
|
+
}, z.core.$strip>;
|
|
508
351
|
declare const counterpartyDetailSchema: z.ZodObject<{
|
|
509
352
|
email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
510
353
|
phone: z.ZodOptional<z.ZodString>;
|
|
511
354
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
|
512
355
|
idNumber: z.ZodOptional<z.ZodString>;
|
|
356
|
+
idDocType: z.ZodOptional<z.ZodString>;
|
|
513
357
|
idType: z.ZodOptional<z.ZodString>;
|
|
514
358
|
idValue: z.ZodOptional<z.ZodString>;
|
|
515
359
|
address: z.ZodOptional<z.ZodObject<{
|
|
@@ -520,56 +364,8 @@ declare const counterpartyDetailSchema: z.ZodObject<{
|
|
|
520
364
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
521
365
|
countryCode: z.ZodString;
|
|
522
366
|
type: z.ZodOptional<z.ZodString>;
|
|
523
|
-
},
|
|
524
|
-
|
|
525
|
-
state?: string;
|
|
526
|
-
line1?: string;
|
|
527
|
-
line2?: string;
|
|
528
|
-
city?: string;
|
|
529
|
-
postalCode?: string;
|
|
530
|
-
countryCode?: string;
|
|
531
|
-
}, {
|
|
532
|
-
type?: string;
|
|
533
|
-
state?: string;
|
|
534
|
-
line1?: string;
|
|
535
|
-
line2?: string;
|
|
536
|
-
city?: string;
|
|
537
|
-
postalCode?: string;
|
|
538
|
-
countryCode?: string;
|
|
539
|
-
}>>;
|
|
540
|
-
}, "strip", z.ZodTypeAny, {
|
|
541
|
-
email?: string;
|
|
542
|
-
address?: {
|
|
543
|
-
type?: string;
|
|
544
|
-
state?: string;
|
|
545
|
-
line1?: string;
|
|
546
|
-
line2?: string;
|
|
547
|
-
city?: string;
|
|
548
|
-
postalCode?: string;
|
|
549
|
-
countryCode?: string;
|
|
550
|
-
};
|
|
551
|
-
phone?: string;
|
|
552
|
-
dateOfBirth?: string;
|
|
553
|
-
idNumber?: string;
|
|
554
|
-
idType?: string;
|
|
555
|
-
idValue?: string;
|
|
556
|
-
}, {
|
|
557
|
-
email?: string;
|
|
558
|
-
address?: {
|
|
559
|
-
type?: string;
|
|
560
|
-
state?: string;
|
|
561
|
-
line1?: string;
|
|
562
|
-
line2?: string;
|
|
563
|
-
city?: string;
|
|
564
|
-
postalCode?: string;
|
|
565
|
-
countryCode?: string;
|
|
566
|
-
};
|
|
567
|
-
phone?: string;
|
|
568
|
-
dateOfBirth?: string;
|
|
569
|
-
idNumber?: string;
|
|
570
|
-
idType?: string;
|
|
571
|
-
idValue?: string;
|
|
572
|
-
}>;
|
|
367
|
+
}, z.core.$strip>>;
|
|
368
|
+
}, z.core.$strip>;
|
|
573
369
|
type CounterpartyDetail$1 = z.infer<typeof counterpartyDetailSchema>;
|
|
574
370
|
type Address = z.infer<typeof addressSchema>;
|
|
575
371
|
|
|
@@ -579,50 +375,12 @@ declare const achTransferSchema: z.ZodObject<{
|
|
|
579
375
|
shortName: z.ZodString;
|
|
580
376
|
type: z.ZodString;
|
|
581
377
|
description: z.ZodOptional<z.ZodString>;
|
|
582
|
-
},
|
|
583
|
-
description?: string;
|
|
584
|
-
type?: string;
|
|
585
|
-
counterpartyName?: string;
|
|
586
|
-
shortName?: string;
|
|
587
|
-
}, {
|
|
588
|
-
description?: string;
|
|
589
|
-
type?: string;
|
|
590
|
-
counterpartyName?: string;
|
|
591
|
-
shortName?: string;
|
|
592
|
-
}>;
|
|
378
|
+
}, z.core.$strip>;
|
|
593
379
|
bankDetails: z.ZodObject<{
|
|
594
380
|
gatewayRoutingNumber: z.ZodString;
|
|
595
381
|
rdfiNumberQualifier: z.ZodString;
|
|
596
|
-
},
|
|
597
|
-
|
|
598
|
-
rdfiNumberQualifier?: string;
|
|
599
|
-
}, {
|
|
600
|
-
gatewayRoutingNumber?: string;
|
|
601
|
-
rdfiNumberQualifier?: string;
|
|
602
|
-
}>;
|
|
603
|
-
}, "strip", z.ZodTypeAny, {
|
|
604
|
-
basicInfo?: {
|
|
605
|
-
description?: string;
|
|
606
|
-
type?: string;
|
|
607
|
-
counterpartyName?: string;
|
|
608
|
-
shortName?: string;
|
|
609
|
-
};
|
|
610
|
-
bankDetails?: {
|
|
611
|
-
gatewayRoutingNumber?: string;
|
|
612
|
-
rdfiNumberQualifier?: string;
|
|
613
|
-
};
|
|
614
|
-
}, {
|
|
615
|
-
basicInfo?: {
|
|
616
|
-
description?: string;
|
|
617
|
-
type?: string;
|
|
618
|
-
counterpartyName?: string;
|
|
619
|
-
shortName?: string;
|
|
620
|
-
};
|
|
621
|
-
bankDetails?: {
|
|
622
|
-
gatewayRoutingNumber?: string;
|
|
623
|
-
rdfiNumberQualifier?: string;
|
|
624
|
-
};
|
|
625
|
-
}>;
|
|
382
|
+
}, z.core.$strip>;
|
|
383
|
+
}, z.core.$strip>;
|
|
626
384
|
type ACHTransfer = z.infer<typeof achTransferSchema>;
|
|
627
385
|
|
|
628
386
|
declare const intermediaryFISchema: z.ZodObject<{
|
|
@@ -638,52 +396,8 @@ declare const intermediaryFISchema: z.ZodObject<{
|
|
|
638
396
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
639
397
|
countryCode: z.ZodString;
|
|
640
398
|
type: z.ZodOptional<z.ZodString>;
|
|
641
|
-
},
|
|
642
|
-
|
|
643
|
-
state?: string;
|
|
644
|
-
line1?: string;
|
|
645
|
-
line2?: string;
|
|
646
|
-
city?: string;
|
|
647
|
-
postalCode?: string;
|
|
648
|
-
countryCode?: string;
|
|
649
|
-
}, {
|
|
650
|
-
type?: string;
|
|
651
|
-
state?: string;
|
|
652
|
-
line1?: string;
|
|
653
|
-
line2?: string;
|
|
654
|
-
city?: string;
|
|
655
|
-
postalCode?: string;
|
|
656
|
-
countryCode?: string;
|
|
657
|
-
}>>;
|
|
658
|
-
}, "strip", z.ZodTypeAny, {
|
|
659
|
-
name?: string;
|
|
660
|
-
address?: {
|
|
661
|
-
type?: string;
|
|
662
|
-
state?: string;
|
|
663
|
-
line1?: string;
|
|
664
|
-
line2?: string;
|
|
665
|
-
city?: string;
|
|
666
|
-
postalCode?: string;
|
|
667
|
-
countryCode?: string;
|
|
668
|
-
};
|
|
669
|
-
idNumber?: string;
|
|
670
|
-
idType?: string;
|
|
671
|
-
accountNumber?: string;
|
|
672
|
-
}, {
|
|
673
|
-
name?: string;
|
|
674
|
-
address?: {
|
|
675
|
-
type?: string;
|
|
676
|
-
state?: string;
|
|
677
|
-
line1?: string;
|
|
678
|
-
line2?: string;
|
|
679
|
-
city?: string;
|
|
680
|
-
postalCode?: string;
|
|
681
|
-
countryCode?: string;
|
|
682
|
-
};
|
|
683
|
-
idNumber?: string;
|
|
684
|
-
idType?: string;
|
|
685
|
-
accountNumber?: string;
|
|
686
|
-
}>;
|
|
399
|
+
}, z.core.$strip>>;
|
|
400
|
+
}, z.core.$strip>;
|
|
687
401
|
type IntermediaryFI$1 = z.infer<typeof intermediaryFISchema>;
|
|
688
402
|
|
|
689
403
|
interface CounterpartyDetailViewProps {
|
|
@@ -692,26 +406,38 @@ interface CounterpartyDetailViewProps {
|
|
|
692
406
|
currentStatus: string;
|
|
693
407
|
isEditingProfile: boolean;
|
|
694
408
|
counterpartyProfileData: CounterpartyDetail$1;
|
|
695
|
-
|
|
696
|
-
|
|
409
|
+
achPaymentMethod?: PaymentMethodCardProps | null;
|
|
410
|
+
wirePaymentMethod?: PaymentMethodCardProps | null;
|
|
697
411
|
onStatusChange: (newStatus: string) => void;
|
|
698
412
|
onToggleProfileEdit: () => void;
|
|
699
413
|
onProfileDataChange: (data: CounterpartyDetail$1) => void;
|
|
700
|
-
|
|
701
|
-
|
|
414
|
+
onAddACH: () => void;
|
|
415
|
+
onDeleteACH: () => void;
|
|
416
|
+
onAddWire: () => void;
|
|
417
|
+
onDeleteWire: () => void;
|
|
702
418
|
onEntityClick?: (entityType: string, entityId: string) => void;
|
|
419
|
+
onNavigateToTransactions?: () => void;
|
|
420
|
+
latestOFAC?: OFACCheck;
|
|
421
|
+
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
703
422
|
}
|
|
704
|
-
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData,
|
|
423
|
+
declare const CounterpartyDetailView: ({ counterpartyName, counterpartyType, currentStatus, isEditingProfile, counterpartyProfileData, achPaymentMethod, wirePaymentMethod, onStatusChange, onToggleProfileEdit, onProfileDataChange, onAddACH, onDeleteACH, onAddWire, onDeleteWire, onEntityClick, onNavigateToTransactions, latestOFAC, onNavigateToOFAC, }: CounterpartyDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
705
424
|
|
|
706
425
|
interface CreateCounterpartyViewProps {
|
|
707
426
|
counterpartyData: any;
|
|
708
|
-
paymentMethods: any[];
|
|
709
|
-
onPaymentMethodsChange: (methods: any[]) => void;
|
|
710
427
|
onBasicInfoChange: (data: any) => void;
|
|
711
428
|
onCancel: () => void;
|
|
712
429
|
onSubmit: () => void;
|
|
713
|
-
|
|
714
|
-
|
|
430
|
+
achPaymentMethod: PaymentMethodCardProps | null;
|
|
431
|
+
wirePaymentMethod: PaymentMethodCardProps | null;
|
|
432
|
+
hasWire: boolean;
|
|
433
|
+
onAddACH: () => void;
|
|
434
|
+
onDeleteACH: () => void;
|
|
435
|
+
onAddWire: () => void;
|
|
436
|
+
onDeleteWire: () => void;
|
|
437
|
+
validationErrors?: Record<string, boolean>;
|
|
438
|
+
onCountryCodeChange?: (value: string) => void;
|
|
439
|
+
}
|
|
440
|
+
declare const CreateCounterpartyView: ({ counterpartyData, onBasicInfoChange, onCancel, onSubmit, achPaymentMethod, wirePaymentMethod, hasWire, onAddACH, onDeleteACH, onAddWire, onDeleteWire, validationErrors, onCountryCodeChange, }: CreateCounterpartyViewProps) => react_jsx_runtime.JSX.Element;
|
|
715
441
|
|
|
716
442
|
interface BusinessAccount {
|
|
717
443
|
id: string;
|
|
@@ -764,17 +490,15 @@ interface AccountDetailViewProps {
|
|
|
764
490
|
onNavigateTransactions: () => void;
|
|
765
491
|
onNavigateProduct?: () => void;
|
|
766
492
|
hideTransactionAction?: boolean;
|
|
767
|
-
hideTimeline?: boolean;
|
|
768
493
|
isLoading?: boolean;
|
|
769
494
|
error?: string | null;
|
|
770
495
|
onRetry?: () => void;
|
|
771
|
-
|
|
772
|
-
feeCount?: number;
|
|
773
|
-
onScrollToFees?: () => void;
|
|
774
|
-
onAddFee?: () => void;
|
|
496
|
+
onNavigateFees?: () => void;
|
|
775
497
|
onCreateTransaction?: () => void;
|
|
498
|
+
onCreateCounterparty?: () => void;
|
|
499
|
+
onCreateLimit?: () => void;
|
|
776
500
|
}
|
|
777
|
-
declare const AccountDetailView: ({ account, currentStatus, onStatusChange, statusOptions, canAcceptSweepOptions, form, onNavigateCustomer, onNavigateCounterparty, onNavigateLimits, onNavigateTransactions, onNavigateProduct, hideTransactionAction,
|
|
501
|
+
declare const AccountDetailView: ({ account, currentStatus, onStatusChange, statusOptions, canAcceptSweepOptions, form, onNavigateCustomer, onNavigateCounterparty, onNavigateLimits, onNavigateTransactions, onNavigateProduct, hideTransactionAction, isLoading, error, onRetry, onNavigateFees, onCreateTransaction, onCreateCounterparty, onCreateLimit, }: AccountDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
778
502
|
|
|
779
503
|
interface AccountFilters {
|
|
780
504
|
accountNumber: string;
|
|
@@ -796,6 +520,7 @@ interface AccountsViewProps {
|
|
|
796
520
|
declare const AccountsView: ({ table, filters, onFilterChange, onResetFilters, onApplyFilters, isLoading, error, onRetry, isEmpty, hasActiveFilters, hideBalanceColumns }: AccountsViewProps) => react_jsx_runtime.JSX.Element;
|
|
797
521
|
|
|
798
522
|
interface IndividualsFilters {
|
|
523
|
+
individualId: string;
|
|
799
524
|
name: string;
|
|
800
525
|
productName: string;
|
|
801
526
|
status: string;
|
|
@@ -833,43 +558,9 @@ declare const individualProfileEditSchema: z.ZodObject<{
|
|
|
833
558
|
state: z.ZodOptional<z.ZodString>;
|
|
834
559
|
postalCode: z.ZodOptional<z.ZodString>;
|
|
835
560
|
country: z.ZodOptional<z.ZodString>;
|
|
836
|
-
externalId: z.ZodOptional<z.
|
|
837
|
-
productId: z.ZodOptional<z.
|
|
838
|
-
},
|
|
839
|
-
email?: string;
|
|
840
|
-
state?: string;
|
|
841
|
-
country?: string;
|
|
842
|
-
city?: string;
|
|
843
|
-
postalCode?: string;
|
|
844
|
-
dateOfBirth?: string;
|
|
845
|
-
idNumber?: string;
|
|
846
|
-
idType?: string;
|
|
847
|
-
productId?: string;
|
|
848
|
-
mobilePhone?: string;
|
|
849
|
-
ssn?: string;
|
|
850
|
-
apartment?: string;
|
|
851
|
-
firstName?: string;
|
|
852
|
-
lastName?: string;
|
|
853
|
-
streetAddress?: string;
|
|
854
|
-
externalId?: string;
|
|
855
|
-
}, {
|
|
856
|
-
email?: string;
|
|
857
|
-
state?: string;
|
|
858
|
-
country?: string;
|
|
859
|
-
city?: string;
|
|
860
|
-
postalCode?: string;
|
|
861
|
-
dateOfBirth?: string;
|
|
862
|
-
idNumber?: string;
|
|
863
|
-
idType?: string;
|
|
864
|
-
productId?: string;
|
|
865
|
-
mobilePhone?: string;
|
|
866
|
-
ssn?: string;
|
|
867
|
-
apartment?: string;
|
|
868
|
-
firstName?: string;
|
|
869
|
-
lastName?: string;
|
|
870
|
-
streetAddress?: string;
|
|
871
|
-
externalId?: string;
|
|
872
|
-
}>;
|
|
561
|
+
externalId: z.ZodOptional<z.ZodCoercedString<unknown>>;
|
|
562
|
+
productId: z.ZodOptional<z.ZodCoercedString<unknown>>;
|
|
563
|
+
}, z.core.$strip>;
|
|
873
564
|
type IndividualProfileEdit = z.infer<typeof individualProfileEditSchema>;
|
|
874
565
|
|
|
875
566
|
declare const externalAccountSchema: z.ZodObject<{
|
|
@@ -877,17 +568,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
877
568
|
accountNumber: z.ZodOptional<z.ZodString>;
|
|
878
569
|
bankName: z.ZodOptional<z.ZodString>;
|
|
879
570
|
bankAccountType: z.ZodOptional<z.ZodString>;
|
|
880
|
-
},
|
|
881
|
-
accountNumber?: string;
|
|
882
|
-
routingNumber?: string;
|
|
883
|
-
bankName?: string;
|
|
884
|
-
bankAccountType?: string;
|
|
885
|
-
}, {
|
|
886
|
-
accountNumber?: string;
|
|
887
|
-
routingNumber?: string;
|
|
888
|
-
bankName?: string;
|
|
889
|
-
bankAccountType?: string;
|
|
890
|
-
}>;
|
|
571
|
+
}, z.core.$strip>;
|
|
891
572
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
892
573
|
|
|
893
574
|
interface SelectOption$2 {
|
|
@@ -911,6 +592,8 @@ interface IndividualDetailViewProps {
|
|
|
911
592
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
912
593
|
onNavigateToAccounts: () => void;
|
|
913
594
|
onNavigateToCounterparty: () => void;
|
|
595
|
+
onCreateCounterparty: () => void;
|
|
596
|
+
onNavigateToTransactions: () => void;
|
|
914
597
|
showTimeline?: boolean;
|
|
915
598
|
profileIsEditing: boolean;
|
|
916
599
|
onToggleProfileEdit: () => void;
|
|
@@ -933,7 +616,7 @@ interface IndividualDetailViewProps {
|
|
|
933
616
|
onDocumentDelete?: (documentId: string) => Promise<void | boolean> | void | boolean;
|
|
934
617
|
renderDocumentViewer?: (document: BusinessDocument) => React.ReactNode;
|
|
935
618
|
}
|
|
936
|
-
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
619
|
+
declare const IndividualDetailView: ({ individual, profile, onProfileSave, status, statusOptions, onStatusChange, latestOFAC, onNavigateToOFAC, onNavigateToAccounts, onNavigateToCounterparty, onCreateCounterparty, onNavigateToTransactions, showTimeline, profileIsEditing, onToggleProfileEdit, onProductIdClick, externalAccounts, onAddExternalAccount, onDeleteExternalAccount, documents, onDocumentUpload, onDocumentDelete, renderDocumentViewer, }: IndividualDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
937
620
|
|
|
938
621
|
type CreateIndividualViewForm = {
|
|
939
622
|
handleSubmit: (onValid: any) => (e?: any) => void;
|
|
@@ -1006,8 +689,11 @@ interface AddressFormProps {
|
|
|
1006
689
|
apartment?: Partial<React.ComponentProps<typeof EnhancedInput>>;
|
|
1007
690
|
};
|
|
1008
691
|
showApartment?: boolean;
|
|
692
|
+
countryCode?: string;
|
|
693
|
+
onCountryCodeChange?: (value: string) => void;
|
|
694
|
+
countryCodeError?: boolean;
|
|
1009
695
|
}
|
|
1010
|
-
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
696
|
+
declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment, countryCode, onCountryCodeChange, countryCodeError, }: AddressFormProps) => react_jsx_runtime.JSX.Element;
|
|
1011
697
|
|
|
1012
698
|
interface BankAddressCardProps {
|
|
1013
699
|
data?: Partial<Address>;
|
|
@@ -1060,6 +746,7 @@ interface SelectOption$1 {
|
|
|
1060
746
|
}
|
|
1061
747
|
interface BusinessProfileCardProps {
|
|
1062
748
|
data?: Partial<BusinessProfile>;
|
|
749
|
+
businessId?: string;
|
|
1063
750
|
identityVerification?: IdentityVerification;
|
|
1064
751
|
onDataChange?: (data: BusinessProfile) => void;
|
|
1065
752
|
isEditing?: boolean;
|
|
@@ -1074,7 +761,7 @@ interface BusinessProfileCardProps {
|
|
|
1074
761
|
revealedIdNumber?: string | null;
|
|
1075
762
|
businessEntityTypeOptions?: SelectOption$1[];
|
|
1076
763
|
}
|
|
1077
|
-
declare const BusinessProfileCard: ({ data, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
764
|
+
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
1078
765
|
|
|
1079
766
|
interface BusinessStatusCardProps {
|
|
1080
767
|
isEditing?: boolean;
|
|
@@ -1093,8 +780,9 @@ declare const ContactInfoCard: ({ isEditing, onToggleEdit, className }: ContactI
|
|
|
1093
780
|
interface CounterpartyBasicInfoProps {
|
|
1094
781
|
value?: any;
|
|
1095
782
|
onDataChange?: (data: any) => void;
|
|
783
|
+
validationErrors?: Record<string, boolean>;
|
|
1096
784
|
}
|
|
1097
|
-
declare const CounterpartyBasicInfo: ({ value, onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
785
|
+
declare const CounterpartyBasicInfo: ({ value, onDataChange, validationErrors }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
|
|
1098
786
|
|
|
1099
787
|
interface CounterpartyProfileCardProps {
|
|
1100
788
|
data?: Partial<CounterpartyDetail$1>;
|
|
@@ -1140,27 +828,18 @@ declare const OriginatorFI: () => react_jsx_runtime.JSX.Element;
|
|
|
1140
828
|
|
|
1141
829
|
declare const OriginatorFIAddress: () => react_jsx_runtime.JSX.Element;
|
|
1142
830
|
|
|
1143
|
-
interface PaymentMethod {
|
|
1144
|
-
id: string;
|
|
1145
|
-
type: "ach" | "wire";
|
|
1146
|
-
name: string;
|
|
1147
|
-
collapsed: boolean;
|
|
1148
|
-
}
|
|
1149
831
|
interface PaymentInformationSectionProps {
|
|
1150
|
-
|
|
832
|
+
achEnabled?: boolean;
|
|
833
|
+
wireEnabled?: boolean;
|
|
834
|
+
onACHToggle?: (enabled: boolean) => void;
|
|
835
|
+
onWireToggle?: (enabled: boolean) => void;
|
|
1151
836
|
}
|
|
1152
|
-
declare const PaymentInformationSection: ({
|
|
837
|
+
declare const PaymentInformationSection: ({ achEnabled: achEnabledProp, wireEnabled: wireEnabledProp, onACHToggle, onWireToggle, }: PaymentInformationSectionProps) => react_jsx_runtime.JSX.Element;
|
|
1153
838
|
|
|
1154
839
|
declare const receiverSchema: z.ZodObject<{
|
|
1155
840
|
routingNumber: z.ZodString;
|
|
1156
841
|
bankShortName: z.ZodString;
|
|
1157
|
-
},
|
|
1158
|
-
routingNumber?: string;
|
|
1159
|
-
bankShortName?: string;
|
|
1160
|
-
}, {
|
|
1161
|
-
routingNumber?: string;
|
|
1162
|
-
bankShortName?: string;
|
|
1163
|
-
}>;
|
|
842
|
+
}, z.core.$strip>;
|
|
1164
843
|
type ReceiverInfo = z.infer<typeof receiverSchema>;
|
|
1165
844
|
interface ReceiverCardProps {
|
|
1166
845
|
data?: Partial<ReceiverInfo>;
|
|
@@ -1287,7 +966,7 @@ interface ACHDetails {
|
|
|
1287
966
|
returnedAt?: string;
|
|
1288
967
|
nocAt?: string;
|
|
1289
968
|
addenda?: string;
|
|
1290
|
-
iatAddenda?:
|
|
969
|
+
iatAddenda?: any;
|
|
1291
970
|
raw?: any;
|
|
1292
971
|
}
|
|
1293
972
|
interface ACHDetailsSectionProps {
|
|
@@ -1529,19 +1208,11 @@ declare const TransactionDetailView: ({ transaction, timelineEvents, isWireTrans
|
|
|
1529
1208
|
|
|
1530
1209
|
declare const cancelTransactionSchema: z.ZodObject<{
|
|
1531
1210
|
reason: z.ZodString;
|
|
1532
|
-
},
|
|
1533
|
-
reason?: string;
|
|
1534
|
-
}, {
|
|
1535
|
-
reason?: string;
|
|
1536
|
-
}>;
|
|
1211
|
+
}, z.core.$strip>;
|
|
1537
1212
|
type CancelTransactionFormData = z.infer<typeof cancelTransactionSchema>;
|
|
1538
1213
|
declare const returnTransactionSchema: z.ZodObject<{
|
|
1539
1214
|
reasonCode: z.ZodString;
|
|
1540
|
-
},
|
|
1541
|
-
reasonCode?: string;
|
|
1542
|
-
}, {
|
|
1543
|
-
reasonCode?: string;
|
|
1544
|
-
}>;
|
|
1215
|
+
}, z.core.$strip>;
|
|
1545
1216
|
type ReturnTransactionFormData = z.infer<typeof returnTransactionSchema>;
|
|
1546
1217
|
interface ReturnReasonCode {
|
|
1547
1218
|
value: string;
|
|
@@ -1834,6 +1505,7 @@ interface EnhancedSelectProps extends VariantProps<typeof selectVariants> {
|
|
|
1834
1505
|
onValueChange?: (value: string) => void;
|
|
1835
1506
|
disabled?: boolean;
|
|
1836
1507
|
className?: string;
|
|
1508
|
+
required?: boolean;
|
|
1837
1509
|
}
|
|
1838
1510
|
declare const EnhancedSelect: React$1.ForwardRefExoticComponent<EnhancedSelectProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1839
1511
|
|
|
@@ -1918,6 +1590,7 @@ interface FormSelectProps<T extends FieldValues = FieldValues> {
|
|
|
1918
1590
|
}[];
|
|
1919
1591
|
disabled?: boolean;
|
|
1920
1592
|
className?: string;
|
|
1593
|
+
required?: boolean;
|
|
1921
1594
|
}
|
|
1922
1595
|
declare const FormSelect: <T extends FieldValues = FieldValues>({ name, ...props }: FormSelectProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1923
1596
|
|
|
@@ -1936,8 +1609,9 @@ interface JsonViewerProps {
|
|
|
1936
1609
|
compact?: boolean;
|
|
1937
1610
|
maxHeight?: string;
|
|
1938
1611
|
expandFully?: boolean;
|
|
1612
|
+
defaultExpandDepth?: number;
|
|
1939
1613
|
}
|
|
1940
|
-
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1614
|
+
declare const JsonViewer: ({ data, className, compact, maxHeight, expandFully, defaultExpandDepth }: JsonViewerProps) => react_jsx_runtime.JSX.Element;
|
|
1941
1615
|
|
|
1942
1616
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
1943
1617
|
|
|
@@ -2114,8 +1788,10 @@ interface StatusBadgeProps {
|
|
|
2114
1788
|
className?: string;
|
|
2115
1789
|
/** Shows a subtle chevron to indicate the status is a clickable dropdown/select. */
|
|
2116
1790
|
showDropdownIndicator?: boolean;
|
|
1791
|
+
/** Shows only the icon without the label text. */
|
|
1792
|
+
iconOnly?: boolean;
|
|
2117
1793
|
}
|
|
2118
|
-
declare const StatusBadge: ({ status, className, showDropdownIndicator }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
1794
|
+
declare const StatusBadge: ({ status, className, showDropdownIndicator, iconOnly }: StatusBadgeProps) => react_jsx_runtime.JSX.Element;
|
|
2119
1795
|
|
|
2120
1796
|
interface CIPStatusBadgeProps {
|
|
2121
1797
|
status: "NOT_START" | "PASS" | "FAIL" | "IN_REVIEW" | "verified" | "not_start" | "pending" | "rejected";
|
|
@@ -2310,97 +1986,17 @@ declare function Statement(): react_jsx_runtime.JSX.Element;
|
|
|
2310
1986
|
|
|
2311
1987
|
declare const TransactionHistory: () => react_jsx_runtime.JSX.Element;
|
|
2312
1988
|
|
|
2313
|
-
declare const newTransactionSchema: z.
|
|
1989
|
+
declare const newTransactionSchema: z.ZodObject<{
|
|
2314
1990
|
transactionType: z.ZodString;
|
|
2315
1991
|
accountNumber: z.ZodString;
|
|
2316
1992
|
counterpartyName: z.ZodOptional<z.ZodString>;
|
|
2317
1993
|
amount: z.ZodString;
|
|
2318
1994
|
description: z.ZodString;
|
|
2319
|
-
certifyInformation: z.
|
|
1995
|
+
certifyInformation: z.ZodBoolean;
|
|
2320
1996
|
adjustmentDirection: z.ZodOptional<z.ZodString>;
|
|
2321
1997
|
adjustmentType: z.ZodOptional<z.ZodString>;
|
|
2322
1998
|
receiverAccountNumber: z.ZodOptional<z.ZodString>;
|
|
2323
|
-
},
|
|
2324
|
-
description?: string;
|
|
2325
|
-
counterpartyName?: string;
|
|
2326
|
-
accountNumber?: string;
|
|
2327
|
-
transactionType?: string;
|
|
2328
|
-
amount?: string;
|
|
2329
|
-
certifyInformation?: boolean;
|
|
2330
|
-
adjustmentDirection?: string;
|
|
2331
|
-
adjustmentType?: string;
|
|
2332
|
-
receiverAccountNumber?: string;
|
|
2333
|
-
}, {
|
|
2334
|
-
description?: string;
|
|
2335
|
-
counterpartyName?: string;
|
|
2336
|
-
accountNumber?: string;
|
|
2337
|
-
transactionType?: string;
|
|
2338
|
-
amount?: string;
|
|
2339
|
-
certifyInformation?: boolean;
|
|
2340
|
-
adjustmentDirection?: string;
|
|
2341
|
-
adjustmentType?: string;
|
|
2342
|
-
receiverAccountNumber?: string;
|
|
2343
|
-
}>, {
|
|
2344
|
-
description?: string;
|
|
2345
|
-
counterpartyName?: string;
|
|
2346
|
-
accountNumber?: string;
|
|
2347
|
-
transactionType?: string;
|
|
2348
|
-
amount?: string;
|
|
2349
|
-
certifyInformation?: boolean;
|
|
2350
|
-
adjustmentDirection?: string;
|
|
2351
|
-
adjustmentType?: string;
|
|
2352
|
-
receiverAccountNumber?: string;
|
|
2353
|
-
}, {
|
|
2354
|
-
description?: string;
|
|
2355
|
-
counterpartyName?: string;
|
|
2356
|
-
accountNumber?: string;
|
|
2357
|
-
transactionType?: string;
|
|
2358
|
-
amount?: string;
|
|
2359
|
-
certifyInformation?: boolean;
|
|
2360
|
-
adjustmentDirection?: string;
|
|
2361
|
-
adjustmentType?: string;
|
|
2362
|
-
receiverAccountNumber?: string;
|
|
2363
|
-
}>, {
|
|
2364
|
-
description?: string;
|
|
2365
|
-
counterpartyName?: string;
|
|
2366
|
-
accountNumber?: string;
|
|
2367
|
-
transactionType?: string;
|
|
2368
|
-
amount?: string;
|
|
2369
|
-
certifyInformation?: boolean;
|
|
2370
|
-
adjustmentDirection?: string;
|
|
2371
|
-
adjustmentType?: string;
|
|
2372
|
-
receiverAccountNumber?: string;
|
|
2373
|
-
}, {
|
|
2374
|
-
description?: string;
|
|
2375
|
-
counterpartyName?: string;
|
|
2376
|
-
accountNumber?: string;
|
|
2377
|
-
transactionType?: string;
|
|
2378
|
-
amount?: string;
|
|
2379
|
-
certifyInformation?: boolean;
|
|
2380
|
-
adjustmentDirection?: string;
|
|
2381
|
-
adjustmentType?: string;
|
|
2382
|
-
receiverAccountNumber?: string;
|
|
2383
|
-
}>, {
|
|
2384
|
-
description?: string;
|
|
2385
|
-
counterpartyName?: string;
|
|
2386
|
-
accountNumber?: string;
|
|
2387
|
-
transactionType?: string;
|
|
2388
|
-
amount?: string;
|
|
2389
|
-
certifyInformation?: boolean;
|
|
2390
|
-
adjustmentDirection?: string;
|
|
2391
|
-
adjustmentType?: string;
|
|
2392
|
-
receiverAccountNumber?: string;
|
|
2393
|
-
}, {
|
|
2394
|
-
description?: string;
|
|
2395
|
-
counterpartyName?: string;
|
|
2396
|
-
accountNumber?: string;
|
|
2397
|
-
transactionType?: string;
|
|
2398
|
-
amount?: string;
|
|
2399
|
-
certifyInformation?: boolean;
|
|
2400
|
-
adjustmentDirection?: string;
|
|
2401
|
-
adjustmentType?: string;
|
|
2402
|
-
receiverAccountNumber?: string;
|
|
2403
|
-
}>;
|
|
1999
|
+
}, z.core.$strip>;
|
|
2404
2000
|
declare function NewTransaction(): react_jsx_runtime.JSX.Element;
|
|
2405
2001
|
|
|
2406
2002
|
declare const TransactionDetail: () => react_jsx_runtime.JSX.Element;
|
|
@@ -2417,6 +2013,8 @@ declare function ReconUpload(): react_jsx_runtime.JSX.Element;
|
|
|
2417
2013
|
|
|
2418
2014
|
declare function ReconExceptions(): react_jsx_runtime.JSX.Element;
|
|
2419
2015
|
|
|
2016
|
+
declare const Fees: () => react_jsx_runtime.JSX.Element;
|
|
2017
|
+
|
|
2420
2018
|
/**
|
|
2421
2019
|
* Generates a CSV string from statement header and transaction data
|
|
2422
2020
|
*/
|
|
@@ -2426,4 +2024,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2426
2024
|
*/
|
|
2427
2025
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2428
2026
|
|
|
2429
|
-
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, 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, 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, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, 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, 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, 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 };
|
|
2027
|
+
export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, ADJUSTMENT_DIRECTION_OPTIONS, AccountCard, type AccountData, AccountDetail, AccountDetailView, type AccountFormValues, AccountTypeBadge, Accounts, AccountsView, 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, BusinessStatusCard, BusinessTypeBadge, Businesses, 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, 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, Fees, 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, ReconUpload, ResolveAlertDialog, ResponsiveGrid, ReturnTransactionDialog, 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, 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, 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 };
|