@xsolla/payment-client-core 0.2.103 → 0.2.105

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.
@@ -9,4 +9,5 @@ export interface InitializeRequestParams {
9
9
  saved_method_id?: number;
10
10
  save_payment_account_only: XpsBoolean;
11
11
  mobile?: XpsBoolean;
12
+ google_pay_instant_flow?: XpsBoolean;
12
13
  }
@@ -9,6 +9,7 @@ export declare class SubmitRequest extends XpsApiPartRequest {
9
9
  fields: Field[];
10
10
  form: UntypedFormGroup;
11
11
  dfpHash: string | null;
12
+ [key: string]: unknown;
12
13
  });
13
14
  private getFieldsValues;
14
15
  private splitCreditCardExpiration;
@@ -8,6 +8,7 @@ export interface InitConfiguration {
8
8
  sandbox?: boolean;
9
9
  topLevelDomain?: string;
10
10
  isApplePayInstantFlowEnabled?: boolean;
11
+ isGooglePayInstantFlowEnabled?: boolean | null;
11
12
  locale: string;
12
13
  /**
13
14
  * Custom API URL for dev/stage environments only.
@@ -27,6 +27,7 @@ export declare class SettingsService {
27
27
  private _token;
28
28
  private _topLevelDomain?;
29
29
  private _isApplePayInstantFlowEnabled;
30
+ private _isGooglePayInstantFlowEnabled;
30
31
  private sandboxMode;
31
32
  private _refer;
32
33
  constructor(secureApi: SecureApiClient);
@@ -35,6 +36,7 @@ export declare class SettingsService {
35
36
  private setDevApiUrl;
36
37
  get topLevelDomain(): string | undefined;
37
38
  get isApplePayInstantFlowEnabled(): boolean;
39
+ get isGooglePayInstantFlowEnabled(): boolean | null;
38
40
  get refer(): Refer;
39
41
  set refer(refer: Refer);
40
42
  private sendRequest;
@@ -33,6 +33,7 @@ export interface UserBehaviourEvent extends Invoice {
33
33
  user_operation_system: string | null;
34
34
  user_browser: string | null;
35
35
  user_browser_version: string | null;
36
+ user_agent: string | null;
36
37
  user_locale: string | null;
37
38
  user_utm: string | null;
38
39
  xsolla_product_tag: string | null;
@@ -126,6 +126,7 @@ export declare class CoreLibraryService {
126
126
  get formResponseValue(): FormResponse | null;
127
127
  get topLevelDomain(): string | undefined;
128
128
  get isApplePayInstantFlowEnabled(): boolean;
129
+ get isGooglePayInstantFlowEnabled(): boolean | null;
129
130
  get commonLogAttributes(): CommonLogAttributes;
130
131
  static ɵfac: i0.ɵɵFactoryDeclaration<CoreLibraryService, never>;
131
132
  static ɵprov: i0.ɵɵInjectableDeclaration<CoreLibraryService>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/payment-client-core",
3
- "version": "0.2.103",
3
+ "version": "0.2.105",
4
4
  "engines": {
5
5
  "node": ">=16.10.0",
6
6
  "npm": ">=8.11.0"