@synnaxlabs/client 0.56.1 → 0.56.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/dist/client.js CHANGED
@@ -2658,7 +2658,7 @@ var Oi = (e, t) => Di(e, t), ki = (e) => {
2658
2658
  if (this.dataType.isVariable) return this.atVariable(e, t);
2659
2659
  if (this.dataType.equals(w.UUID)) return this.atUUID(e, t);
2660
2660
  let n = this.at(e, t);
2661
- if (n != null) return this.dataType.equals(w.FLOAT32) ? ki(n) : String(n);
2661
+ if (n != null) return typeof n == "number" && this.dataType.equals(w.FLOAT32) ? ki(n) : String(n);
2662
2662
  }
2663
2663
  atVariable(e, t) {
2664
2664
  let n = 0, r = 0, i = this.buffer, a = new DataView(i);
@@ -6181,7 +6181,7 @@ var zu = (e, t) => Ru(e, t), Bu = (e) => {
6181
6181
  if (this.dataType.isVariable) return this.atVariable(e, t);
6182
6182
  if (this.dataType.equals(N.UUID)) return this.atUUID(e, t);
6183
6183
  let n = this.at(e, t);
6184
- if (n != null) return this.dataType.equals(N.FLOAT32) ? Bu(n) : String(n);
6184
+ if (n != null) return typeof n == "number" && this.dataType.equals(N.FLOAT32) ? Bu(n) : String(n);
6185
6185
  }
6186
6186
  atVariable(e, t) {
6187
6187
  let n = 0, r = 0, i = this.buffer, a = new DataView(i);
@@ -11635,7 +11635,7 @@ var cC = function(e, t, n, r) {
11635
11635
  error: void 0,
11636
11636
  message: "Disconnected",
11637
11637
  clientServerCompatible: !1,
11638
- clientVersion: "0.56.1",
11638
+ clientVersion: "0.56.2",
11639
11639
  clockSkew: x.ZERO,
11640
11640
  clockSkewExceeded: !1
11641
11641
  }, Dw = (e, t, n) => {
@@ -14818,7 +14818,7 @@ var cC = function(e, t, n, r) {
14818
14818
  groups;
14819
14819
  static connectivity = Ow;
14820
14820
  transport;
14821
- clientVersion = "0.56.1";
14821
+ clientVersion = "0.56.2";
14822
14822
  constructor(e) {
14823
14823
  let t = y.parse(UM, e), { host: n, port: r, username: i, password: a, connectivityPollFrequency: o, clockSkewThreshold: s, secure: c, retry: l } = t, u = new TM(new js({
14824
14824
  host: n,
@@ -14846,7 +14846,7 @@ var cC = function(e, t, n, r) {
14846
14846
  return new Ow(new TM(new js({
14847
14847
  host: t,
14848
14848
  port: Number(n)
14849
- }), o, r).unary, void 0, "0.56.1", i);
14849
+ }), o, r).unary, void 0, "0.56.2", i);
14850
14850
  }, qM = {
14851
14851
  host: "localhost",
14852
14852
  port: 9090,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@synnaxlabs/client",
3
- "version": "0.56.1",
3
+ "version": "0.56.2",
4
4
  "description": "The Synnax Client Library",
5
5
  "keywords": [
6
6
  "synnax",
@@ -27,8 +27,8 @@
27
27
  "async-mutex": "^0.5.0",
28
28
  "immer": "^11.1.8",
29
29
  "zod": "^4.4.3",
30
- "@synnaxlabs/freighter": "^0.56.1",
31
- "@synnaxlabs/x": "^0.56.1"
30
+ "@synnaxlabs/freighter": "^0.56.2",
31
+ "@synnaxlabs/x": "^0.56.2"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@vitest/coverage-v8": "^4.1.6",
@@ -38,8 +38,8 @@
38
38
  "typescript": "^6.0.3",
39
39
  "vite": "^8.0.13",
40
40
  "vitest": "^4.1.6",
41
- "@synnaxlabs/eslint-config": "^0.0.0",
42
41
  "@synnaxlabs/vite-plugin": "^0.0.0",
42
+ "@synnaxlabs/eslint-config": "^0.0.0",
43
43
  "@synnaxlabs/tsconfig": "^0.0.0"
44
44
  },
45
45
  "type": "module",