@liquidcommerce/elements-sdk 2.7.4 → 2.7.5
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/index.checkout.esm.js +6478 -6501
- package/dist/index.esm.js +11033 -11040
- package/dist/types/core/api/auth-client.service.d.ts +0 -3
- package/package.json +1 -1
|
@@ -44,7 +44,6 @@ export declare class AuthClientService {
|
|
|
44
44
|
private readonly clientConfig;
|
|
45
45
|
private accessToken;
|
|
46
46
|
private tokenExpiration;
|
|
47
|
-
private authPromise;
|
|
48
47
|
private refreshPromise;
|
|
49
48
|
private constructor();
|
|
50
49
|
static getInstance(config: IAuthConfig): AuthClientService;
|
|
@@ -52,11 +51,9 @@ export declare class AuthClientService {
|
|
|
52
51
|
success: boolean;
|
|
53
52
|
configs?: IAllConfigs;
|
|
54
53
|
}>;
|
|
55
|
-
authenticate(): Promise<boolean>;
|
|
56
54
|
refreshToken(): Promise<boolean>;
|
|
57
55
|
get<TData = unknown>(path: string, options?: IHttpRequestOptions): Promise<ApiResult<TData>>;
|
|
58
56
|
post<TData = unknown>(path: string, options?: IHttpRequestOptions): Promise<ApiResult<TData>>;
|
|
59
|
-
private performAuthentication;
|
|
60
57
|
private performTokenRefresh;
|
|
61
58
|
private request;
|
|
62
59
|
private handleSuccessResponse;
|
package/package.json
CHANGED