@stigg/js-client-sdk 0.47.0 → 0.48.0

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/client.d.ts CHANGED
@@ -36,7 +36,6 @@ export declare class Stigg implements StiggClient {
36
36
  * @returns The new client instance.
37
37
  */
38
38
  static initialize(configuration: ClientConfiguration): StiggClient;
39
- private static loadCustomerById;
40
39
  /**
41
40
  * Returns a Promise that tracks the client's initialization state.
42
41
  *
@@ -9,6 +9,7 @@ export declare type ClientConfiguration = {
9
9
  entitlementPollingInterval?: number;
10
10
  useEntitlementPolling?: boolean;
11
11
  logConfiguration?: LogConfiguration;
12
+ lazyLoad?: boolean;
12
13
  };
13
14
  export declare function validateConfiguration(configuration: ClientConfiguration, loggerService: LoggerService): void;
14
15
  export declare function getConfiguration(configuration: ClientConfiguration): Required<ClientConfiguration>;