@stackedapp/types 1.14.0 → 1.14.1

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.
@@ -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 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackedapp/types",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Public types for Stacked platform SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/stacked-types.d.ts",