@colyseus/schema 5.0.1 → 5.0.2

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": "5.0.1",
3
+ "version": "5.0.2",
4
4
  "description": "Binary state serializer with delta encoding for games",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -71,7 +71,7 @@ export { t, FieldBuilder, isBuilder, type BuilderDefinition, type ChildType } fr
71
71
  export { TypeContext } from "./types/TypeContext.js";
72
72
 
73
73
  // Helper types for type inference
74
- export type { InferValueType, InferSchemaInstanceType, AssignableProps } from "./types/HelperTypes.js";
74
+ export type { InferValueType, InferSchemaInstanceType, AssignableProps, BuilderInitProps } from "./types/HelperTypes.js";
75
75
 
76
76
  export { getDecoderStateCallbacks, type CallbackProxy, type SchemaCallback, type CollectionCallback, type SchemaCallbackProxy } from "./decoder/strategy/getDecoderStateCallbacks.js";
77
77
  export { Callbacks, StateCallbackStrategy } from "./decoder/strategy/Callbacks.js";