@colyseus/schema 4.0.7 → 4.0.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colyseus/schema",
3
- "version": "4.0.7",
3
+ "version": "4.0.8",
4
4
  "description": "Binary state serializer with delta encoding for games",
5
5
  "type": "module",
6
6
  "bin": {
@@ -23,7 +23,8 @@ declare global {
23
23
  }
24
24
 
25
25
  export interface IRef {
26
- [$changes]?: ChangeTree;
26
+ // FIXME: we only commented this out to allow mixing @colyseus/schema bundled types with server types in Cocos Creator
27
+ // [$changes]?: ChangeTree;
27
28
  [$refId]?: number;
28
29
  [$getByIndex]?: (index: number, isEncodeAll?: boolean) => any;
29
30
  [$deleteByIndex]?: (index: number) => void;