@connect-xyz/auth-js 1.36.0 → 1.38.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -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<Environment, string>;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connect-xyz/auth-js",
3
- "version": "1.36.0",
3
+ "version": "1.38.0",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",