@scoreboardmax/api-types 1.0.22-next.0 → 1.0.22
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/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1205,16 +1205,19 @@ export interface WebsocketScoreboardSubscriptionRequest {
|
|
|
1205
1205
|
action: "sendmessage";
|
|
1206
1206
|
operation: WebsocketOperation.SubscribeScoreboard | WebsocketOperation.UnsubscribeScoreboard;
|
|
1207
1207
|
scoreboardId: string;
|
|
1208
|
+
appId?: string;
|
|
1208
1209
|
sendInitialData?: boolean;
|
|
1209
1210
|
token: string;
|
|
1210
1211
|
}
|
|
1211
1212
|
export interface WebsocketScoreboardSubscriptionResponse {
|
|
1212
1213
|
operation: WebsocketOperation.SubscribeScoreboard | WebsocketOperation.UnsubscribeScoreboard;
|
|
1213
1214
|
scoreboardId: string;
|
|
1215
|
+
appId?: string;
|
|
1214
1216
|
error?: ErrorResponse;
|
|
1215
1217
|
}
|
|
1216
1218
|
export interface WebsocketSubscriptionRequest {
|
|
1217
1219
|
connectionId: string;
|
|
1220
|
+
appId?: string;
|
|
1218
1221
|
sendInitialData?: boolean;
|
|
1219
1222
|
}
|
|
1220
1223
|
export interface WebsocketSubscriptionResponse {
|
|
@@ -1222,6 +1225,7 @@ export interface WebsocketSubscriptionResponse {
|
|
|
1222
1225
|
subscriptionResource: string;
|
|
1223
1226
|
subscriptionResourceUri: string;
|
|
1224
1227
|
accountId: string;
|
|
1228
|
+
appId?: string;
|
|
1225
1229
|
}
|
|
1226
1230
|
export interface WrestlingDataRequest {
|
|
1227
1231
|
period: WrestlingPeriod;
|