@axpecter/lync 2.1.1 → 2.1.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/README.md CHANGED
@@ -16,7 +16,7 @@ Lync batches all sends into a single buffer per player per frame, applies XOR co
16
16
 
17
17
  ```toml
18
18
  [dependencies]
19
- Lync = "axp3cter/lync@2.1.1"
19
+ Lync = "axp3cter/lync@2.1.2"
20
20
  ```
21
21
 
22
22
  **npm (roblox-ts)**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axpecter/lync",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "Buffer networking for Roblox. Delta compression, XOR framing, built-in security",
5
5
  "main": "src/init.luau",
6
6
  "types": "src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -247,7 +247,7 @@ interface LyncModule {
247
247
  this: void,
248
248
  tagField: Tag,
249
249
  variants: V,
250
- ): Lync.Codec<{ [K in keyof V]: Lync.InferSchema<{ [F in Tag]: K }> & Lync.InferCodec<V[K]> }[keyof V]>;
250
+ ): Lync.Codec<{ [K in keyof V & string]: { [F in Tag]: K } & Lync.InferCodec<V[K]> }[keyof V & string]>;
251
251
 
252
252
  // ── Meta ────────────────────────────────────────────────────────
253
253