@amplitude/experiment-tag 0.25.0 → 0.26.0
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/LICENSES +76 -4
- package/dist/experiment-tag-min.js +3 -3
- package/dist/experiment-tag-min.js.gz +0 -0
- package/dist/types/src/behavioral-targeting/behavioral-targeting-manager.d.ts +21 -1
- package/dist/types/src/behavioral-targeting/event-storage.d.ts +35 -0
- package/dist/types/src/behavioral-targeting/index.d.ts +2 -0
- package/dist/types/src/behavioral-targeting/relay-client.d.ts +40 -0
- package/dist/types/src/behavioral-targeting/relay-protocol.d.ts +36 -0
- package/dist/types/src/behavioral-targeting/relay-sync-result.d.ts +10 -0
- package/dist/types/src/behavioral-targeting/session-manager.d.ts +42 -12
- package/dist/types/src/experiment.d.ts +23 -0
- package/dist/types/src/subscriptions/subscription-refactor.d.ts +2 -1
- package/dist/types/src/subscriptions/subscriptions.d.ts +2 -1
- package/dist/types/src/triggers/base-trigger-manager.d.ts +3 -2
- package/dist/types/src/triggers/index.d.ts +2 -1
- package/dist/types/src/types.d.ts +14 -0
- package/dist/types/src/util/cookie.d.ts +56 -6
- package/dist/types/src/util/debug-recorder.d.ts +2 -1
- package/dist/types/src/util/shell.d.ts +4 -3
- package/dist/types/src/util/when-body-ready.d.ts +3 -1
- package/package.json +7 -5
package/dist/LICENSES
CHANGED
|
@@ -25,24 +25,72 @@ PERFORMANCE OF THIS SOFTWARE.
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
27
|
Name: @amplitude/experiment-core
|
|
28
|
-
Version: 0.13.
|
|
28
|
+
Version: 0.13.3
|
|
29
29
|
License: MIT
|
|
30
30
|
Private: false
|
|
31
31
|
Description: Amplitude Experiment evaluation JavaScript implementation.
|
|
32
32
|
Repository: https://github.com/amplitude/experiment-js-client.git
|
|
33
33
|
Homepage: https://github.com/amplitude/experiment-js-client
|
|
34
34
|
Author: Amplitude
|
|
35
|
+
License Text:
|
|
36
|
+
===
|
|
37
|
+
|
|
38
|
+
MIT License
|
|
39
|
+
|
|
40
|
+
Copyright (c) 2020 Amplitude Analytics
|
|
41
|
+
|
|
42
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
43
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
44
|
+
in the Software without restriction, including without limitation the rights
|
|
45
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
46
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
47
|
+
furnished to do so, subject to the following conditions:
|
|
48
|
+
|
|
49
|
+
The above copyright notice and this permission notice shall be included in all
|
|
50
|
+
copies or substantial portions of the Software.
|
|
51
|
+
|
|
52
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
53
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
54
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
55
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
56
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
57
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
58
|
+
SOFTWARE.
|
|
35
59
|
|
|
36
60
|
---
|
|
37
61
|
|
|
38
62
|
Name: @amplitude/analytics-connector
|
|
39
|
-
Version: 1.6.
|
|
63
|
+
Version: 1.6.5
|
|
40
64
|
License: MIT
|
|
41
65
|
Private: false
|
|
42
66
|
Description: Connector package for Amplitude SDKs
|
|
43
67
|
Repository: https://github.com/amplitude/experiment-js-client.git
|
|
44
68
|
Homepage: https://github.com/amplitude/experiment-js-client
|
|
45
69
|
Author: Amplitude
|
|
70
|
+
License Text:
|
|
71
|
+
===
|
|
72
|
+
|
|
73
|
+
MIT License
|
|
74
|
+
|
|
75
|
+
Copyright (c) 2020 Amplitude Analytics
|
|
76
|
+
|
|
77
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
78
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
79
|
+
in the Software without restriction, including without limitation the rights
|
|
80
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
81
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
82
|
+
furnished to do so, subject to the following conditions:
|
|
83
|
+
|
|
84
|
+
The above copyright notice and this permission notice shall be included in all
|
|
85
|
+
copies or substantial portions of the Software.
|
|
86
|
+
|
|
87
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
88
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
89
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
90
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
91
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
92
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
93
|
+
SOFTWARE.
|
|
46
94
|
|
|
47
95
|
---
|
|
48
96
|
|
|
@@ -239,13 +287,37 @@ SOFTWARE.
|
|
|
239
287
|
---
|
|
240
288
|
|
|
241
289
|
Name: @amplitude/experiment-js-client
|
|
242
|
-
Version: 1.21.
|
|
290
|
+
Version: 1.21.3
|
|
243
291
|
License: MIT
|
|
244
292
|
Private: false
|
|
245
293
|
Description: Amplitude Experiment Javascript Client SDK
|
|
246
294
|
Repository: https://github.com/amplitude/experiment-js-client.git
|
|
247
295
|
Homepage: https://github.com/amplitude/experiment-js-client
|
|
248
296
|
Author: Amplitude
|
|
297
|
+
License Text:
|
|
298
|
+
===
|
|
299
|
+
|
|
300
|
+
MIT License
|
|
301
|
+
|
|
302
|
+
Copyright (c) 2020 Amplitude Analytics
|
|
303
|
+
|
|
304
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
305
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
306
|
+
in the Software without restriction, including without limitation the rights
|
|
307
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
308
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
309
|
+
furnished to do so, subject to the following conditions:
|
|
310
|
+
|
|
311
|
+
The above copyright notice and this permission notice shall be included in all
|
|
312
|
+
copies or substantial portions of the Software.
|
|
313
|
+
|
|
314
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
315
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
316
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
317
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
318
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
319
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
320
|
+
SOFTWARE.
|
|
249
321
|
|
|
250
322
|
---
|
|
251
323
|
|
|
@@ -316,7 +388,7 @@ SOFTWARE.
|
|
|
316
388
|
---
|
|
317
389
|
|
|
318
390
|
Name: unfetch
|
|
319
|
-
Version: 4.
|
|
391
|
+
Version: 4.1.0
|
|
320
392
|
License: MIT
|
|
321
393
|
Private: false
|
|
322
394
|
Description: Bare minimum fetch polyfill in 500 bytes
|