@rtsdk/topia 0.0.30 → 0.0.31

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.cjs CHANGED
@@ -40905,7 +40905,7 @@ class Topia {
40905
40905
  if (interactiveKey)
40906
40906
  headers.PublicKey = interactiveKey;
40907
40907
  this.axios = axios.create({
40908
- baseURL: `${apiProtocol}://${this.apiDomain}/api/v1`,
40908
+ baseURL: `${this.apiProtocol}://${this.apiDomain}/api/v1`,
40909
40909
  headers,
40910
40910
  });
40911
40911
  }
package/dist/index.js CHANGED
@@ -40903,7 +40903,7 @@ class Topia {
40903
40903
  if (interactiveKey)
40904
40904
  headers.PublicKey = interactiveKey;
40905
40905
  this.axios = axios.create({
40906
- baseURL: `${apiProtocol}://${this.apiDomain}/api/v1`,
40906
+ baseURL: `${this.apiProtocol}://${this.apiDomain}/api/v1`,
40907
40907
  headers,
40908
40908
  });
40909
40909
  }
@@ -31,7 +31,7 @@ export class Topia {
31
31
  if (interactiveKey)
32
32
  headers.PublicKey = interactiveKey;
33
33
  this.axios = axios.create({
34
- baseURL: `${apiProtocol}://${this.apiDomain}/api/v1`,
34
+ baseURL: `${this.apiProtocol}://${this.apiDomain}/api/v1`,
35
35
  headers,
36
36
  });
37
37
  }
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "local-publish": "yarn build && yalc publish --push --no-scripts"
57
57
  },
58
58
  "type": "module",
59
- "version": "0.0.30"
59
+ "version": "0.0.31"
60
60
  }