@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.
@@ -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(projectId: string, config?: Partial<VTiltConfig>, name?: string): VTilt;
1708
+ init(token: string, config?: Partial<VTiltConfig>, name?: string): VTilt;
1712
1709
  private _init;
1713
1710
  private _initFeatures;
1714
1711
  private _initHistoryAutocapture;