@stackedapp/types 1.5.6 → 1.5.8
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
|
@@ -721,7 +721,7 @@ interface IPlayerIpInfo {
|
|
|
721
721
|
}
|
|
722
722
|
|
|
723
723
|
type Nullable<T> = {
|
|
724
|
-
[K in keyof T]
|
|
724
|
+
[K in keyof T]?: T[K] | null;
|
|
725
725
|
};
|
|
726
726
|
/** this is the Stacked platforms' copy of a user/entity's snapshot for the current app/game */
|
|
727
727
|
type StackedSnapshot = Nullable<Pick<IPlayerSnapshot, '_id' | 'gameId' | 'playerId' | 'unifiedUserLinkedAt' | 'unifiedUserUnlinkedAt' | 'referredById' | 'username' | 'snapshotLastUpdated' | 'offersLastChecked' | 'daysInGame' | 'loginStreak' | 'daysInGameLastUpdated' | 'dateSignedUp' | 'dynamic' | 'stakedTokens' | 'currencies' | 'levels' | 'quests' | 'trustScore' | 'trustLastUpdated' | 'achievements' | 'memberships' | 'cryptoWallets' | 'identifiers' | 'entityKind' | 'entityLinks'>>;
|