@yuno-payments/sdk-web-types 5.4.0 → 5.4.2
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/global.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/global.d.ts
CHANGED
|
@@ -756,6 +756,7 @@ declare namespace ExternalButtonsNameSpace {
|
|
|
756
756
|
height?: number;
|
|
757
757
|
width?: number;
|
|
758
758
|
borderRadius?: number;
|
|
759
|
+
locale?: string;
|
|
759
760
|
};
|
|
760
761
|
type ExternalButtonsConfig = {
|
|
761
762
|
googlePay?: GooglePayButtonConfig;
|
|
@@ -884,7 +885,7 @@ interface YunoConfig {
|
|
|
884
885
|
type: string;
|
|
885
886
|
name: string;
|
|
886
887
|
}) => void;
|
|
887
|
-
yunoPaymentResult?: (status: Status) => void;
|
|
888
|
+
yunoPaymentResult?: (status: Status, subStatus?: string) => void;
|
|
888
889
|
yunoError?: (message: string, data?: any) => void;
|
|
889
890
|
onRendered?(): void;
|
|
890
891
|
onOneTimeTokenCreationStart?(): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -756,6 +756,7 @@ declare namespace ExternalButtonsNameSpace {
|
|
|
756
756
|
height?: number;
|
|
757
757
|
width?: number;
|
|
758
758
|
borderRadius?: number;
|
|
759
|
+
locale?: string;
|
|
759
760
|
};
|
|
760
761
|
type ExternalButtonsConfig = {
|
|
761
762
|
googlePay?: GooglePayButtonConfig;
|
|
@@ -884,7 +885,7 @@ interface YunoConfig {
|
|
|
884
885
|
type: string;
|
|
885
886
|
name: string;
|
|
886
887
|
}) => void;
|
|
887
|
-
yunoPaymentResult?: (status: Status) => void;
|
|
888
|
+
yunoPaymentResult?: (status: Status, subStatus?: string) => void;
|
|
888
889
|
yunoError?: (message: string, data?: any) => void;
|
|
889
890
|
onRendered?(): void;
|
|
890
891
|
onOneTimeTokenCreationStart?(): void;
|