@stackedapp/types 1.14.7 → 1.15.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.
- package/dist/stacked-types.d.ts +6 -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;
|
|
@@ -1046,6 +1046,7 @@ type StackedContentStats = ContentStats;
|
|
|
1046
1046
|
* doc that defines a third party app
|
|
1047
1047
|
*/
|
|
1048
1048
|
interface IThirdPartyApp {
|
|
1049
|
+
_id: Stringable;
|
|
1049
1050
|
/** the organization_id from stytch for b2b auth */
|
|
1050
1051
|
stytchId?: string;
|
|
1051
1052
|
/** if true, then automatically add and connect this organization to the stacked User's app connections */
|
|
@@ -1148,19 +1149,19 @@ interface IThirdPartyApp {
|
|
|
1148
1149
|
*/
|
|
1149
1150
|
interface IActiveListener {
|
|
1150
1151
|
/** Listener config ID */
|
|
1151
|
-
_id:
|
|
1152
|
+
_id: Stringable;
|
|
1152
1153
|
/** Listener name (e.g., "Ronin $PIXEL Transfer") */
|
|
1153
1154
|
name: string;
|
|
1154
1155
|
/** Populated contract reference */
|
|
1155
1156
|
contract_id: {
|
|
1156
|
-
_id:
|
|
1157
|
+
_id: Stringable;
|
|
1157
1158
|
contract_address: string;
|
|
1158
1159
|
name: string;
|
|
1159
1160
|
symbol: string;
|
|
1160
1161
|
};
|
|
1161
1162
|
/** Populated RPC provider reference */
|
|
1162
1163
|
rpc_provider_config_id: {
|
|
1163
|
-
_id:
|
|
1164
|
+
_id: Stringable;
|
|
1164
1165
|
name: string;
|
|
1165
1166
|
network: string;
|
|
1166
1167
|
};
|
|
@@ -1189,6 +1190,7 @@ interface IActiveListener {
|
|
|
1189
1190
|
}
|
|
1190
1191
|
|
|
1191
1192
|
interface IAppState {
|
|
1193
|
+
_id: Stringable;
|
|
1192
1194
|
/**
|
|
1193
1195
|
* our app config. Just pixels using db for now, but
|
|
1194
1196
|
* could have config for pixels_data, too, and maybe
|