@adyen/kyc-components 3.30.3 → 3.30.4
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.
|
@@ -14493,6 +14493,12 @@ const getAccountIdentificationFromPayoutAccountSchema = (payoutAccount, bankCoun
|
|
|
14493
14493
|
...localAccount,
|
|
14494
14494
|
sortCode: payoutAccount.branchCode
|
|
14495
14495
|
};
|
|
14496
|
+
case "prLocal":
|
|
14497
|
+
return {
|
|
14498
|
+
...localAccount,
|
|
14499
|
+
type: "usLocal",
|
|
14500
|
+
routingNumber: payoutAccount.branchCode
|
|
14501
|
+
};
|
|
14496
14502
|
case "usLocal":
|
|
14497
14503
|
return {
|
|
14498
14504
|
...localAccount,
|
|
@@ -41802,7 +41808,7 @@ const ConfigurationApiProvider = ({
|
|
|
41802
41808
|
isEmbeddedDropin,
|
|
41803
41809
|
loadingContext
|
|
41804
41810
|
} = authContext;
|
|
41805
|
-
const sdkVersion = "3.30.
|
|
41811
|
+
const sdkVersion = "3.30.4";
|
|
41806
41812
|
useAnalytics({
|
|
41807
41813
|
onUserEvent,
|
|
41808
41814
|
legalEntityId: rootLegalEntityId,
|
|
@@ -42487,7 +42493,7 @@ const DebugModal = ({
|
|
|
42487
42493
|
};
|
|
42488
42494
|
const copyToClipboard = async () => {
|
|
42489
42495
|
const toCopy = {
|
|
42490
|
-
sdkVersion: "3.30.
|
|
42496
|
+
sdkVersion: "3.30.4",
|
|
42491
42497
|
experiments: Object.fromEntries(allExperimentsWithValues),
|
|
42492
42498
|
settings: Object.fromEntries(allSettingsWithValues)
|
|
42493
42499
|
};
|
|
@@ -42526,7 +42532,7 @@ const DebugModal = ({
|
|
|
42526
42532
|
children: [jsxs("div", {
|
|
42527
42533
|
className: "adyen-kyc-debug-modal__meta",
|
|
42528
42534
|
children: [jsxs("span", {
|
|
42529
|
-
children: ["SDK version: ", "3.30.
|
|
42535
|
+
children: ["SDK version: ", "3.30.4"]
|
|
42530
42536
|
}), jsxs("span", {
|
|
42531
42537
|
children: ["rootLegalEntityId: ", rootLegalEntityId]
|
|
42532
42538
|
})]
|
|
@@ -69,12 +69,18 @@ export interface UKLocalAccountIdentification {
|
|
|
69
69
|
accountNumber: string;
|
|
70
70
|
sortCode: string;
|
|
71
71
|
}
|
|
72
|
+
export interface PRLocalAccountIdentification {
|
|
73
|
+
type: 'prLocal';
|
|
74
|
+
accountNumber: string;
|
|
75
|
+
routingNumber: string;
|
|
76
|
+
accountType?: 'checking' | 'savings';
|
|
77
|
+
}
|
|
72
78
|
export interface USLocalAccountIdentification {
|
|
73
79
|
type: 'usLocal';
|
|
74
80
|
accountNumber: string;
|
|
75
81
|
routingNumber: string;
|
|
76
82
|
accountType?: 'checking' | 'savings';
|
|
77
83
|
}
|
|
78
|
-
export type LocalAccountIdentification = AULocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | USLocalAccountIdentification;
|
|
84
|
+
export type LocalAccountIdentification = AULocalAccountIdentification | CALocalAccountIdentification | CZLocalAccountIdentification | DKLocalAccountIdentification | HKLocalAccountIdentification | HULocalAccountIdentification | NOLocalAccountIdentification | NZLocalAccountIdentification | PLLocalAccountIdentification | SELocalAccountIdentification | SGLocalAccountIdentification | UKLocalAccountIdentification | PRLocalAccountIdentification | USLocalAccountIdentification;
|
|
79
85
|
export type AccountIdentification = IbanAccountIdentification | NumberAndBicAccountIdentification | LocalAccountIdentification;
|
|
80
86
|
export {};
|