@stackedapp/types 1.14.7 → 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.
- package/dist/stacked-types.d.ts +4 -4
- package/package.json +1 -1
package/dist/stacked-types.d.ts
CHANGED
|
@@ -604,7 +604,7 @@ interface IUser {
|
|
|
604
604
|
}
|
|
605
605
|
|
|
606
606
|
interface IPlayerSnapshot {
|
|
607
|
-
_id:
|
|
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:
|
|
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:
|
|
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:
|
|
1163
|
+
_id: Stringable;
|
|
1164
1164
|
name: string;
|
|
1165
1165
|
network: string;
|
|
1166
1166
|
};
|