@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.
- package/esm2022/lib/core/payment/requests/initialize/initialize-request-params.interface.mjs +1 -1
- package/esm2022/lib/core/payment/requests/initialize/initialize.service.mjs +7 -1
- package/esm2022/lib/core/payment/requests/submit/request/submit-request.class.mjs +1 -1
- package/esm2022/lib/core/payment/requests/sync/sync.service.mjs +10 -3
- package/esm2022/lib/core/settings/configuration.interface.mjs +1 -1
- package/esm2022/lib/core/settings/settings.service.mjs +7 -1
- package/esm2022/lib/core/user-behaviour-analytics/event-builder/event-builder.service.mjs +2 -1
- package/esm2022/lib/core/user-behaviour-analytics/event-builder/user-behaviour-event.interface.mjs +1 -1
- package/esm2022/lib/core-library.service.mjs +4 -1
- package/fesm2022/xsolla-payment-client-core.mjs +25 -2
- package/fesm2022/xsolla-payment-client-core.mjs.map +1 -1
- package/lib/core/payment/requests/initialize/initialize-request-params.interface.d.ts +1 -0
- package/lib/core/payment/requests/submit/request/submit-request.class.d.ts +1 -0
- package/lib/core/settings/configuration.interface.d.ts +1 -0
- package/lib/core/settings/settings.service.d.ts +2 -0
- package/lib/core/user-behaviour-analytics/event-builder/user-behaviour-event.interface.d.ts +1 -0
- package/lib/core-library.service.d.ts +1 -0
- package/package.json +1 -1
- package/xsolla-payment-client-core-0.2.105.tgz +0 -0
- package/xsolla-payment-client-core-0.2.103.tgz +0 -0
|
@@ -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
|
Binary file
|
|
Binary file
|