@v-tilt/browser 1.10.6 → 1.10.8
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/all-external-dependencies.js +1 -1
- package/dist/all-external-dependencies.js.map +1 -1
- package/dist/array.full.js +1 -1
- package/dist/array.full.js.map +1 -1
- package/dist/array.js +1 -1
- package/dist/array.js.map +1 -1
- package/dist/array.no-external.js +1 -1
- package/dist/array.no-external.js.map +1 -1
- package/dist/chat.js +1 -1
- package/dist/chat.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/module.d.ts +1 -4
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/dist/module.no-external.d.ts +1 -4
- package/dist/module.no-external.js +1 -1
- package/dist/module.no-external.js.map +1 -1
- package/dist/recorder.js +1 -1
- package/dist/recorder.js.map +1 -1
- package/dist/server.d.ts +3 -3
- package/dist/server.js +1 -1
- package/dist/server.js.map +1 -1
- package/dist/types.d.ts +0 -3
- package/dist/utils/index.d.ts +0 -4
- package/dist/vtilt.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,8 +32,6 @@ interface VTiltConfig {
|
|
|
32
32
|
proxyUrl?: string;
|
|
33
33
|
/** Instance name (for multiple instances) */
|
|
34
34
|
name?: string;
|
|
35
|
-
/** Project ID (set via init() first argument) */
|
|
36
|
-
projectId?: string;
|
|
37
35
|
/** Domain to track (auto-detected if not provided) - used in event properties */
|
|
38
36
|
domain?: string;
|
|
39
37
|
/** Storage method for session data */
|
|
@@ -134,7 +132,6 @@ interface CaptureOptions {
|
|
|
134
132
|
interface TrackingEvent {
|
|
135
133
|
timestamp: string;
|
|
136
134
|
event: string;
|
|
137
|
-
project_id: string;
|
|
138
135
|
distinct_id: string;
|
|
139
136
|
anonymous_id?: string;
|
|
140
137
|
payload: EventPayload;
|
|
@@ -1708,7 +1705,7 @@ declare class VTilt {
|
|
|
1708
1705
|
_emitter: SimpleEventEmitter;
|
|
1709
1706
|
private _has_warned_about_config;
|
|
1710
1707
|
constructor(config?: Partial<VTiltConfig>);
|
|
1711
|
-
init(
|
|
1708
|
+
init(token: string, config?: Partial<VTiltConfig>, name?: string): VTilt;
|
|
1712
1709
|
private _init;
|
|
1713
1710
|
private _initFeatures;
|
|
1714
1711
|
private _initHistoryAutocapture;
|