@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 +1 -1
- package/dist/index.js +1 -1
- package/dist/src/controllers/Topia.js +1 -1
- package/package.json +1 -1
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
|
}
|
package/package.json
CHANGED