@thinkingdifferently/core 1.0.3-beta.1 → 1.0.3-beta.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/index.js CHANGED
@@ -85,7 +85,10 @@ var ThinkingDifferently = class {
85
85
  }
86
86
  const response2 = await this.client.request(
87
87
  "POST",
88
- data
88
+ {
89
+ key,
90
+ data
91
+ }
89
92
  );
90
93
  console.log("[SDK] Insert Response:", response2);
91
94
  return response2;
package/dist/index.mjs CHANGED
@@ -48,7 +48,10 @@ var ThinkingDifferently = class {
48
48
  }
49
49
  const response2 = await this.client.request(
50
50
  "POST",
51
- data
51
+ {
52
+ key,
53
+ data
54
+ }
52
55
  );
53
56
  console.log("[SDK] Insert Response:", response2);
54
57
  return response2;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thinkingdifferently/core",
3
- "version": "1.0.3-beta.1",
3
+ "version": "1.0.3-beta.2",
4
4
  "description": "Official SDK for Thinking Differently API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",