braid-ui 1.0.170 → 1.0.172
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 +299 -35
- package/dist/index.d.ts +299 -35
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -309,7 +309,7 @@ interface VelocityLimitDetailViewProps {
|
|
|
309
309
|
declare function VelocityLimitDetailView({ limit, onBack, onDeactivate, getStatusVariant, getActionVariant, onAssociatedEntityClick, }: VelocityLimitDetailViewProps): react_jsx_runtime.JSX.Element;
|
|
310
310
|
|
|
311
311
|
type LimitType = "" | "receiver_name_mismatch" | "round_number" | "transaction" | "prohibited_entity";
|
|
312
|
-
interface SelectOption$
|
|
312
|
+
interface SelectOption$8 {
|
|
313
313
|
value: string;
|
|
314
314
|
label: string;
|
|
315
315
|
}
|
|
@@ -337,16 +337,16 @@ interface CreateVelocityLimitViewProps {
|
|
|
337
337
|
onMultiFieldChange: (field: string, value: string[]) => void;
|
|
338
338
|
onSubmit: (e: React.FormEvent) => void;
|
|
339
339
|
onCancel: () => void;
|
|
340
|
-
limitTypeOptions: SelectOption$
|
|
341
|
-
actionOptions: SelectOption$
|
|
342
|
-
associatedEntityTypeOptions: SelectOption$
|
|
343
|
-
transactionTypeOptions: SelectOption$
|
|
344
|
-
transactionGroupOptions: SelectOption$
|
|
345
|
-
aggregationLevelOptions: SelectOption$
|
|
346
|
-
timePeriodOptions: SelectOption$
|
|
347
|
-
prohibitedEntityTypeOptions: SelectOption$
|
|
348
|
-
productIdOptions: SelectOption$
|
|
349
|
-
programIdOptions: SelectOption$
|
|
340
|
+
limitTypeOptions: SelectOption$8[];
|
|
341
|
+
actionOptions: SelectOption$8[];
|
|
342
|
+
associatedEntityTypeOptions: SelectOption$8[];
|
|
343
|
+
transactionTypeOptions: SelectOption$8[];
|
|
344
|
+
transactionGroupOptions: SelectOption$8[];
|
|
345
|
+
aggregationLevelOptions: SelectOption$8[];
|
|
346
|
+
timePeriodOptions: SelectOption$8[];
|
|
347
|
+
prohibitedEntityTypeOptions: SelectOption$8[];
|
|
348
|
+
productIdOptions: SelectOption$8[];
|
|
349
|
+
programIdOptions: SelectOption$8[];
|
|
350
350
|
restrictedEntities: RestrictedEntity[];
|
|
351
351
|
onAddRestrictedEntity: () => void;
|
|
352
352
|
onRemoveRestrictedEntity: (index: number) => void;
|
|
@@ -517,7 +517,7 @@ interface BusinessAccount$1 {
|
|
|
517
517
|
bankName: string;
|
|
518
518
|
bankAccountType: string;
|
|
519
519
|
}
|
|
520
|
-
interface SelectOption$
|
|
520
|
+
interface SelectOption$7 {
|
|
521
521
|
value: string;
|
|
522
522
|
label: string;
|
|
523
523
|
}
|
|
@@ -534,8 +534,8 @@ interface BusinessDetailViewProps {
|
|
|
534
534
|
businessAccounts: BusinessAccount$1[];
|
|
535
535
|
currentStatus: string;
|
|
536
536
|
isEditingProfile: boolean;
|
|
537
|
-
statusOptions: SelectOption$
|
|
538
|
-
businessEntityTypeOptions: SelectOption$
|
|
537
|
+
statusOptions: SelectOption$7[];
|
|
538
|
+
businessEntityTypeOptions: SelectOption$7[];
|
|
539
539
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
540
540
|
onProfileDataChange: (profile: BusinessProfile) => void | Promise<void>;
|
|
541
541
|
onToggleProfileEdit: () => void;
|
|
@@ -813,7 +813,7 @@ interface AccountFormValues {
|
|
|
813
813
|
fundingAccountNumber?: string;
|
|
814
814
|
sweepAccountNumber?: string;
|
|
815
815
|
}
|
|
816
|
-
interface SelectOption$
|
|
816
|
+
interface SelectOption$6 {
|
|
817
817
|
value: string;
|
|
818
818
|
label: string;
|
|
819
819
|
}
|
|
@@ -821,8 +821,8 @@ interface AccountDetailViewProps {
|
|
|
821
821
|
account: BusinessAccount;
|
|
822
822
|
currentStatus: string;
|
|
823
823
|
onStatusChange: (status: string) => void;
|
|
824
|
-
statusOptions: SelectOption$
|
|
825
|
-
canAcceptSweepOptions: SelectOption$
|
|
824
|
+
statusOptions: SelectOption$6[];
|
|
825
|
+
canAcceptSweepOptions: SelectOption$6[];
|
|
826
826
|
form: UseFormReturn<AccountFormValues> & {
|
|
827
827
|
isEditing: boolean;
|
|
828
828
|
handleToggleEdit: () => void;
|
|
@@ -955,7 +955,7 @@ declare const externalAccountSchema: z.ZodObject<{
|
|
|
955
955
|
}, z.core.$strip>;
|
|
956
956
|
type ExternalAccountFormData = z.infer<typeof externalAccountSchema>;
|
|
957
957
|
|
|
958
|
-
interface SelectOption$
|
|
958
|
+
interface SelectOption$5 {
|
|
959
959
|
value: string;
|
|
960
960
|
label: string;
|
|
961
961
|
}
|
|
@@ -972,7 +972,7 @@ interface IndividualDetailViewProps {
|
|
|
972
972
|
profile: IndividualProfileEdit;
|
|
973
973
|
onProfileSave?: (data: IndividualProfileEdit) => Promise<void> | void;
|
|
974
974
|
status: string;
|
|
975
|
-
statusOptions: SelectOption$
|
|
975
|
+
statusOptions: SelectOption$5[];
|
|
976
976
|
onStatusChange: (newStatus: string, note?: string) => void | Promise<void>;
|
|
977
977
|
latestOFAC?: OFACCheck;
|
|
978
978
|
onNavigateToOFAC?: (ofacCheckId?: string) => void;
|
|
@@ -1008,7 +1008,7 @@ interface IndividualDetailViewProps {
|
|
|
1008
1008
|
}
|
|
1009
1009
|
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;
|
|
1010
1010
|
|
|
1011
|
-
type SelectOption$
|
|
1011
|
+
type SelectOption$4 = {
|
|
1012
1012
|
value: string;
|
|
1013
1013
|
label: string;
|
|
1014
1014
|
};
|
|
@@ -1023,8 +1023,8 @@ interface CreateIndividualViewProps {
|
|
|
1023
1023
|
onCancel: () => void;
|
|
1024
1024
|
onSubmit: () => void;
|
|
1025
1025
|
isSubmitting?: boolean;
|
|
1026
|
-
idTypeOptions: SelectOption$
|
|
1027
|
-
productOptions: SelectOption$
|
|
1026
|
+
idTypeOptions: SelectOption$4[];
|
|
1027
|
+
productOptions: SelectOption$4[];
|
|
1028
1028
|
}
|
|
1029
1029
|
declare const CreateIndividualView: ({ form, onCancel, onSubmit, isSubmitting, idTypeOptions, productOptions }: CreateIndividualViewProps) => react_jsx_runtime.JSX.Element;
|
|
1030
1030
|
|
|
@@ -1101,7 +1101,7 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
|
|
|
1101
1101
|
|
|
1102
1102
|
declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
|
|
1103
1103
|
|
|
1104
|
-
interface SelectOption$
|
|
1104
|
+
interface SelectOption$3 {
|
|
1105
1105
|
value: string;
|
|
1106
1106
|
label: string;
|
|
1107
1107
|
}
|
|
@@ -1120,7 +1120,7 @@ interface BusinessProfileCardProps {
|
|
|
1120
1120
|
onToggleIdNumberVisibility?: () => void;
|
|
1121
1121
|
isLoadingIdNumber?: boolean;
|
|
1122
1122
|
revealedIdNumber?: string | null;
|
|
1123
|
-
businessEntityTypeOptions?: SelectOption$
|
|
1123
|
+
businessEntityTypeOptions?: SelectOption$3[];
|
|
1124
1124
|
}
|
|
1125
1125
|
declare const BusinessProfileCard: ({ data, businessId, identityVerification, onDataChange, isEditing, onToggleEdit, className, hideActions, onProductIdClick, onRevealIdNumber, isIdNumberRevealed, onToggleIdNumberVisibility, isLoadingIdNumber, revealedIdNumber, businessEntityTypeOptions }: BusinessProfileCardProps) => react_jsx_runtime.JSX.Element;
|
|
1126
1126
|
|
|
@@ -1251,7 +1251,7 @@ interface ListPageProps {
|
|
|
1251
1251
|
}
|
|
1252
1252
|
declare const ListPage: React$1.ForwardRefExoticComponent<ListPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1253
1253
|
|
|
1254
|
-
interface OptionItem {
|
|
1254
|
+
interface OptionItem$4 {
|
|
1255
1255
|
value: string;
|
|
1256
1256
|
label: string;
|
|
1257
1257
|
}
|
|
@@ -1289,10 +1289,10 @@ interface CreateFeeViewProps {
|
|
|
1289
1289
|
onSubmit: (e: React.FormEvent) => void;
|
|
1290
1290
|
onCancel: () => void;
|
|
1291
1291
|
isSubmitting?: boolean;
|
|
1292
|
-
feeTypeOptions: OptionItem[];
|
|
1293
|
-
transactionGroupOptions: OptionItem[];
|
|
1294
|
-
transactionTypeOptions: OptionItem[];
|
|
1295
|
-
associatedEntityTypeOptions: OptionItem[];
|
|
1292
|
+
feeTypeOptions: OptionItem$4[];
|
|
1293
|
+
transactionGroupOptions: OptionItem$4[];
|
|
1294
|
+
transactionTypeOptions: OptionItem$4[];
|
|
1295
|
+
associatedEntityTypeOptions: OptionItem$4[];
|
|
1296
1296
|
}
|
|
1297
1297
|
declare const CreateFeeView: ({ formData, onFieldChange, onSameDayChange, transactionScope, onTransactionScopeChange, transactionGroups, onTransactionGroupsChange, transactionTypes, onTransactionTypesChange, tiers, newTier, onNewTierChange, onAddTier, onRemoveTier, nextStartCount, onSubmit, onCancel, isSubmitting, feeTypeOptions, transactionGroupOptions, transactionTypeOptions, associatedEntityTypeOptions, }: CreateFeeViewProps) => react_jsx_runtime.JSX.Element;
|
|
1298
1298
|
|
|
@@ -1336,7 +1336,7 @@ interface FeeFilters {
|
|
|
1336
1336
|
transactionTypes: string[];
|
|
1337
1337
|
}
|
|
1338
1338
|
|
|
1339
|
-
interface SelectOption$
|
|
1339
|
+
interface SelectOption$2 {
|
|
1340
1340
|
value: string;
|
|
1341
1341
|
label: string;
|
|
1342
1342
|
}
|
|
@@ -1347,11 +1347,253 @@ interface FeesViewProps {
|
|
|
1347
1347
|
onApplyFilters: () => void;
|
|
1348
1348
|
onCreateFee: () => void;
|
|
1349
1349
|
table: React.ReactNode;
|
|
1350
|
-
productOptions: SelectOption$
|
|
1351
|
-
programOptions: SelectOption$
|
|
1350
|
+
productOptions: SelectOption$2[];
|
|
1351
|
+
programOptions: SelectOption$2[];
|
|
1352
1352
|
}
|
|
1353
1353
|
declare const FeesView: ({ filters, onFilterChange, onResetFilters, onApplyFilters, onCreateFee, table, productOptions, programOptions, }: FeesViewProps) => react_jsx_runtime.JSX.Element;
|
|
1354
1354
|
|
|
1355
|
+
interface DevelopersViewProps {
|
|
1356
|
+
table: React.ReactNode;
|
|
1357
|
+
onCreateDeveloper: () => void;
|
|
1358
|
+
}
|
|
1359
|
+
declare const DevelopersView: ({ table, onCreateDeveloper, }: DevelopersViewProps) => react_jsx_runtime.JSX.Element;
|
|
1360
|
+
|
|
1361
|
+
interface Developer {
|
|
1362
|
+
id: string;
|
|
1363
|
+
name: string;
|
|
1364
|
+
enableIpRestrictions: boolean;
|
|
1365
|
+
whitelistedIpAddresses: string[];
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
interface OptionItem$3 {
|
|
1369
|
+
value: string;
|
|
1370
|
+
label: string;
|
|
1371
|
+
}
|
|
1372
|
+
interface DeveloperDetailViewProps {
|
|
1373
|
+
developer: Developer;
|
|
1374
|
+
enableIpRestrictionsOptions: OptionItem$3[];
|
|
1375
|
+
onEnableIpRestrictionsChange: (value: string) => void;
|
|
1376
|
+
whitelistDialogOpen: boolean;
|
|
1377
|
+
onWhitelistDialogOpenChange: (open: boolean) => void;
|
|
1378
|
+
newIpAddress: string;
|
|
1379
|
+
onNewIpAddressChange: (value: string) => void;
|
|
1380
|
+
onWhitelistSubmit: () => void;
|
|
1381
|
+
isSubmittingWhitelist: boolean;
|
|
1382
|
+
onRemoveIpAddress: (ip: string) => void;
|
|
1383
|
+
}
|
|
1384
|
+
declare const DeveloperDetailView: ({ developer, enableIpRestrictionsOptions, onEnableIpRestrictionsChange, whitelistDialogOpen, onWhitelistDialogOpenChange, newIpAddress, onNewIpAddressChange, onWhitelistSubmit, isSubmittingWhitelist, onRemoveIpAddress, }: DeveloperDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1385
|
+
|
|
1386
|
+
interface OptionItem$2 {
|
|
1387
|
+
value: string;
|
|
1388
|
+
label: string;
|
|
1389
|
+
}
|
|
1390
|
+
interface CreateDeveloperFormData {
|
|
1391
|
+
id: string;
|
|
1392
|
+
name: string;
|
|
1393
|
+
enableIpRestrictions: string;
|
|
1394
|
+
}
|
|
1395
|
+
interface CreateDeveloperViewProps {
|
|
1396
|
+
formData: CreateDeveloperFormData;
|
|
1397
|
+
onFieldChange: (field: keyof CreateDeveloperFormData, value: string) => void;
|
|
1398
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
1399
|
+
onCancel: () => void;
|
|
1400
|
+
isSubmitting: boolean;
|
|
1401
|
+
enableIpRestrictionsOptions: OptionItem$2[];
|
|
1402
|
+
}
|
|
1403
|
+
declare const CreateDeveloperView: ({ formData, onFieldChange, onSubmit, onCancel, isSubmitting, enableIpRestrictionsOptions, }: CreateDeveloperViewProps) => react_jsx_runtime.JSX.Element;
|
|
1404
|
+
|
|
1405
|
+
interface ProductsViewProps {
|
|
1406
|
+
table: React.ReactNode;
|
|
1407
|
+
onCreateProduct: () => void;
|
|
1408
|
+
}
|
|
1409
|
+
declare const ProductsView: ({ table, onCreateProduct, }: ProductsViewProps) => react_jsx_runtime.JSX.Element;
|
|
1410
|
+
|
|
1411
|
+
type ProductOperatingModel = "regulated_fi" | "licensed" | "non_licensed";
|
|
1412
|
+
type ProductCIPConfig = "bypass" | "trust_verify" | "bank_verify";
|
|
1413
|
+
type ProductAccountType = "individual" | "business" | "both";
|
|
1414
|
+
type ProductOfacOption = "SYNC" | "ASYNC";
|
|
1415
|
+
interface Product {
|
|
1416
|
+
id: string;
|
|
1417
|
+
name: string;
|
|
1418
|
+
programId: string;
|
|
1419
|
+
program: string;
|
|
1420
|
+
tenantId: string;
|
|
1421
|
+
tenant: string;
|
|
1422
|
+
operatingModel: ProductOperatingModel;
|
|
1423
|
+
active: boolean;
|
|
1424
|
+
settlementEmails: string[];
|
|
1425
|
+
prefix: string;
|
|
1426
|
+
suffix: string;
|
|
1427
|
+
length: number;
|
|
1428
|
+
interestRate: number;
|
|
1429
|
+
interestPayoutDate: number;
|
|
1430
|
+
duplicatePaymentCheckDays: number;
|
|
1431
|
+
cipConfig: ProductCIPConfig;
|
|
1432
|
+
accountType: ProductAccountType;
|
|
1433
|
+
customerAccountType: ProductAccountType;
|
|
1434
|
+
ofacOption: ProductOfacOption;
|
|
1435
|
+
ofacThreshold: number;
|
|
1436
|
+
enablePreset: boolean;
|
|
1437
|
+
interestPayableAccountNumber: string;
|
|
1438
|
+
achHoldDays: number;
|
|
1439
|
+
checkDepositHoldDays: number;
|
|
1440
|
+
createdAt: string;
|
|
1441
|
+
updatedAt: string;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
type ProductTimelineEvent = {
|
|
1445
|
+
id: string;
|
|
1446
|
+
timestamp: string;
|
|
1447
|
+
performedBy: string;
|
|
1448
|
+
type: "created";
|
|
1449
|
+
} | {
|
|
1450
|
+
id: string;
|
|
1451
|
+
timestamp: string;
|
|
1452
|
+
performedBy: string;
|
|
1453
|
+
type: "status_change";
|
|
1454
|
+
from: string;
|
|
1455
|
+
to: string;
|
|
1456
|
+
note?: string;
|
|
1457
|
+
} | {
|
|
1458
|
+
id: string;
|
|
1459
|
+
timestamp: string;
|
|
1460
|
+
performedBy: string;
|
|
1461
|
+
type: "info_update";
|
|
1462
|
+
changes: FieldChange$1[];
|
|
1463
|
+
};
|
|
1464
|
+
|
|
1465
|
+
interface SelectOption$1 {
|
|
1466
|
+
value: string;
|
|
1467
|
+
label: string;
|
|
1468
|
+
}
|
|
1469
|
+
interface ProductDetailsFormData {
|
|
1470
|
+
name: string;
|
|
1471
|
+
settlementEmails: string[];
|
|
1472
|
+
interestRate: number;
|
|
1473
|
+
operatingModel: string;
|
|
1474
|
+
interestPayoutDate: number;
|
|
1475
|
+
duplicatePaymentCheckDays: number;
|
|
1476
|
+
cipConfig: string;
|
|
1477
|
+
accountType: string;
|
|
1478
|
+
customerAccountType: string;
|
|
1479
|
+
ofacOption: string;
|
|
1480
|
+
ofacThreshold: number;
|
|
1481
|
+
enablePreset: string;
|
|
1482
|
+
interestPayableAccountNumber: string;
|
|
1483
|
+
active: string;
|
|
1484
|
+
}
|
|
1485
|
+
interface FundsAvailabilityFormData {
|
|
1486
|
+
achHoldDays: number;
|
|
1487
|
+
checkDepositHoldDays: number;
|
|
1488
|
+
}
|
|
1489
|
+
interface ProductDetailViewProps {
|
|
1490
|
+
product: Product;
|
|
1491
|
+
timeline: ProductTimelineEvent[];
|
|
1492
|
+
operatingModelOptions: SelectOption$1[];
|
|
1493
|
+
cipConfigOptions: SelectOption$1[];
|
|
1494
|
+
accountTypeOptions: SelectOption$1[];
|
|
1495
|
+
customerAccountTypeOptions: SelectOption$1[];
|
|
1496
|
+
activeOptions: SelectOption$1[];
|
|
1497
|
+
ofacOptionOptions: SelectOption$1[];
|
|
1498
|
+
enablePresetOptions: SelectOption$1[];
|
|
1499
|
+
onSaveDetails: (data: ProductDetailsFormData) => void | Promise<void>;
|
|
1500
|
+
onSaveFundsAvailability: (data: FundsAvailabilityFormData) => void | Promise<void>;
|
|
1501
|
+
onProgramClick: (programId: string) => void;
|
|
1502
|
+
onTenantClick: (tenantId: string) => void;
|
|
1503
|
+
onCounterpartiesClick: () => void;
|
|
1504
|
+
onLimitsClick: () => void;
|
|
1505
|
+
onFeesClick: () => void;
|
|
1506
|
+
}
|
|
1507
|
+
declare const ProductDetailView: ({ product, timeline, operatingModelOptions, cipConfigOptions, accountTypeOptions, customerAccountTypeOptions, activeOptions, ofacOptionOptions, enablePresetOptions, onSaveDetails, onSaveFundsAvailability, onProgramClick, onTenantClick, onCounterpartiesClick, onLimitsClick, onFeesClick, }: ProductDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1508
|
+
|
|
1509
|
+
interface OptionItem$1 {
|
|
1510
|
+
value: string;
|
|
1511
|
+
label: string;
|
|
1512
|
+
disabled?: boolean;
|
|
1513
|
+
}
|
|
1514
|
+
interface CreateProductFormData {
|
|
1515
|
+
productName: string;
|
|
1516
|
+
programId: string;
|
|
1517
|
+
tenantId: string;
|
|
1518
|
+
isActive: string;
|
|
1519
|
+
accountType: string;
|
|
1520
|
+
customerAccountType: string;
|
|
1521
|
+
operatingModel: string;
|
|
1522
|
+
cipConfig: string;
|
|
1523
|
+
ofacOption: string;
|
|
1524
|
+
ofacThreshold: string;
|
|
1525
|
+
length: string;
|
|
1526
|
+
duplicatePaymentDays: string;
|
|
1527
|
+
productSettlementEmails: string;
|
|
1528
|
+
enablePreset: string;
|
|
1529
|
+
prefix: string;
|
|
1530
|
+
interestRate: string;
|
|
1531
|
+
interestPayDayOfMonth: string;
|
|
1532
|
+
interestPayableAccountNumber: string;
|
|
1533
|
+
}
|
|
1534
|
+
interface CreateProductViewProps {
|
|
1535
|
+
formData: CreateProductFormData;
|
|
1536
|
+
onFieldChange: (field: keyof CreateProductFormData, value: string) => void;
|
|
1537
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
1538
|
+
onCancel: () => void;
|
|
1539
|
+
isSubmitting: boolean;
|
|
1540
|
+
programOptions: OptionItem$1[];
|
|
1541
|
+
tenantOptions: OptionItem$1[];
|
|
1542
|
+
isActiveOptions: OptionItem$1[];
|
|
1543
|
+
accountTypeOptions: OptionItem$1[];
|
|
1544
|
+
customerAccountTypeOptions: OptionItem$1[];
|
|
1545
|
+
operatingModelOptions: OptionItem$1[];
|
|
1546
|
+
cipConfigOptions: OptionItem$1[];
|
|
1547
|
+
ofacOptionOptions: OptionItem$1[];
|
|
1548
|
+
enablePresetOptions: OptionItem$1[];
|
|
1549
|
+
showInterestFields: boolean;
|
|
1550
|
+
showPrefixField: boolean;
|
|
1551
|
+
}
|
|
1552
|
+
declare const CreateProductView: ({ formData, onFieldChange, onSubmit, onCancel, isSubmitting, programOptions, tenantOptions, isActiveOptions, accountTypeOptions, customerAccountTypeOptions, operatingModelOptions, cipConfigOptions, ofacOptionOptions, enablePresetOptions, showInterestFields, showPrefixField, }: CreateProductViewProps) => react_jsx_runtime.JSX.Element;
|
|
1553
|
+
|
|
1554
|
+
interface ProgramsViewProps {
|
|
1555
|
+
table: React.ReactNode;
|
|
1556
|
+
onCreateProgram: () => void;
|
|
1557
|
+
}
|
|
1558
|
+
declare const ProgramsView: ({ table, onCreateProgram, }: ProgramsViewProps) => react_jsx_runtime.JSX.Element;
|
|
1559
|
+
|
|
1560
|
+
interface Program {
|
|
1561
|
+
id: string;
|
|
1562
|
+
name: string;
|
|
1563
|
+
achODFI: string;
|
|
1564
|
+
programType: string;
|
|
1565
|
+
operatingModel: string;
|
|
1566
|
+
active: boolean;
|
|
1567
|
+
createdAt: string;
|
|
1568
|
+
updatedAt: string;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
interface ProgramDetailViewProps {
|
|
1572
|
+
program: Program;
|
|
1573
|
+
}
|
|
1574
|
+
declare const ProgramDetailView: ({ program }: ProgramDetailViewProps) => react_jsx_runtime.JSX.Element;
|
|
1575
|
+
|
|
1576
|
+
interface OptionItem {
|
|
1577
|
+
value: string;
|
|
1578
|
+
label: string;
|
|
1579
|
+
}
|
|
1580
|
+
interface CreateProgramFormData {
|
|
1581
|
+
programName: string;
|
|
1582
|
+
programType: string;
|
|
1583
|
+
operatingModel: string;
|
|
1584
|
+
achODFI: string;
|
|
1585
|
+
}
|
|
1586
|
+
interface CreateProgramViewProps {
|
|
1587
|
+
formData: CreateProgramFormData;
|
|
1588
|
+
onFieldChange: (field: keyof CreateProgramFormData, value: string) => void;
|
|
1589
|
+
onSubmit: (e: React.FormEvent) => void;
|
|
1590
|
+
onCancel: () => void;
|
|
1591
|
+
isSubmitting: boolean;
|
|
1592
|
+
programTypeOptions: OptionItem[];
|
|
1593
|
+
operatingModelOptions: OptionItem[];
|
|
1594
|
+
}
|
|
1595
|
+
declare const CreateProgramView: ({ formData, onFieldChange, onSubmit, onCancel, isSubmitting, programTypeOptions, operatingModelOptions, }: CreateProgramViewProps) => react_jsx_runtime.JSX.Element;
|
|
1596
|
+
|
|
1355
1597
|
interface StatementHeader {
|
|
1356
1598
|
account?: string;
|
|
1357
1599
|
productId?: string;
|
|
@@ -1733,12 +1975,34 @@ interface ReconExceptionsViewProps {
|
|
|
1733
1975
|
}
|
|
1734
1976
|
declare function ReconExceptionsView({ fromDate, toDate, transactionType, transactionTypeOptions, dataLoaded, canMatch, braidTitle, fedTitle, braidTable, fedTable, onFromDateChange, onToDateChange, onTransactionTypeChange, onSearch, onMatch, }: ReconExceptionsViewProps): react_jsx_runtime.JSX.Element;
|
|
1735
1977
|
|
|
1978
|
+
type ReconFileType = "ACH" | "Wire";
|
|
1979
|
+
interface ReconFileTypeOption {
|
|
1980
|
+
value: ReconFileType;
|
|
1981
|
+
label: string;
|
|
1982
|
+
description: string;
|
|
1983
|
+
icon: "ach" | "wire";
|
|
1984
|
+
}
|
|
1985
|
+
|
|
1736
1986
|
interface ReconUploadViewProps {
|
|
1737
1987
|
table: ReactNode;
|
|
1738
|
-
uploadDialog: ReactNode;
|
|
1739
1988
|
onOpenUploadDialog: () => void;
|
|
1989
|
+
uploadDialogOpen: boolean;
|
|
1990
|
+
onUploadDialogOpenChange: (open: boolean) => void;
|
|
1991
|
+
fileType: ReconFileType | null;
|
|
1992
|
+
selectedFile: File | null;
|
|
1993
|
+
isUploading: boolean;
|
|
1994
|
+
fileTypeOptions: ReconFileTypeOption[];
|
|
1995
|
+
acceptedFileTypes: string;
|
|
1996
|
+
acceptedFileTypesLabel: string;
|
|
1997
|
+
fileInputRef: RefObject<HTMLInputElement>;
|
|
1998
|
+
onFileTypeChange: (type: ReconFileType) => void;
|
|
1999
|
+
onFileChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
2000
|
+
onRemoveFile: () => void;
|
|
2001
|
+
onSelectFileClick: () => void;
|
|
2002
|
+
onUpload: () => void;
|
|
2003
|
+
onCancelUpload: () => void;
|
|
1740
2004
|
}
|
|
1741
|
-
declare function ReconUploadView({ table,
|
|
2005
|
+
declare function ReconUploadView({ table, onOpenUploadDialog, uploadDialogOpen, onUploadDialogOpenChange, fileType, selectedFile, isUploading, fileTypeOptions, acceptedFileTypes, acceptedFileTypesLabel, fileInputRef, onFileTypeChange, onFileChange, onRemoveFile, onSelectFileClick, onUpload, onCancelUpload, }: ReconUploadViewProps): react_jsx_runtime.JSX.Element;
|
|
1742
2006
|
|
|
1743
2007
|
interface FileTypeOption {
|
|
1744
2008
|
value: string;
|
|
@@ -2776,4 +3040,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
|
|
|
2776
3040
|
*/
|
|
2777
3041
|
declare function downloadCSV(content: string, filename: string): void;
|
|
2778
3042
|
|
|
2779
|
-
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, Developers, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, 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, Products, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$
|
|
3043
|
+
export { A314ADetailView, type A314ADetailViewProps, type A314AFiltersState, A314AView, type A314AViewProps, ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, type ACHNOCChangeData, type ACHNOCChangeFieldsConfig, ACHNOCView, type ACHProcessingDetailItem, ACHProcessingDetailView, ACHProcessingView, ACHReturnView, ACHSettlementView, 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, type CreateDeveloperFormData, CreateDeveloperView, type CreateDeveloperViewProps, CreateFeeView, type CreateFeeViewProps, CreateIndividual, CreateIndividualView, type CreateProductFormData, CreateProductView, type CreateProductViewProps, type CreateProgramFormData, CreateProgramView, type CreateProgramViewProps, CreateVelocityLimit, type CreateVelocityLimitFormData, CreateVelocityLimitView, type CreateVelocityLimitViewProps, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, DeveloperDetailView, type DeveloperDetailViewProps, Developers, DevelopersView, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, type ErrorDetailAction, FeeDetailView, type FeeTypeOption, Fees, FeesView, type FilterOptions, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, type FundsAvailabilityFormData, 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, ProductDetailView, type ProductDetailsFormData, Products, ProductsView, ProgramDetailView, ProgramsView, ReceiverCard, ReconExceptions, ReconExceptionsView, type ReconExceptionsViewProps, ReconUpload, ReconUploadView, type ReconUploadViewProps, ResolveAlertDialog, ResponsiveGrid, type RestrictedEntity, ReturnTransactionDialog, type RowsPerPageOption, ScrollArea, ScrollBar, type SelectOption$8 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, type WireProcessingDetailItem, WireProcessingDetailView, WireProcessingView, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, newTransactionSchema, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
|