mixpanel-react-native 1.3.7 → 1.3.10

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/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  #
2
2
 
3
+ ## [v1.3.10](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.10) (2022-03-26)
4
+
5
+ ### Enhancements
6
+
7
+ - upgrade android targetSdkVersion to 30 [\#131](https://github.com/mixpanel/mixpanel-react-native/pull/131)
8
+
9
+ #
10
+
11
+ ## [v1.3.9](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.9) (2022-03-02)
12
+
13
+ **Merged pull requests:**
14
+
15
+ - bump mixpanel-swift to 3.1.5 [\#129](https://github.com/mixpanel/mixpanel-react-native/pull/129)
16
+
17
+ #
18
+
19
+ ## [v1.3.8](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.8) (2022-02-25)
20
+
21
+ ### Enhancements
22
+
23
+ - add init super props & declare multi-prop interfaces [\#127](https://github.com/mixpanel/mixpanel-react-native/pull/127)
24
+
25
+ #
26
+
3
27
  ## [v1.3.7](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.7) (2022-01-26)
4
28
 
5
29
  ### Fixes
@@ -9,6 +33,7 @@
9
33
  #
10
34
 
11
35
  ## [v1.3.6](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.6) (2022-01-13)
36
+ ### Caution: Please DO NOT use this build! In this version, we have a bug in iOS that event names with `&` or `%` will be rejected by the server. We recommend you update to 1.3.7 or above.
12
37
 
13
38
  ### Fixes
14
39
 
@@ -155,6 +180,12 @@
155
180
 
156
181
 
157
182
 
183
+
184
+
185
+
186
+
187
+
188
+
158
189
 
159
190
 
160
191
 
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
19
19
  s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
20
20
 
21
21
  s.dependency "React"
22
- s.dependency "Mixpanel-swift", '3.1.2'
22
+ s.dependency "Mixpanel-swift", '3.1.5'
23
23
  end
@@ -9,7 +9,13 @@ import { NativeModules } from 'react-native';
9
9
 
10
10
  test(`it calls MixpanelReactNative initialize`, async () => {
11
11
  const mixpanel = await Mixpanel.init("token");
12
- expect(NativeModules.MixpanelReactNative.initialize).toBeCalledWith("token", false, {"$lib_version": "1.3.7", "mp_lib": "react-native"});
12
+ expect(NativeModules.MixpanelReactNative.initialize).toBeCalledWith("token", false, {"$lib_version": "1.3.10", "mp_lib": "react-native"});
13
+ });
14
+
15
+ test(`it calls MixpanelReactNative initialize with optOut and superProperties`, async () => {
16
+ const mixpanel = new Mixpanel("token");
17
+ mixpanel.init(true, {"super": "property"})
18
+ expect(NativeModules.MixpanelReactNative.initialize).toBeCalledWith("token", true, {"$lib_version": "1.3.10", "mp_lib": "react-native", "super": "property"});
13
19
  });
14
20
 
15
21
  test(`it calls MixpanelReactNative setServerURL`, async () => {
@@ -11,11 +11,11 @@ buildscript {
11
11
  apply plugin: 'com.android.library'
12
12
 
13
13
  android {
14
- compileSdkVersion 28
15
- buildToolsVersion "28.0.3"
14
+ compileSdkVersion 30
15
+ buildToolsVersion "30.0.3"
16
16
  defaultConfig {
17
17
  minSdkVersion 21
18
- targetSdkVersion 26
18
+ targetSdkVersion 30
19
19
  versionCode 1
20
20
  versionName "1.0"
21
21
  }
@@ -285,7 +285,7 @@ Initializes Mixpanel and return an instance of Mixpanel the given project token.
285
285
 
286
286
  <dt class="tag-source">Source:</dt>
287
287
  <dd class="tag-source"><ul class="dummy"><li>
288
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line78">line 78</a>
288
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line79">line 79</a>
289
289
  </li></ul></dd>
290
290
 
291
291
 
@@ -445,7 +445,7 @@ Initializes Mixpanel and return an instance of Mixpanel the given project token.
445
445
 
446
446
  <dt class="tag-source">Source:</dt>
447
447
  <dd class="tag-source"><ul class="dummy"><li>
448
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line288">line 288</a>
448
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line289">line 289</a>
449
449
  </li></ul></dd>
450
450
 
451
451
 
@@ -612,7 +612,7 @@ People.identify() if you wish the new alias to be used for Events and People.
612
612
 
613
613
  <dt class="tag-source">Source:</dt>
614
614
  <dd class="tag-source"><ul class="dummy"><li>
615
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line189">line 189</a>
615
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line190">line 190</a>
616
616
  </li></ul></dd>
617
617
 
618
618
 
@@ -705,7 +705,7 @@ superProperties registered before the clearSuperProperties method was called.
705
705
 
706
706
  <dt class="tag-source">Source:</dt>
707
707
  <dd class="tag-source"><ul class="dummy"><li>
708
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line396">line 396</a>
708
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line397">line 397</a>
709
709
  </li></ul></dd>
710
710
 
711
711
 
@@ -867,7 +867,7 @@ to Group Analytics using the same group value will create and store new values.<
867
867
 
868
868
  <dt class="tag-source">Source:</dt>
869
869
  <dd class="tag-source"><ul class="dummy"><li>
870
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line316">line 316</a>
870
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line317">line 317</a>
871
871
  </li></ul></dd>
872
872
 
873
873
 
@@ -1004,7 +1004,7 @@ to Group Analytics using the same group value will create and store new values.<
1004
1004
 
1005
1005
  <dt class="tag-source">Source:</dt>
1006
1006
  <dd class="tag-source"><ul class="dummy"><li>
1007
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line421">line 421</a>
1007
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line422">line 422</a>
1008
1008
  </li></ul></dd>
1009
1009
 
1010
1010
 
@@ -1120,7 +1120,7 @@ send all remaining messages to the server.
1120
1120
 
1121
1121
  <dt class="tag-source">Source:</dt>
1122
1122
  <dd class="tag-source"><ul class="dummy"><li>
1123
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line463">line 463</a>
1123
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line464">line 464</a>
1124
1124
  </li></ul></dd>
1125
1125
 
1126
1126
 
@@ -1164,13 +1164,13 @@ send all remaining messages to the server.
1164
1164
 
1165
1165
 
1166
1166
  <div class="description">
1167
- Returns the current distinct id of the user.
1167
+ Returns the current distinct id of the user.
1168
1168
  This is either the id automatically generated by the library or the id that has been passed by a call to identify().
1169
1169
 
1170
- example of usage:
1170
+ example of usage:
1171
1171
  <pre>
1172
1172
  <code>
1173
- const distinctId = await mixpanel.getDistinctId();
1173
+ const distinctId = await mixpanel.getDistinctId();
1174
1174
  </code>
1175
1175
  </pre>
1176
1176
  </div>
@@ -1216,7 +1216,7 @@ const distinctId = await mixpanel.getDistinctId();
1216
1216
 
1217
1217
  <dt class="tag-source">Source:</dt>
1218
1218
  <dd class="tag-source"><ul class="dummy"><li>
1219
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line450">line 450</a>
1219
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line451">line 451</a>
1220
1220
  </li></ul></dd>
1221
1221
 
1222
1222
 
@@ -1399,7 +1399,7 @@ Group Analytics properties.
1399
1399
 
1400
1400
  <dt class="tag-source">Source:</dt>
1401
1401
  <dd class="tag-source"><ul class="dummy"><li>
1402
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line278">line 278</a>
1402
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line279">line 279</a>
1403
1403
  </li></ul></dd>
1404
1404
 
1405
1405
 
@@ -1499,7 +1499,7 @@ People Analytics properties.
1499
1499
 
1500
1500
  <dt class="tag-source">Source:</dt>
1501
1501
  <dd class="tag-source"><ul class="dummy"><li>
1502
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line228">line 228</a>
1502
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line229">line 229</a>
1503
1503
  </li></ul></dd>
1504
1504
 
1505
1505
 
@@ -1613,7 +1613,7 @@ and persist beyond the lifetime of your application.
1613
1613
 
1614
1614
  <dt class="tag-source">Source:</dt>
1615
1615
  <dd class="tag-source"><ul class="dummy"><li>
1616
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line384">line 384</a>
1616
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line385">line 385</a>
1617
1617
  </li></ul></dd>
1618
1618
 
1619
1619
 
@@ -1723,7 +1723,7 @@ and persist beyond the lifetime of your application.
1723
1723
 
1724
1724
  <dt class="tag-source">Source:</dt>
1725
1725
  <dd class="tag-source"><ul class="dummy"><li>
1726
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line126">line 126</a>
1726
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line127">line 127</a>
1727
1727
  </li></ul></dd>
1728
1728
 
1729
1729
 
@@ -1894,7 +1894,7 @@ your application.
1894
1894
 
1895
1895
  <dt class="tag-source">Source:</dt>
1896
1896
  <dd class="tag-source"><ul class="dummy"><li>
1897
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line169">line 169</a>
1897
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line170">line 170</a>
1898
1898
  </li></ul></dd>
1899
1899
 
1900
1900
 
@@ -1930,7 +1930,7 @@ your application.
1930
1930
 
1931
1931
 
1932
1932
 
1933
- <h4 class="name" id="init"><span class="type-signature">(async) </span>init<span class="signature">(Optional)</span><span class="type-signature"></span></h4>
1933
+ <h4 class="name" id="init"><span class="type-signature">(async) </span>init<span class="signature">(Optional, Optional)</span><span class="type-signature"></span></h4>
1934
1934
 
1935
1935
 
1936
1936
 
@@ -1994,6 +1994,29 @@ your application.
1994
1994
  </tr>
1995
1995
 
1996
1996
 
1997
+
1998
+ <tr>
1999
+
2000
+ <td class="name"><code>Optional</code></td>
2001
+
2002
+
2003
+ <td class="type">
2004
+
2005
+
2006
+ <span class="param-type">object</span>
2007
+
2008
+
2009
+
2010
+ </td>
2011
+
2012
+
2013
+
2014
+
2015
+
2016
+ <td class="description last">A Map containing the key value pairs of the super properties to register</td>
2017
+ </tr>
2018
+
2019
+
1997
2020
  </tbody>
1998
2021
  </table>
1999
2022
 
@@ -2031,7 +2054,7 @@ your application.
2031
2054
 
2032
2055
  <dt class="tag-source">Source:</dt>
2033
2056
  <dd class="tag-source"><ul class="dummy"><li>
2034
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line59">line 59</a>
2057
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line60">line 60</a>
2035
2058
  </li></ul></dd>
2036
2059
 
2037
2060
 
@@ -2121,7 +2144,7 @@ This method will internally track an opt-in event to your project.
2121
2144
 
2122
2145
  <dt class="tag-source">Source:</dt>
2123
2146
  <dd class="tag-source"><ul class="dummy"><li>
2124
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line136">line 136</a>
2147
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line137">line 137</a>
2125
2148
  </li></ul></dd>
2126
2149
 
2127
2150
 
@@ -2213,7 +2236,7 @@ This method will also remove any user-related information from the device.
2213
2236
 
2214
2237
  <dt class="tag-source">Source:</dt>
2215
2238
  <dd class="tag-source"><ul class="dummy"><li>
2216
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line147">line 147</a>
2239
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line148">line 148</a>
2217
2240
  </li></ul></dd>
2218
2241
 
2219
2242
 
@@ -2360,7 +2383,7 @@ to remove a superProperty, call unregisterSuperProperty() or clearSuperPropertie
2360
2383
 
2361
2384
  <dt class="tag-source">Source:</dt>
2362
2385
  <dd class="tag-source"><ul class="dummy"><li>
2363
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line338">line 338</a>
2386
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line339">line 339</a>
2364
2387
  </li></ul></dd>
2365
2388
 
2366
2389
 
@@ -2500,7 +2523,7 @@ same names has already been registered.
2500
2523
 
2501
2524
  <dt class="tag-source">Source:</dt>
2502
2525
  <dd class="tag-source"><ul class="dummy"><li>
2503
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line353">line 353</a>
2526
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line354">line 354</a>
2504
2527
  </li></ul></dd>
2505
2528
 
2506
2529
 
@@ -2660,7 +2683,7 @@ same names has already been registered.
2660
2683
 
2661
2684
  <dt class="tag-source">Source:</dt>
2662
2685
  <dd class="tag-source"><ul class="dummy"><li>
2663
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line301">line 301</a>
2686
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line302">line 302</a>
2664
2687
  </li></ul></dd>
2665
2688
 
2666
2689
 
@@ -2749,7 +2772,7 @@ same names has already been registered.
2749
2772
 
2750
2773
  <dt class="tag-source">Source:</dt>
2751
2774
  <dd class="tag-source"><ul class="dummy"><li>
2752
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line432">line 432</a>
2775
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line433">line 433</a>
2753
2776
  </li></ul></dd>
2754
2777
 
2755
2778
 
@@ -2909,7 +2932,7 @@ same names has already been registered.
2909
2932
 
2910
2933
  <dt class="tag-source">Source:</dt>
2911
2934
  <dd class="tag-source"><ul class="dummy"><li>
2912
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line262">line 262</a>
2935
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line263">line 263</a>
2913
2936
  </li></ul></dd>
2914
2937
 
2915
2938
 
@@ -3048,7 +3071,7 @@ you are running into issues with the SDK that you want to debug
3048
3071
 
3049
3072
  <dt class="tag-source">Source:</dt>
3050
3073
  <dd class="tag-source"><ul class="dummy"><li>
3051
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line104">line 104</a>
3074
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line105">line 105</a>
3052
3075
  </li></ul></dd>
3053
3076
 
3054
3077
 
@@ -3187,7 +3210,7 @@ To route data to Mixpanel's EU servers, set to https://api-eu.mixpanel.com
3187
3210
 
3188
3211
  <dt class="tag-source">Source:</dt>
3189
3212
  <dd class="tag-source"><ul class="dummy"><li>
3190
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line92">line 92</a>
3213
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line93">line 93</a>
3191
3214
  </li></ul></dd>
3192
3215
 
3193
3216
 
@@ -3232,7 +3255,7 @@ To route data to Mixpanel's EU servers, set to https://api-eu.mixpanel.com
3232
3255
 
3233
3256
  <div class="description">
3234
3257
  This controls whether to automatically send the client IP Address as part of event tracking.
3235
- With an IP address, geo-location is possible down to neighborhoods within a city,
3258
+ With an IP address, geo-location is possible down to neighborhoods within a city,
3236
3259
  although the Mixpanel Dashboard will just show you city level location specificity.
3237
3260
  </div>
3238
3261
 
@@ -3285,7 +3308,7 @@ although the Mixpanel Dashboard will just show you city level location specifici
3285
3308
 
3286
3309
 
3287
3310
 
3288
- <td class="description last">whether to automatically send the client IP Address.
3311
+ <td class="description last">whether to automatically send the client IP Address.
3289
3312
  Defaults to true.</td>
3290
3313
  </tr>
3291
3314
 
@@ -3327,7 +3350,7 @@ Defaults to true.</td>
3327
3350
 
3328
3351
  <dt class="tag-source">Source:</dt>
3329
3352
  <dd class="tag-source"><ul class="dummy"><li>
3330
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line117">line 117</a>
3353
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line118">line 118</a>
3331
3354
  </li></ul></dd>
3332
3355
 
3333
3356
 
@@ -3466,7 +3489,7 @@ property, representing the number of seconds between your calls.
3466
3489
 
3467
3490
  <dt class="tag-source">Source:</dt>
3468
3491
  <dd class="tag-source"><ul class="dummy"><li>
3469
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line407">line 407</a>
3492
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line408">line 408</a>
3470
3493
  </li></ul></dd>
3471
3494
 
3472
3495
 
@@ -3632,7 +3655,7 @@ that event.
3632
3655
 
3633
3656
  <dt class="tag-source">Source:</dt>
3634
3657
  <dd class="tag-source"><ul class="dummy"><li>
3635
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line211">line 211</a>
3658
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line212">line 212</a>
3636
3659
  </li></ul></dd>
3637
3660
 
3638
3661
 
@@ -3821,7 +3844,7 @@ that event. Group key/value pairs are upserted into the property map before trac
3821
3844
 
3822
3845
  <dt class="tag-source">Source:</dt>
3823
3846
  <dd class="tag-source"><ul class="dummy"><li>
3824
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line246">line 246</a>
3847
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line247">line 247</a>
3825
3848
  </li></ul></dd>
3826
3849
 
3827
3850
 
@@ -3962,7 +3985,7 @@ To clear all superProperties, use clearSuperProperties()
3962
3985
 
3963
3986
  <dt class="tag-source">Source:</dt>
3964
3987
  <dd class="tag-source"><ul class="dummy"><li>
3965
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line369">line 369</a>
3988
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line370">line 370</a>
3966
3989
  </li></ul></dd>
3967
3990
 
3968
3991
 
@@ -4014,7 +4037,7 @@ To clear all superProperties, use clearSuperProperties()
4014
4037
  <br class="clear">
4015
4038
 
4016
4039
  <footer>
4017
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Wed Jan 26 2022 15:11:22 GMT-0800 (Pacific Standard Time)
4040
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Fri Mar 25 2022 17:36:42 GMT-0700 (Pacific Daylight Time)
4018
4041
  </footer>
4019
4042
 
4020
4043
  <script> prettyPrint(); </script>
@@ -95,7 +95,7 @@
95
95
 
96
96
  <dt class="tag-source">Source:</dt>
97
97
  <dd class="tag-source"><ul class="dummy"><li>
98
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line680">line 680</a>
98
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line681">line 681</a>
99
99
  </li></ul></dd>
100
100
 
101
101
 
@@ -284,7 +284,7 @@ If the property exists and is not list-valued, the remove will be ignored.
284
284
 
285
285
  <dt class="tag-source">Source:</dt>
286
286
  <dd class="tag-source"><ul class="dummy"><li>
287
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line751">line 751</a>
287
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line752">line 752</a>
288
288
  </li></ul></dd>
289
289
 
290
290
 
@@ -446,7 +446,7 @@ possibly overwriting an existing property with the same name.
446
446
 
447
447
  <dt class="tag-source">Source:</dt>
448
448
  <dd class="tag-source"><ul class="dummy"><li>
449
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line699">line 699</a>
449
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line700">line 700</a>
450
450
  </li></ul></dd>
451
451
 
452
452
 
@@ -606,7 +606,7 @@ possibly overwriting an existing property with the same name.
606
606
 
607
607
  <dt class="tag-source">Source:</dt>
608
608
  <dd class="tag-source"><ul class="dummy"><li>
609
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line718">line 718</a>
609
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line719">line 719</a>
610
610
  </li></ul></dd>
611
611
 
612
612
 
@@ -768,7 +768,7 @@ If the property exists and is not list-valued, the union will be ignored.
768
768
 
769
769
  <dt class="tag-source">Source:</dt>
770
770
  <dd class="tag-source"><ul class="dummy"><li>
771
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line767">line 767</a>
771
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line768">line 768</a>
772
772
  </li></ul></dd>
773
773
 
774
774
 
@@ -905,7 +905,7 @@ If the property exists and is not list-valued, the union will be ignored.
905
905
 
906
906
  <dt class="tag-source">Source:</dt>
907
907
  <dd class="tag-source"><ul class="dummy"><li>
908
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line736">line 736</a>
908
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line737">line 737</a>
909
909
  </li></ul></dd>
910
910
 
911
911
 
@@ -957,7 +957,7 @@ If the property exists and is not list-valued, the union will be ignored.
957
957
  <br class="clear">
958
958
 
959
959
  <footer>
960
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Wed Jan 26 2022 15:11:22 GMT-0800 (Pacific Standard Time)
960
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Fri Mar 25 2022 17:36:42 GMT-0700 (Pacific Daylight Time)
961
961
  </footer>
962
962
 
963
963
  <script> prettyPrint(); </script>
package/docs/People.html CHANGED
@@ -100,7 +100,7 @@ call to identify using a different id.</div>
100
100
 
101
101
  <dt class="tag-source">Source:</dt>
102
102
  <dd class="tag-source"><ul class="dummy"><li>
103
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line479">line 479</a>
103
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line480">line 480</a>
104
104
  </li></ul></dd>
105
105
 
106
106
 
@@ -289,7 +289,7 @@ currently have a list value, the append will be ignored.
289
289
 
290
290
  <dt class="tag-source">Source:</dt>
291
291
  <dd class="tag-source"><ul class="dummy"><li>
292
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line570">line 570</a>
292
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line571">line 571</a>
293
293
  </li></ul></dd>
294
294
 
295
295
 
@@ -377,7 +377,7 @@ currently have a list value, the append will be ignored.
377
377
 
378
378
  <dt class="tag-source">Source:</dt>
379
379
  <dd class="tag-source"><ul class="dummy"><li>
380
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line660">line 660</a>
380
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line661">line 661</a>
381
381
  </li></ul></dd>
382
382
 
383
383
 
@@ -468,7 +468,7 @@ to People Analytics using the same distinct id will create and store new values.
468
468
 
469
469
  <dt class="tag-source">Source:</dt>
470
470
  <dd class="tag-source"><ul class="dummy"><li>
471
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line670">line 670</a>
471
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line671">line 671</a>
472
472
  </li></ul></dd>
473
473
 
474
474
 
@@ -630,7 +630,7 @@ provide a negative number for the value.
630
630
 
631
631
  <dt class="tag-source">Source:</dt>
632
632
  <dd class="tag-source"><ul class="dummy"><li>
633
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line538">line 538</a>
633
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line539">line 539</a>
634
634
  </li></ul></dd>
635
635
 
636
636
 
@@ -792,7 +792,7 @@ If the property exists and is not list-valued, the remove will be ignored.
792
792
 
793
793
  <dt class="tag-source">Source:</dt>
794
794
  <dd class="tag-source"><ul class="dummy"><li>
795
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line614">line 614</a>
795
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line615">line 615</a>
796
796
  </li></ul></dd>
797
797
 
798
798
 
@@ -954,7 +954,7 @@ possibly overwriting an existing property with the same name.
954
954
 
955
955
  <dt class="tag-source">Source:</dt>
956
956
  <dd class="tag-source"><ul class="dummy"><li>
957
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line496">line 496</a>
957
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line497">line 497</a>
958
958
  </li></ul></dd>
959
959
 
960
960
 
@@ -1114,7 +1114,7 @@ possibly overwriting an existing property with the same name.
1114
1114
 
1115
1115
  <dt class="tag-source">Source:</dt>
1116
1116
  <dd class="tag-source"><ul class="dummy"><li>
1117
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line515">line 515</a>
1117
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line516">line 516</a>
1118
1118
  </li></ul></dd>
1119
1119
 
1120
1120
 
@@ -1274,7 +1274,7 @@ possibly overwriting an existing property with the same name.
1274
1274
 
1275
1275
  <dt class="tag-source">Source:</dt>
1276
1276
  <dd class="tag-source"><ul class="dummy"><li>
1277
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line646">line 646</a>
1277
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line647">line 647</a>
1278
1278
  </li></ul></dd>
1279
1279
 
1280
1280
 
@@ -1436,7 +1436,7 @@ If the property exists and is not list-valued, the union will be ignored.
1436
1436
 
1437
1437
  <dt class="tag-source">Source:</dt>
1438
1438
  <dd class="tag-source"><ul class="dummy"><li>
1439
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line593">line 593</a>
1439
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line594">line 594</a>
1440
1440
  </li></ul></dd>
1441
1441
 
1442
1442
 
@@ -1573,7 +1573,7 @@ If the property exists and is not list-valued, the union will be ignored.
1573
1573
 
1574
1574
  <dt class="tag-source">Source:</dt>
1575
1575
  <dd class="tag-source"><ul class="dummy"><li>
1576
- <a href="index.js.html">index.js</a>, <a href="index.js.html#line633">line 633</a>
1576
+ <a href="index.js.html">index.js</a>, <a href="index.js.html#line634">line 634</a>
1577
1577
  </li></ul></dd>
1578
1578
 
1579
1579
 
@@ -1625,7 +1625,7 @@ If the property exists and is not list-valued, the union will be ignored.
1625
1625
  <br class="clear">
1626
1626
 
1627
1627
  <footer>
1628
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Wed Jan 26 2022 15:11:22 GMT-0800 (Pacific Standard Time)
1628
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Fri Mar 25 2022 17:36:42 GMT-0700 (Pacific Daylight Time)
1629
1629
  </footer>
1630
1630
 
1631
1631
  <script> prettyPrint(); </script>
package/docs/index.html CHANGED
@@ -175,7 +175,7 @@ Please refer to our <a href="https://mixpanel.com/legal/app-store-privacy-detai
175
175
  <br class="clear">
176
176
 
177
177
  <footer>
178
- Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Wed Jan 26 2022 15:11:22 GMT-0800 (Pacific Standard Time)
178
+ Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.6</a> on Fri Mar 25 2022 17:36:42 GMT-0700 (Pacific Daylight Time)
179
179
  </footer>
180
180
 
181
181
  <script> prettyPrint(); </script>