@wandelbots/nova-js 2.1.0 → 2.1.1-pr.bugfix-add-client-identifier.102.eb7f74b
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/lib/v1/NovaClient.d.ts.map +1 -1
- package/dist/lib/v1/index.cjs +3 -1
- package/dist/lib/v1/index.cjs.map +1 -1
- package/dist/lib/v1/index.js +3 -1
- package/dist/lib/v1/index.js.map +1 -1
- package/dist/lib/v2/NovaClient.d.ts.map +1 -1
- package/dist/lib/v2/index.cjs +3 -1
- package/dist/lib/v2/index.cjs.map +1 -1
- package/dist/lib/v2/index.js +3 -1
- package/dist/lib/v2/index.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/v1/NovaClient.ts +3 -1
- package/src/lib/v2/NovaClient.ts +3 -1
package/dist/lib/v1/index.js
CHANGED
|
@@ -2294,7 +2294,9 @@ var NovaClient = class {
|
|
|
2294
2294
|
const axiosInstance = axios2.create({
|
|
2295
2295
|
baseURL: urlJoin(this.config.instanceUrl, "/api/v1"),
|
|
2296
2296
|
headers: {
|
|
2297
|
-
"
|
|
2297
|
+
"X-Client-SDK": "Wandelbots-Nova-JS-SDK",
|
|
2298
|
+
"X-SDK-Version": "v1",
|
|
2299
|
+
"X-Wandelbots-Client": "Wandelbots-Nova-JS-SDK"
|
|
2298
2300
|
}
|
|
2299
2301
|
});
|
|
2300
2302
|
axiosInstance.interceptors.request.use((request) => __async(this, null, function* () {
|