@thinkingdifferently/core 1.3.0 → 1.3.1

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
@@ -46,8 +46,8 @@ var TDClient = class {
46
46
  this.securityKey = securityKey;
47
47
  this.publicKey = publicKey;
48
48
  this.api = import_axios.default.create({
49
- baseURL: "http://localhost:3000/api/v1",
50
- // baseURL: "https://www.thinkingdifferently.dev/api/v1",
49
+ // baseURL: "http://localhost:3000/api/v1",
50
+ baseURL: "https://www.thinkingdifferently.dev/api/v1",
51
51
  headers: {
52
52
  "X-API-Key": apiKey,
53
53
  "Content-Type": "application/json"
package/dist/index.mjs CHANGED
@@ -7,8 +7,8 @@ var TDClient = class {
7
7
  this.securityKey = securityKey;
8
8
  this.publicKey = publicKey;
9
9
  this.api = axios.create({
10
- baseURL: "http://localhost:3000/api/v1",
11
- // baseURL: "https://www.thinkingdifferently.dev/api/v1",
10
+ // baseURL: "http://localhost:3000/api/v1",
11
+ baseURL: "https://www.thinkingdifferently.dev/api/v1",
12
12
  headers: {
13
13
  "X-API-Key": apiKey,
14
14
  "Content-Type": "application/json"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thinkingdifferently/core",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "Official SDK for Thinking Differently API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",