@xsolla/payment-client-core 0.2.97 → 0.2.98
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/esm2022/lib/core/payment/actions/redirect/redirect.action.class.mjs +12 -4
- package/esm2022/lib/core/payment/actions/show-mobile-payment-screen/show-mobile-payment-screen.action.class.mjs +5 -2
- package/esm2022/lib/core/payment/actions/three-ds/three-ds.action.class.mjs +20 -5
- package/esm2022/lib/core/payment/payment.service.mjs +2 -1
- package/esm2022/lib/core/payment/three-ds/api/status-three-ds/three-ds-checkout-form.interface.mjs +1 -1
- package/esm2022/lib/core/sdk-payment-systems/sdk-payment-systems-initial-data.interface.mjs +1 -1
- package/esm2022/lib/core/settings/settings.interface.mjs +1 -1
- package/esm2022/lib/shared/payment-methods-id.variable.mjs +3 -1
- package/fesm2022/xsolla-payment-client-core.mjs +42 -16
- package/fesm2022/xsolla-payment-client-core.mjs.map +1 -1
- package/lib/core/payment/actions/show-mobile-payment-screen/show-mobile-payment-screen.action.class.d.ts +1 -0
- package/lib/core/payment/actions/three-ds/three-ds.action.class.d.ts +4 -0
- package/lib/core/payment/three-ds/api/status-three-ds/three-ds-checkout-form.interface.d.ts +4 -0
- package/lib/core/sdk-payment-systems/sdk-payment-systems-initial-data.interface.d.ts +1 -0
- package/lib/core/settings/settings.interface.d.ts +1 -0
- package/lib/shared/payment-methods-id.variable.d.ts +2 -0
- package/package.json +1 -1
- package/xsolla-payment-client-core-0.2.98.tgz +0 -0
- package/xsolla-payment-client-core-0.2.97.tgz +0 -0
|
@@ -4,6 +4,7 @@ import { ShowMobilePaymentScreenAction, ShowMobilePaymentScreenActionType } from
|
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ShowMobilePaymentScreenActionCreator implements ActionCreator {
|
|
6
6
|
type: ShowMobilePaymentScreenActionType;
|
|
7
|
+
private readonly pids;
|
|
7
8
|
getActionData(response: SubmitResponse): ShowMobilePaymentScreenAction;
|
|
8
9
|
isSuitable(response: SubmitResponse): boolean;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShowMobilePaymentScreenActionCreator, never>;
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { ActionCreator } from '../action.interface';
|
|
2
2
|
import { ThreeDsAction, ThreeDsActionType } from './three-ds.action.type';
|
|
3
3
|
import { StatusChallenge } from '../../three-ds/three-ds-20/status-update.interface';
|
|
4
|
+
import { SettingsService } from '../../../settings/settings.service';
|
|
4
5
|
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ThreeDsActionCreator implements ActionCreator {
|
|
7
|
+
private readonly settingsService;
|
|
6
8
|
type: ThreeDsActionType;
|
|
9
|
+
constructor(settingsService: SettingsService);
|
|
7
10
|
getActionData(actionData: StatusChallenge): ThreeDsAction;
|
|
8
11
|
isSuitable(): boolean;
|
|
12
|
+
private enrichWithRedirectParams;
|
|
9
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<ThreeDsActionCreator, never>;
|
|
10
14
|
static ɵprov: i0.ɵɵInjectableDeclaration<ThreeDsActionCreator>;
|
|
11
15
|
}
|
|
@@ -5,3 +5,5 @@ export declare const docomoId = 3692;
|
|
|
5
5
|
export declare const softbankId = 3693;
|
|
6
6
|
export declare const auEasyPaymentId = 3694;
|
|
7
7
|
export declare const yMobileId = 3697;
|
|
8
|
+
export declare const mobilePaymentMethodId = 1738;
|
|
9
|
+
export declare const mobilePaymentMethodId2 = 2015;
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|