ballrush-core 0.11.0 → 0.12.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.
@@ -120,3 +120,10 @@ export interface EditSession {
120
120
  cursor: CursorPos;
121
121
  selectedPlayerId: number | null;
122
122
  }
123
+ export interface ReorderSession {
124
+ templateId: number;
125
+ groupId: number;
126
+ participants: ParticipantEvent[];
127
+ cursorIndex: number;
128
+ selectedIndex: number | null;
129
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ballrush-core",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "private": false,
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",