@stackedapp/types 1.6.0 → 1.6.2
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/stacked-types.d.ts +1 -1
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -771,7 +771,7 @@ type StackedBaseUser = Pick<IUser, '_id' | 'appConnections' | 'providers'>;
|
|
|
771
771
|
/** extra data populated into a stacked web/mobile app user */
|
|
772
772
|
interface StackedBaseUserExtra {
|
|
773
773
|
cryptoWallets?: Array<IUserCryptoWallet & {
|
|
774
|
-
balances
|
|
774
|
+
balances?: Record<string, number>;
|
|
775
775
|
}>;
|
|
776
776
|
}
|
|
777
777
|
type StackedUser = StackedBaseUser & StackedBaseUserExtra;
|