@vleap/warps 3.0.0-beta.185 → 3.0.0-beta.186
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.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -222,7 +222,7 @@ type WarpWalletDetails = {
|
|
|
222
222
|
privateKey?: string | null;
|
|
223
223
|
externalId?: string | null;
|
|
224
224
|
};
|
|
225
|
-
type WarpUserWallets = Record<WarpChainName, WarpWalletDetails | string | null
|
|
225
|
+
type WarpUserWallets = Partial<Record<WarpChainName, WarpWalletDetails | string | null>>;
|
|
226
226
|
type WarpProviderPreferences = Partial<Record<WarpChainEnv, string | WarpProviderConfig>>;
|
|
227
227
|
type WarpProviderConfig = {
|
|
228
228
|
url: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -222,7 +222,7 @@ type WarpWalletDetails = {
|
|
|
222
222
|
privateKey?: string | null;
|
|
223
223
|
externalId?: string | null;
|
|
224
224
|
};
|
|
225
|
-
type WarpUserWallets = Record<WarpChainName, WarpWalletDetails | string | null
|
|
225
|
+
type WarpUserWallets = Partial<Record<WarpChainName, WarpWalletDetails | string | null>>;
|
|
226
226
|
type WarpProviderPreferences = Partial<Record<WarpChainEnv, string | WarpProviderConfig>>;
|
|
227
227
|
type WarpProviderConfig = {
|
|
228
228
|
url: string;
|