@thingd/sdk 0.51.1 → 0.51.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.
package/dist/thingd.js CHANGED
@@ -1,4 +1,4 @@
1
- import { CloudThingStore } from "./stores/cloud-thing-store.js";
1
+ import { HttpThingStore } from "./client/http-thing-store.js";
2
2
  import { InMemoryThingStore } from "./stores/in-memory-thing-store.js";
3
3
  import { NativeThingStore } from "./stores/native-thing-store.js";
4
4
  export class ThingD {
@@ -190,7 +190,7 @@ async function openStore(path, options) {
190
190
  return options.store;
191
191
  }
192
192
  if (options.driver === "cloud") {
193
- return CloudThingStore.open({
193
+ return HttpThingStore.open({
194
194
  url: path,
195
195
  authToken: options.authToken,
196
196
  });
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.51.0";
5
+ export declare const SDK_VERSION = "0.51.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.51.0";
5
+ export const SDK_VERSION = "0.51.2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thingd/sdk",
3
- "version": "0.51.1",
3
+ "version": "0.51.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.51.1"
75
+ "@thingd/native": "0.51.3"
76
76
  },
77
77
  "engines": {
78
78
  "node": ">=24.0.0"