humanbehavior-js 0.1.4 → 0.1.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/dist/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/src/api.ts +20 -20
- package/src/tracker.ts +2 -1
package/dist/cjs/index.js
CHANGED
|
@@ -4914,7 +4914,8 @@ class HumanBehaviorTracker {
|
|
|
4914
4914
|
}
|
|
4915
4915
|
// Initialize API
|
|
4916
4916
|
//const defaultIngestionUrl = 'http://3.137.217.33:3000'; // AWS Development Server
|
|
4917
|
-
const defaultIngestionUrl = 'http://ingestion-server-alb-1823866402.us-east-2.elb.amazonaws.com'; // ALB
|
|
4917
|
+
//const defaultIngestionUrl = 'http://ingestion-server-alb-1823866402.us-east-2.elb.amazonaws.com'; // ALB
|
|
4918
|
+
const defaultIngestionUrl = 'https://ingest.humanbehavior.co'; // HTTPS ALB
|
|
4918
4919
|
this.api = new HumanBehaviorAPI({
|
|
4919
4920
|
apiKey: apiKey,
|
|
4920
4921
|
ingestionUrl: ingestionUrl || defaultIngestionUrl
|