addie-js 0.0.4 → 0.0.5
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/addie.js +2 -2
- package/package.json +1 -1
package/addie.js
CHANGED
|
@@ -80,7 +80,7 @@ const addie = {
|
|
|
80
80
|
"signature": signature
|
|
81
81
|
};
|
|
82
82
|
|
|
83
|
-
const url = `${baseURL}user/${uuid}/processor/${processor}/intent`;
|
|
83
|
+
const url = `${addie.baseURL}user/${uuid}/processor/${processor}/intent`;
|
|
84
84
|
const res = post(url, payload); // Start here
|
|
85
85
|
const intent = await res.json();
|
|
86
86
|
|
|
@@ -99,7 +99,7 @@ const addie = {
|
|
|
99
99
|
"signature": signature
|
|
100
100
|
};
|
|
101
101
|
|
|
102
|
-
const url = `${baseURL}user/${uuid}/processor/${processor}/intent-without-splits`;
|
|
102
|
+
const url = `${addie.baseURL}user/${uuid}/processor/${processor}/intent-without-splits`;
|
|
103
103
|
const res = post(url, payload); // Start here
|
|
104
104
|
const intent = await res.json();
|
|
105
105
|
|