@stackedapp/types 1.14.6 → 1.15.0

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.
@@ -604,7 +604,7 @@ interface IUser {
604
604
  }
605
605
 
606
606
  interface IPlayerSnapshot {
607
- _id: string;
607
+ _id: Stringable;
608
608
  gameId: string;
609
609
  playerId: string;
610
610
  createdAt?: number;
@@ -1148,19 +1148,19 @@ interface IThirdPartyApp {
1148
1148
  */
1149
1149
  interface IActiveListener {
1150
1150
  /** Listener config ID */
1151
- _id: string;
1151
+ _id: Stringable;
1152
1152
  /** Listener name (e.g., "Ronin $PIXEL Transfer") */
1153
1153
  name: string;
1154
1154
  /** Populated contract reference */
1155
1155
  contract_id: {
1156
- _id: string;
1156
+ _id: Stringable;
1157
1157
  contract_address: string;
1158
1158
  name: string;
1159
1159
  symbol: string;
1160
1160
  };
1161
1161
  /** Populated RPC provider reference */
1162
1162
  rpc_provider_config_id: {
1163
- _id: string;
1163
+ _id: Stringable;
1164
1164
  name: string;
1165
1165
  network: string;
1166
1166
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackedapp/types",
3
- "version": "1.14.6",
3
+ "version": "1.15.0",
4
4
  "description": "Public types for Stacked platform SDK",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/stacked-types.d.ts",