@stackedapp/types 1.14.0 → 1.14.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 +5 -0
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -340,6 +340,10 @@ interface ISurfacingCondition extends IBaseCondition {
|
|
|
340
340
|
offer_id?: string;
|
|
341
341
|
conditions?: ISurfacingCondition;
|
|
342
342
|
};
|
|
343
|
+
/** min time that player snapshot was created at */
|
|
344
|
+
minCreatedAt?: number;
|
|
345
|
+
/** max time that player snapshot was created at */
|
|
346
|
+
maxCreatedAt?: number;
|
|
343
347
|
}
|
|
344
348
|
|
|
345
349
|
interface IReward {
|
|
@@ -603,6 +607,7 @@ interface IPlayerSnapshot {
|
|
|
603
607
|
_id: string;
|
|
604
608
|
gameId: string;
|
|
605
609
|
playerId: string;
|
|
610
|
+
createdAt?: number;
|
|
606
611
|
/** when this was last linked to a unified user */
|
|
607
612
|
unifiedUserLinkedAt?: number;
|
|
608
613
|
/** when this was last unlinked to a unified user */
|