@liquidcommerce/elements-sdk 2.5.5-beta.1 → 2.5.5-beta.2
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/README.md +0 -20
- package/dist/index.esm.js +8932 -9179
- package/dist/types/core/auth.service.d.ts +0 -2
- package/docs/DOCUMENTATION_INDEX.md +0 -1
- package/package.json +1 -1
- package/umd/elements.js +1 -1
- package/dist/types/core/circuit-breaker.service.d.ts +0 -54
|
@@ -7,7 +7,6 @@ export interface IAuthConfig {
|
|
|
7
7
|
export interface IHttpRequestOptions {
|
|
8
8
|
headers?: Record<string, string>;
|
|
9
9
|
body?: any;
|
|
10
|
-
critical?: boolean;
|
|
11
10
|
}
|
|
12
11
|
export interface IAuth {
|
|
13
12
|
token: string;
|
|
@@ -40,7 +39,6 @@ export declare class AuthService {
|
|
|
40
39
|
private readonly httpClient;
|
|
41
40
|
private readonly logger;
|
|
42
41
|
private readonly clientConfig;
|
|
43
|
-
private readonly circuitBreaker;
|
|
44
42
|
private constructor();
|
|
45
43
|
static getInstance(config: IAuthConfig): AuthService;
|
|
46
44
|
authenticate(): Promise<boolean>;
|
|
@@ -249,7 +249,6 @@ docs/
|
|
|
249
249
|
- [State Management](../README.md#state-management)
|
|
250
250
|
- [Event System (PubSub)](../README.md#event-system-pubsub)
|
|
251
251
|
- [Telemetry & Analytics](../README.md#telemetry--analytics)
|
|
252
|
-
- [Circuit Breaker](../README.md#circuit-breaker)
|
|
253
252
|
- [Command Pattern](../README.md#command-pattern)
|
|
254
253
|
|
|
255
254
|
### Troubleshooting
|
package/package.json
CHANGED