@thingd/sdk 0.52.1 → 0.52.3

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.
@@ -156,7 +156,7 @@ export class HttpThingStore {
156
156
  async countActiveJobs() {
157
157
  const res = await this.request("GET", "/health");
158
158
  const counts = res;
159
- return counts.queues ?? 0;
159
+ return counts?.queues ?? 0;
160
160
  }
161
161
  async countDeadJobs() {
162
162
  return 0;
package/dist/version.d.ts CHANGED
@@ -2,5 +2,5 @@
2
2
  * The published version of the thingd SDK.
3
3
  * Updated automatically by semantic-release during the publish process.
4
4
  */
5
- export declare const SDK_VERSION = "0.52.0";
5
+ export declare const SDK_VERSION = "0.52.2";
6
6
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -2,4 +2,4 @@
2
2
  * The published version of the thingd SDK.
3
3
  * Updated automatically by semantic-release during the publish process.
4
4
  */
5
- export const SDK_VERSION = "0.52.0";
5
+ export const SDK_VERSION = "0.52.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thingd/sdk",
3
- "version": "0.52.1",
3
+ "version": "0.52.3",
4
4
  "description": "A fast object-first data engine for applications and AI agents.",
5
5
  "type": "module",
6
6
  "author": "Sayan Mohsin",
@@ -72,7 +72,7 @@
72
72
  "zod": "^4.4.3"
73
73
  },
74
74
  "optionalDependencies": {
75
- "@thingd/native": "0.52.1"
75
+ "@thingd/native": "0.52.3"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=24.0.0"