@connect-xyz/auth-js 1.37.0 → 1.39.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/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -143,7 +143,7 @@ declare abstract class BaseJsSdk<Config extends BaseConfig<never> = BaseConfig>
|
|
|
143
143
|
private state;
|
|
144
144
|
private scriptLoadingPromise?;
|
|
145
145
|
protected abstract errorMessages: Record<BaseErrorMessageKeys, string>;
|
|
146
|
-
protected abstract scriptUrls: Record<
|
|
146
|
+
protected abstract scriptUrls: Record<string, string>;
|
|
147
147
|
protected abstract webComponentTag: string;
|
|
148
148
|
constructor(config: Config);
|
|
149
149
|
/**
|
|
@@ -247,7 +247,7 @@ declare type DepositSubmittedEventData = {
|
|
|
247
247
|
/**
|
|
248
248
|
* Environment configuration for the SDK
|
|
249
249
|
*/
|
|
250
|
-
export declare type Environment = 'sandbox' | 'production';
|
|
250
|
+
export declare type Environment = 'local' | 'dev' | 'cert' | 'prod' | 'sandbox' | 'production';
|
|
251
251
|
|
|
252
252
|
/**
|
|
253
253
|
* Generic error codes for all Connect applications
|