@connect-xyz/withdraw-js 0.20.0 → 0.21.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
|
@@ -56,7 +56,7 @@ declare abstract class BaseJsSdk<Config extends BaseConfig<never> = BaseConfig>
|
|
|
56
56
|
private state;
|
|
57
57
|
private scriptLoadingPromise?;
|
|
58
58
|
protected abstract errorMessages: Record<BaseErrorMessageKeys, string>;
|
|
59
|
-
protected abstract scriptUrls: Record<
|
|
59
|
+
protected abstract scriptUrls: Record<string, string>;
|
|
60
60
|
protected abstract webComponentTag: string;
|
|
61
61
|
constructor(config: Config);
|
|
62
62
|
/**
|
|
@@ -117,7 +117,7 @@ export declare type ConnectWithdrawElement = SdkElement<WithdrawConfig>;
|
|
|
117
117
|
/**
|
|
118
118
|
* Environment configuration for the SDK
|
|
119
119
|
*/
|
|
120
|
-
export declare type Environment = 'sandbox' | 'production';
|
|
120
|
+
export declare type Environment = 'local' | 'dev' | 'cert' | 'prod' | 'sandbox' | 'production';
|
|
121
121
|
|
|
122
122
|
/**
|
|
123
123
|
* Generic error codes for all Connect applications
|