@uxf/analytics 11.97.0 → 11.106.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/README.md +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -140,12 +140,12 @@ export default function App({ Component, pageProps }) {
|
|
|
140
140
|
}
|
|
141
141
|
```
|
|
142
142
|
|
|
143
|
-
#### 3. Handle AB testing in `
|
|
143
|
+
#### 3. Handle AB testing in `proxy.ts`
|
|
144
144
|
|
|
145
145
|
```ts
|
|
146
146
|
import { handleABTesting } from "@uxf/analytics/ab-testing";
|
|
147
147
|
|
|
148
|
-
export async function
|
|
148
|
+
export async function proxy(request: NextRequest) {
|
|
149
149
|
const nextResponse = NextResponse.next();
|
|
150
150
|
|
|
151
151
|
handleABTesting(request, nextResponse, experiments);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uxf/analytics",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.106.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsc -P tsconfig.json",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"author": "",
|
|
16
16
|
"license": "ISC",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@uxf/core": "11.
|
|
18
|
+
"@uxf/core": "11.106.0"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"react": ">=18.0.2"
|