@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.
@@ -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
  }
@@ -4,4 +4,8 @@ export interface ThreeDsCheckoutForm {
4
4
  params?: {
5
5
  [key: string]: string;
6
6
  };
7
+ redirect: {
8
+ isNewWindowRequired: boolean;
9
+ isSameWindowRequired: boolean;
10
+ };
7
11
  }
@@ -11,4 +11,5 @@ export interface SdkPaymentSystemsInitialData {
11
11
  data: string | null;
12
12
  locale: string;
13
13
  shouldHandleUserBackRedirectOnSdkSide: boolean;
14
+ isThreeDsIndependentWindows: boolean;
14
15
  }
@@ -32,6 +32,7 @@ export interface Settings {
32
32
  };
33
33
  disable_saved_methods?: boolean;
34
34
  is_independent_windows?: boolean;
35
+ is_three_ds_independent_windows?: boolean;
35
36
  purchase_external_id?: string;
36
37
  paystation2: {
37
38
  autoredirect_on_status?: AutoRedirectOnStatus;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/payment-client-core",
3
- "version": "0.2.97",
3
+ "version": "0.2.98",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^17.3.3",
6
6
  "@angular/core": "^17.3.3",