@v-tilt/browser 1.1.1 → 1.1.2

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.
@@ -147,7 +147,7 @@ export declare const PROP_GEOIP_LONGITUDE = "$geoip_longitude";
147
147
  /** Initial GeoIP properties (set once) */
148
148
  export declare const PROP_INITIAL_GEOIP_PREFIX = "$initial_geoip_";
149
149
  export declare const UTM_PARAMS: readonly ["utm_source", "utm_medium", "utm_campaign", "utm_content", "utm_term", "gclid", "gad_source", "gbraid", "wbraid", "fbclid", "msclkid", "twclid", "li_fat_id", "mc_cid", "igshid", "ttclid"];
150
- export type UTMParam = typeof UTM_PARAMS[number];
150
+ export type UTMParam = (typeof UTM_PARAMS)[number];
151
151
  export declare const PERSISTENCE_RESERVED_PROPERTIES: string[];
152
152
  /**
153
153
  * Person profiles configuration mode
@@ -155,7 +155,7 @@ export declare const PERSISTENCE_RESERVED_PROPERTIES: string[];
155
155
  * - 'identified_only': Only create profiles when user is identified
156
156
  * - 'never': Never create person profiles (events only)
157
157
  */
158
- export type PersonProfilesMode = 'always' | 'identified_only' | 'never';
158
+ export type PersonProfilesMode = "always" | "identified_only" | "never";
159
159
  /** Default API host */
160
160
  export declare const DEFAULT_API_HOST = "https://api.vtilt.io";
161
161
  /** Default flush interval (ms) */