@adyen/kyc-components 3.38.0 → 3.38.1
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.
|
@@ -14626,7 +14626,7 @@ const payoutBaseMapping = {
|
|
|
14626
14626
|
"bankAccount.accountIdentification.clearingNumber": "payoutAccountDetails.branchCode",
|
|
14627
14627
|
"bankAccount.accountIdentification.bic": "payoutAccountDetails.swiftCode",
|
|
14628
14628
|
"bankAccount.accountIdentification.sortCode": "payoutAccountDetails.branchCode",
|
|
14629
|
-
"bankAccount.accountIdentification.routingNumber": "payoutAccountDetails.
|
|
14629
|
+
"bankAccount.accountIdentification.routingNumber": "payoutAccountDetails.branchCode"
|
|
14630
14630
|
};
|
|
14631
14631
|
const businessDetailsBaseMapping = {
|
|
14632
14632
|
"basicInformation.country": "organization.registeredAddress.country",
|
|
@@ -35079,7 +35079,8 @@ const useServiceAgreement = ({
|
|
|
35079
35079
|
handleServiceAgreementIsNotAvailableInThatLanguage,
|
|
35080
35080
|
agreementLanguage,
|
|
35081
35081
|
legalEntityId,
|
|
35082
|
-
serviceAgreementType
|
|
35082
|
+
serviceAgreementType,
|
|
35083
|
+
acceptanceId
|
|
35083
35084
|
]);
|
|
35084
35085
|
return {
|
|
35085
35086
|
loading,
|
|
@@ -41879,7 +41880,7 @@ const ConfigurationApiProvider = ({
|
|
|
41879
41880
|
}) => {
|
|
41880
41881
|
const authContext = useAuthContext();
|
|
41881
41882
|
const { isEmbeddedDropin, loadingContext } = authContext;
|
|
41882
|
-
const sdkVersion = "3.38.
|
|
41883
|
+
const sdkVersion = "3.38.1";
|
|
41883
41884
|
useAnalytics({
|
|
41884
41885
|
onUserEvent,
|
|
41885
41886
|
legalEntityId: rootLegalEntityId,
|
|
@@ -42572,7 +42573,7 @@ const DebugModal = ({ rootLegalEntityId, onExit, getRootLegalEntity }) => {
|
|
|
42572
42573
|
};
|
|
42573
42574
|
const copyToClipboard = async () => {
|
|
42574
42575
|
const toCopy = {
|
|
42575
|
-
sdkVersion: "3.38.
|
|
42576
|
+
sdkVersion: "3.38.1",
|
|
42576
42577
|
experiments: Object.fromEntries(allExperimentsWithValues),
|
|
42577
42578
|
settings: Object.fromEntries(allSettingsWithValues)
|
|
42578
42579
|
};
|
|
@@ -42637,7 +42638,7 @@ const DebugModal = ({ rootLegalEntityId, onExit, getRootLegalEntity }) => {
|
|
|
42637
42638
|
/* @__PURE__ */ jsx("div", { className: "adyen-kyc-debug-modal__meta", children: /* @__PURE__ */ jsx("table", { children: /* @__PURE__ */ jsxs("tbody", { children: [
|
|
42638
42639
|
/* @__PURE__ */ jsx("tr", { children: /* @__PURE__ */ jsxs("td", { children: [
|
|
42639
42640
|
/* @__PURE__ */ jsx("span", { className: "adyen-kyc-debug-modal__table-key", children: "SDK version" }),
|
|
42640
|
-
/* @__PURE__ */ jsx(Tag, { variant: "green", className: "adyen-kyc-tag--large", children: "3.38.
|
|
42641
|
+
/* @__PURE__ */ jsx(Tag, { variant: "green", className: "adyen-kyc-tag--large", children: "3.38.1" })
|
|
42641
42642
|
] }) }),
|
|
42642
42643
|
/* @__PURE__ */ jsx("tr", { children: /* @__PURE__ */ jsxs("td", { children: [
|
|
42643
42644
|
/* @__PURE__ */ jsx("span", { className: "adyen-kyc-debug-modal__table-key", children: "rootLegalEntityId" }),
|
|
@@ -12,7 +12,6 @@ export interface PayoutAccountSchema extends CurrencySchema, BankAccountNumberSc
|
|
|
12
12
|
iban?: string;
|
|
13
13
|
bankName?: string;
|
|
14
14
|
bankCode?: string;
|
|
15
|
-
routingNumber?: string;
|
|
16
15
|
}
|
|
17
16
|
export interface PayoutAccountProps extends BaseInnerFormProps<PayoutAccountSchema> {
|
|
18
17
|
country: CountryCode;
|