@scoreboardmax/api-types 1.0.19 → 1.0.21
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 +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -491,7 +491,7 @@ export interface Event {
|
|
|
491
491
|
resourceUri: string;
|
|
492
492
|
subscriptionResourceUri: string;
|
|
493
493
|
action: EventAction;
|
|
494
|
-
data: object
|
|
494
|
+
data: object;
|
|
495
495
|
}
|
|
496
496
|
export interface EventResponse {
|
|
497
497
|
object: string;
|
|
@@ -502,7 +502,7 @@ export interface EventResponse {
|
|
|
502
502
|
resourceUri: string;
|
|
503
503
|
subscriptionResourceUri: string;
|
|
504
504
|
action: EventAction;
|
|
505
|
-
data: object
|
|
505
|
+
data: object;
|
|
506
506
|
}
|
|
507
507
|
export interface FileListResponse {
|
|
508
508
|
url: string;
|
|
@@ -1101,7 +1101,7 @@ export interface WebsocketMessage {
|
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface WebsocketSubscriptionRequest {
|
|
1103
1103
|
connectionId: string;
|
|
1104
|
-
|
|
1104
|
+
sendInitialData?: boolean;
|
|
1105
1105
|
}
|
|
1106
1106
|
export interface WebsocketSubscriptionResponse {
|
|
1107
1107
|
connectionId: string;
|